/* ==========================================================================
   CIXIZOC Cart & Checkout — matches shop / PDP editorial style
   ========================================================================== */

.cz-bag {
	max-width: var(--cz-shop-max);
	margin: 0 auto;
	padding: clamp(0.75rem, 2.5vw, 1.5rem) var(--cz-shop-pad) clamp(2.5rem, 6vw, 4rem);
}

.cz-bag-page .cz-bag__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 0.5rem;
	font-family: var(--cz-shop-sans);
	font-size: 0.62rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(26, 26, 26, 0.42);
}

.cz-bag-page .cz-bag__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.cz-bag-page .cz-bag__breadcrumb a:hover {
	color: var(--cz-shop-ink);
}

.cz-bag__title {
	margin: 0 0 clamp(0.85rem, 2vw, 1.25rem);
	font-family: var(--cz-shop-serif);
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cz-bag-page--empty .cz-bag {
	padding-top: clamp(1.5rem, 4.5vw, 2.75rem);
}

.cz-bag-page--empty .cz-bag__breadcrumb {
	margin-bottom: clamp(0.65rem, 1.5vw, 0.85rem);
}

.cz-bag-page--empty .cz-bag__title {
	margin-bottom: clamp(0.85rem, 2vw, 1.25rem);
}

.cz-bag-page--empty .cz-bag__visual {
	position: relative;
	width: min(100%, 300px);
	height: clamp(190px, 32vw, 250px);
	margin: clamp(0.5rem, 1.5vw, 0.85rem) auto clamp(1rem, 2.5vw, 1.35rem);
	overflow: visible;
}

.cz-bag-page--empty .cz-bag__visual-glow {
	position: absolute;
	inset: 22% 10% 18%;
	background: radial-gradient(
		ellipse at center,
		rgba(245, 240, 232, 0.55) 0%,
		rgba(255, 255, 255, 0) 68%
	);
	border-radius: 50%;
	pointer-events: none;
}

.cz-bag-page--empty .cz-bag__visual-viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	height: 100%;
	touch-action: pan-y;
	cursor: grab;
	outline: none;
}

.cz-bag-page--empty .cz-bag__visual-viewport.is-dragging {
	cursor: grabbing;
}

.cz-bag-page--empty .cz-bag__visual-track {
	display: flex;
	height: 100%;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.cz-bag-page--empty .cz-bag__visual-track.is-dragging {
	transition: none;
}

.cz-bag-page--empty .cz-bag__visual-slide {
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	padding-bottom: 0.15rem;
}

.cz-bag-page--empty .cz-bag__visual-pair {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: calc(100% - 1.1rem);
}

.cz-bag-page--empty .cz-bag__visual-label {
	margin: 0.35rem 0 0;
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cz-shop-muted);
}

.cz-bag-page--empty .cz-bag__visual-dots {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 0.35rem;
}

.cz-bag-page--empty .cz-bag__visual-dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(26, 26, 26, 0.18);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.cz-bag-page--empty .cz-bag__visual-dot.is-active {
	background: var(--cz-shop-ink);
	transform: scale(1.15);
}

.cz-bag-page--empty .cz-bag__visual-bottle {
	position: relative;
	flex: 0 0 auto;
	width: auto;
	height: clamp(195px, 33vw, 255px);
	margin: 0 -12%;
	object-fit: contain;
	opacity: 0.5;
	filter: drop-shadow(0 10px 24px rgba(26, 26, 26, 0.08));
}

.cz-bag-page--empty .cz-bag__visual-bottle--left {
	transform: rotate(-8deg) translateY(1%);
	z-index: 1;
}

.cz-bag-page--empty .cz-bag__visual-bottle--right {
	transform: rotate(8deg) translateY(1%);
	z-index: 2;
	margin-left: -18%;
}

.cz-bag__content {
	font-family: var(--cz-shop-sans);
	color: var(--cz-shop-ink);
}

.cz-bag__content > .woocommerce > .cart-empty,
.cz-bag__content > .woocommerce > .woocommerce-notices-wrapper:first-child + form {
	margin-top: 0;
}

.cz-bag__content .entry-title,
.cz-bag__content .page-title {
	display: none;
}

.cz-bag__content .woocommerce-notices-wrapper {
	margin-bottom: 0.75rem;
}

.cz-bag-page .cz-bag__content .woocommerce-notices-wrapper.cz-bag-toast {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
}

.cz-bag__content .woocommerce-message,
.cz-bag__content .woocommerce-info,
.cz-bag__content .woocommerce-error {
	border: 0;
	border-left: 2px solid var(--cz-shop-ink);
	background: #f7f6f4;
	padding: 0.85rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.85rem;
}

.cz-bag-page .cz-bag__content .woocommerce-message,
.cz-bag-page .cz-bag__content .woocommerce-info {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: min(100%, 520px);
	padding: 0.45rem 0.75rem;
	margin: 0 0 0.65rem;
	border: 1px solid var(--cz-shop-line);
	border-left: 0;
	background: #faf9f7;
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--cz-shop-ink);
}

.cz-bag-page .cz-bag__content .woocommerce-message::before,
.cz-bag-page .cz-bag__content .woocommerce-info::before {
	display: none;
}

.cz-bag-page .cz-bag__content .cz-bag-toast__item {
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.cz-bag-page .cz-bag__content .cz-bag-toast__item.is-dismissed {
	opacity: 0;
	transform: translateY(-4px);
	pointer-events: none;
}

.cz-bag-page .cz-bag__content .woocommerce-message a,
.cz-bag-page .cz-bag__content .woocommerce-info a {
	color: var(--cz-shop-ink);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cz-bag__content .woocommerce-error {
	border-left-color: #9a2c2c;
}

/* ── Empty cart ── */
.cz-bag-page--empty .cz-bag__content > .woocommerce > .cart-empty,
.cz-bag-page--empty .cz-bag__content .return-to-shop {
	display: none !important;
}

.cz-bag-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 0 clamp(2rem, 5vw, 3rem);
	margin-top: 0;
}

.cz-bag-empty__visual {
	display: none;
}

.cz-bag-empty__heading {
	margin: 0 0 0.5rem;
	font-family: var(--cz-shop-serif);
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	font-weight: 400;
	letter-spacing: 0.03em;
	text-transform: none;
	color: var(--cz-shop-ink);
}

.cz-bag-empty__sub {
	margin: 0 0 1.5rem;
	max-width: 28rem;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--cz-shop-muted);
}

.cz-bag-empty__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	width: min(100%, 320px);
}

.cz-bag-empty__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.75rem;
	padding: 0.75rem 1.5rem;
	border: 0;
	background: var(--cz-shop-ink);
	color: #fff;
	font-family: var(--cz-shop-sans);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.cz-bag-empty__cta:hover {
	opacity: 0.88;
	color: #fff;
}

.cz-bag-empty__link {
	font-family: var(--cz-shop-sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--cz-shop-ink);
}

.cz-bag-empty__link:hover {
	opacity: 0.7;
}

.cz-bag-trust {
	padding: clamp(1.5rem, 4vw, 2.25rem) 0;
	border-top: 1px solid var(--cz-shop-line);
}

.cz-bag-trust__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.cz-bag-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
}

.cz-bag-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--cz-shop-ink);
	opacity: 0.72;
}

.cz-bag-trust__copy {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.cz-bag-trust__copy strong {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cz-shop-ink);
}

.cz-bag-trust__copy span {
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--cz-shop-muted);
}

.cz-bag-members {
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

.cz-bag-members__inner {
	padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
	background: #f5f0e8;
	text-align: center;
}

.cz-bag-members__title {
	margin: 0 0 0.5rem;
	font-family: var(--cz-shop-serif);
	font-size: clamp(1.15rem, 2.8vw, 1.45rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cz-shop-ink);
}

.cz-bag-members__text {
	margin: 0 auto 1.15rem;
	max-width: 32rem;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--cz-shop-muted);
}

.cz-bag-members__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.65rem 1.75rem;
	border: 1px solid var(--cz-shop-ink);
	background: transparent;
	color: var(--cz-shop-ink);
	font-family: var(--cz-shop-sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.cz-bag-members__cta:hover {
	background: var(--cz-shop-ink);
	color: #fff;
}

/* ── Cart table ── */
.cz-bag__content .woocommerce-cart-form {
	margin-bottom: 2rem;
}

.cz-bag__content table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
	font-size: 0.88rem;
}

.cz-bag__content table.shop_table thead th {
	padding: 0.75rem 0.5rem;
	border-bottom: 1px solid var(--cz-shop-line);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cz-shop-muted);
}

.cz-bag__content table.shop_table td {
	padding: 1rem 0.5rem;
	border-bottom: 1px solid var(--cz-shop-line);
	vertical-align: middle;
}

.cz-bag__content .product-thumbnail {
	width: 88px;
}

.cz-bag__content .product-thumbnail a {
	display: block;
	line-height: 0;
}

.cz-bag__content .product-thumbnail img,
.cz-bag__content .product-thumbnail .cz-bag__thumb {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
	background: #fff;
	border: 1px solid var(--cz-shop-line);
}

.cz-bag__content .quantity.cz-bag__qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--cz-shop-line);
	background: #fff;
}

.cz-bag__content .quantity.cz-bag__qty .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cz-bag__content .cz-bag__qty-btn {
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	background: #fff;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--cz-shop-ink);
	cursor: pointer;
	transition: background 0.2s ease;
}

.cz-bag__content .cz-bag__qty-btn:hover {
	background: #f7f6f4;
}

.cz-bag__content .quantity.cz-bag__qty .qty {
	width: 3rem;
	height: 2.75rem;
	border: 0;
	border-left: 1px solid var(--cz-shop-line);
	border-right: 1px solid var(--cz-shop-line);
	background: #fff;
	font-family: var(--cz-shop-sans);
	font-size: 0.85rem;
	text-align: center;
	-moz-appearance: textfield;
}

.cz-bag__content .quantity.cz-bag__qty .qty::-webkit-outer-spin-button,
.cz-bag__content .quantity.cz-bag__qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cz-bag__content .product-name a {
	color: var(--cz-shop-ink);
	text-decoration: none;
	font-family: var(--cz-shop-serif);
	font-size: 1.05rem;
	letter-spacing: 0.02em;
}

.cz-bag__content .product-name a:hover {
	opacity: 0.7;
}

.cz-bag__content .product-remove a {
	color: var(--cz-shop-muted);
	text-decoration: none;
	font-size: 1.25rem;
	line-height: 1;
}

.cz-bag__content .actions .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.cz-bag__content .actions .coupon input[type="text"] {
	min-width: 180px;
	height: 2.75rem;
	padding: 0 0.85rem;
	border: 1px solid var(--cz-shop-line);
	font-family: var(--cz-shop-sans);
	font-size: 0.85rem;
}

.cz-bag__content .cart-collaterals {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.cz-bag__content .cart_totals {
	max-width: 420px;
	margin-left: auto;
}

.cz-bag__content .cart_totals h2,
.cz-bag__content #order_review_heading,
.cz-bag__content .woocommerce-billing-fields h3,
.cz-bag__content .woocommerce-additional-fields h3,
.cz-bag__content #payment .woocommerce-checkout-payment h3 {
	font-family: var(--cz-shop-serif);
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.cz-bag__content .cart_totals table th,
.cz-bag__content .cart_totals table td {
	padding: 0.65rem 0;
	border-top: 1px solid var(--cz-shop-line);
	font-size: 0.88rem;
}

.cz-bag__content .order-total th,
.cz-bag__content .order-total td {
	font-size: 1rem;
	font-weight: 500;
}

/* ── Buttons ── */
.cz-bag__content .button,
.cz-bag__content button.button,
.cz-bag__content a.checkout-button,
.cz-bag__content #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.75rem 1.5rem;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--cz-shop-ink) !important;
	color: #fff !important;
	font-family: var(--cz-shop-sans) !important;
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.cz-bag__content .button:hover,
.cz-bag__content button.button:hover,
.cz-bag__content a.checkout-button:hover,
.cz-bag__content #place_order:hover {
	opacity: 0.88;
	color: #fff !important;
}

.cz-bag__content .actions .button[name="update_cart"] {
	background: #fff !important;
	color: var(--cz-shop-ink) !important;
	border: 1px solid var(--cz-shop-line) !important;
}

.cz-bag__content a.checkout-button,
.cz-bag__content #place_order {
	width: 100%;
	margin-top: 0.5rem;
}

.cz-bag__content .wc-proceed-to-checkout {
	padding-top: 1rem;
}

.cz-bag__content .return-to-shop .button {
	background: var(--cz-shop-ink) !important;
}

/* ── Checkout layout ── */
.cz-bag-page--checkout .cz-bag__content form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 5vw, 3rem);
	align-items: start;
}

.cz-bag__content .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.cz-bag__content .form-row input.input-text,
.cz-bag__content .form-row textarea,
.cz-bag__content .form-row select,
.cz-bag__content .select2-container .select2-selection--single {
	width: 100%;
	min-height: 2.75rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--cz-shop-line) !important;
	border-radius: 0 !important;
	background: #fff;
	font-family: var(--cz-shop-sans);
	font-size: 0.88rem;
	color: var(--cz-shop-ink);
	box-shadow: none !important;
}

.cz-bag__content .form-row label {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cz-shop-muted);
	margin-bottom: 0.35rem;
}

.cz-bag__content #order_review {
	position: sticky;
	top: calc(72px + 1rem);
	padding: 1.25rem;
	border: 1px solid var(--cz-shop-line);
	background: #fff;
}

.cz-bag__content #payment {
	background: transparent;
	border-radius: 0;
}

.cz-bag__content #payment ul.payment_methods {
	border-bottom: 1px solid var(--cz-shop-line);
	padding: 0 0 1rem;
	margin: 0 0 1rem;
}

.cz-bag__content #payment ul.payment_methods li {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--cz-shop-line);
	list-style: none;
}

.cz-bag__content #payment ul.payment_methods li:last-child {
	border-bottom: 0;
}

.cz-bag__content #payment div.payment_box {
	background: #f7f6f4;
	color: var(--cz-shop-ink);
	font-size: 0.85rem;
}

.cz-bag__content #payment div.payment_box::before {
	border-bottom-color: #f7f6f4;
}

.cz-bag__content .woocommerce-privacy-policy-text,
.cz-bag__content .woocommerce-terms-and-conditions-wrapper {
	font-size: 0.78rem;
	color: var(--cz-shop-muted);
	line-height: 1.5;
}

.cz-bag__content .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.75rem;
	padding: 1rem 0 1.5rem;
	border-bottom: 1px solid var(--cz-shop-line);
	margin-bottom: 1.5rem;
	list-style: none;
}

.cz-bag__content .woocommerce-order-overview li {
	font-size: 0.82rem;
	color: var(--cz-shop-muted);
}

.cz-bag__content .woocommerce-order-overview li strong {
	display: block;
	margin-top: 0.25rem;
	color: var(--cz-shop-ink);
	font-size: 0.95rem;
}

.cz-bag__content .woocommerce-thankyou-order-received {
	font-family: var(--cz-shop-serif);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.cz-bag {
		padding-top: 0.65rem;
		padding-bottom: calc(5rem + env(safe-area-inset-bottom));
	}

	.cz-bag-page--empty .cz-bag {
		padding-top: clamp(1.15rem, 4vw, 1.75rem);
	}

	.cz-bag__title {
		font-size: clamp(1.65rem, 7vw, 2.25rem);
		margin-bottom: 0.75rem;
	}

	.cz-bag-page--empty .cz-bag__title {
		margin-bottom: 0.65rem;
	}

	.cz-bag-trust__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.35rem 1rem;
	}

	.cz-bag-empty {
		padding-top: 0;
		padding-bottom: 1.75rem;
		margin-top: 0;
	}

	.cz-bag-page--empty .cz-bag__visual {
		width: min(100%, 280px);
		height: clamp(175px, 38vw, 215px);
		margin-top: 0.35rem;
		margin-bottom: 0.75rem;
	}

	.cz-bag-page--empty .cz-bag__visual-bottle {
		height: clamp(160px, 42vw, 210px);
		margin: 0 -14%;
	}

	.cz-bag-page--empty .cz-bag__visual-bottle--right {
		margin-left: -20%;
	}

	.cz-bag-page--empty .cz-bag__visual-dot {
		width: 7px;
		height: 7px;
	}

	.cz-bag-empty__actions {
		width: 100%;
		max-width: none;
	}

	.cz-bag-empty__cta {
		min-height: 48px;
	}

	.cz-bag-page--checkout .cz-bag__content form.checkout,
	.cz-bag-page .cz-bag__content form.checkout {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.cz-bag__content #order_review {
		position: static;
		padding: 1rem;
	}

	.cz-bag__content .cart_totals {
		max-width: none;
		margin-left: 0;
	}

	.cz-bag__content .button,
	.cz-bag__content button.button,
	.cz-bag__content a.checkout-button,
	.cz-bag__content #place_order {
		min-height: 48px;
	}
}

@media (max-width: 480px) {
	.cz-bag-page .cz-bag__breadcrumb {
		font-size: 0.58rem;
		margin-bottom: 0.4rem;
	}

	.cz-bag-page--empty .cz-bag__visual {
		width: min(100%, 260px);
		height: clamp(165px, 42vw, 200px);
		margin-top: 0.25rem;
		margin-bottom: 0.65rem;
	}

	.cz-bag-page--empty .cz-bag__visual-glow {
		inset: 18% 6% 16%;
	}

	.cz-bag-page--empty .cz-bag__visual-bottle {
		height: clamp(145px, 44vw, 190px);
		margin: 0 -15%;
	}

	.cz-bag-page--empty .cz-bag__visual-bottle--left {
		transform: rotate(-7deg) translateY(1%);
	}

	.cz-bag-page--empty .cz-bag__visual-bottle--right {
		transform: rotate(7deg) translateY(1%);
		margin-left: -22%;
	}

	.cz-bag-page--empty .cz-bag__visual-label {
		font-size: 0.58rem;
	}

	.cz-bag-trust__list {
		grid-template-columns: 1fr 1fr;
	}

	.cz-bag-trust__copy strong {
		font-size: 0.64rem;
	}

	.cz-bag-trust__copy span {
		font-size: 0.72rem;
	}

	.cz-bag-members__inner {
		padding: 1.35rem 1rem;
	}

	.cz-bag-members__cta {
		width: 100%;
		min-height: 48px;
	}

	.cz-bag-page .cz-bag__content .woocommerce-message,
	.cz-bag-page .cz-bag__content .woocommerce-info {
		max-width: 100%;
		font-size: 0.72rem;
	}

	.cz-bag__content table.shop_table thead {
		display: none;
	}

	.cz-bag__content table.shop_table tbody tr {
		display: grid;
		grid-template-columns: 80px 1fr;
		gap: 0.35rem 0.85rem;
		padding: 1.15rem 0;
		border-bottom: 1px solid var(--cz-shop-line);
		position: relative;
	}

	.cz-bag__content table.shop_table td {
		border: 0;
		padding: 0;
	}

	.cz-bag__content table.shop_table td.product-thumbnail {
		grid-row: 1 / span 5;
		align-self: start;
	}

	.cz-bag__content table.shop_table td.product-thumbnail img,
	.cz-bag__content table.shop_table td.product-thumbnail .cz-bag__thumb {
		width: 80px;
		height: 80px;
	}

	.cz-bag__content table.shop_table td.product-quantity {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.cz-bag__content table.shop_table td.product-quantity::before {
		content: attr(data-title);
		font-size: 0.72rem;
		font-weight: 500;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: var(--cz-shop-muted);
		flex-shrink: 0;
	}

	.cz-bag__content .cz-bag__qty-btn,
	.cz-bag__content .quantity.cz-bag__qty .qty {
		min-height: 44px;
	}

	.cz-bag__content table.shop_table td.product-name {
		grid-column: 2;
		padding-right: 1.5rem;
	}

	.cz-bag__content table.shop_table td.product-price,
	.cz-bag__content table.shop_table td.product-quantity,
	.cz-bag__content table.shop_table td.product-subtotal {
		grid-column: 2;
		font-size: 0.82rem;
	}

	.cz-bag__content table.shop_table td.product-subtotal {
		font-weight: 500;
	}

	.cz-bag__content table.shop_table td.product-remove {
		position: absolute;
		top: 0.15rem;
		right: 0;
	}

	.cz-bag__content table.shop_table td.actions {
		display: block;
		grid-column: 1 / -1;
		padding-top: 0.75rem;
	}

	.cz-bag__content .actions .coupon {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.cz-bag__content .actions .coupon input[type="text"],
	.cz-bag__content .actions .coupon .button,
	.cz-bag__content .actions > .button {
		width: 100%;
		min-height: 44px;
	}

	.cz-bag__content .wc-proceed-to-checkout {
		position: fixed;
		left: var(--cz-shop-pad);
		right: var(--cz-shop-pad);
		bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
		z-index: 30;
		padding-top: 0;
		margin: 0;
	}

	.cz-bag__content .wc-proceed-to-checkout .checkout-button {
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	}

	.cz-bag-page--checkout .cz-bag__content #payment {
		padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
	}

	.cz-bag-page--checkout .cz-bag__content #place_order {
		position: fixed;
		left: var(--cz-shop-pad);
		right: var(--cz-shop-pad);
		bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
		z-index: 30;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	}

	.cz-bag__content .woocommerce-order-overview {
		grid-template-columns: 1fr 1fr;
	}
}
