/*
 * Flashyn premium Cart + Checkout composition.
 * Page-scoped presentation only: WooCommerce remains authoritative for cart
 * mutation, totals, coupons, shipping, gateways, validation and order creation.
 */

body.fxce-premium-cart,
body.fxce-premium-checkout,
body.fxce-checkout-auth-gated {
	--fxp-canvas: var(--fxce-canvas, #f6f7f9);
	--fxp-surface: var(--fxce-surface, #ffffff);
	--fxp-text: var(--fxce-text, #17191f);
	--fxp-muted: var(--fxce-muted, #69707d);
	--fxp-border: var(--fxce-border, #e4e7ec);
	--fxp-primary: var(--fxce-button-bg, var(--fxce-primary, #17191f));
	--fxp-primary-text: var(--fxce-button-text, var(--fxce-primary-text, #ffffff));
	--fxp-success: #087a55;
	--fxp-danger: #b4233f;
	--fxp-soft: #f8f9fb;
	--fxp-radius: 20px;
	--fxp-shadow: 0 18px 50px rgba(17, 24, 39, .07);
	background: var(--fxp-canvas) !important;
	color: var(--fxp-text) !important;
}

/* Enhanced checkout owns one visible Google search control. Suggestions stay
   attached to that control instead of expanding the mobile checkout canvas. */
body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="address_search"] {
	position: relative;
	z-index: 24;
}
body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="address_search"] .fxce-owned-field__control {
	position: relative;
}
body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="address_search"] .flashyn-address-suggestions {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 10050;
	max-height: min(280px, 42vh);
	margin: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
}

body.fxce-premium-cart *,
body.fxce-premium-checkout *,
body.fxce-checkout-auth-gated * { box-sizing: border-box; }

body.fxce-premium-cart :is(.entry-title, .page-title),
body.fxce-premium-checkout :is(.entry-title, .page-title) { display: none !important; }
body.fxce-premium-cart [data-fxce-native-cart-hero="1"] { display: none !important; }

body.fxce-premium-cart :is(.site-main, #primary, .main-content),
body.fxce-premium-checkout :is(.site-main, #primary, .main-content) {
	min-width: 0 !important;
	background: transparent !important;
}

/* Shared page introductions. */
.fxce-cart-page-header,
.fxce-checkout-page-header {
	width: min(1280px, calc(100% - 48px));
	margin: 34px auto 24px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.fxce-cart-page-header__copy > span,
.fxce-checkout-page-header__copy > span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 7px;
	color: var(--fxp-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.fxce-checkout-page-header__copy > span svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fxce-cart-page-header h1,
.fxce-checkout-page-header h1 {
	margin: 0 !important;
	color: var(--fxp-text) !important;
	font-size: clamp(30px, 3vw, 44px) !important;
	font-weight: 750 !important;
	letter-spacing: -.035em !important;
	line-height: 1.05 !important;
}

.fxce-cart-page-header p,
.fxce-checkout-page-header p {
	max-width: 620px;
	margin: 9px 0 0 !important;
	color: var(--fxp-muted) !important;
	font-size: 14px !important;
	line-height: 1.55 !important;
}

.fxce-cart-continue {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--fxp-border);
	border-radius: 999px;
	background: var(--fxp-surface);
	color: var(--fxp-text) !important;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none !important;
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.fxce-cart-continue:hover {
	transform: translateY(-1px);
	border-color: var(--fxp-text);
	box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
}

.fxce-cart-continue svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Cart — desktop/tablet composition. */
body.fxce-premium-cart .woocommerce {
	width: min(1280px, calc(100% - 48px)) !important;
	max-width: none !important;
	margin: 0 auto 80px !important;
}

body.fxce-premium-cart [data-fxce-cart-shell="1"] {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 390px) !important;
	gap: 24px !important;
	align-items: start !important;
	margin: 0 !important;
}

body.fxce-premium-cart [data-fxce-cart-main="1"],
body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: var(--fxp-radius) !important;
	background: var(--fxp-surface) !important;
	box-shadow: var(--fxp-shadow) !important;
}

/* The order summary uses spacing and surface contrast, not stacked outlines. */
body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
	border: 0 !important;
	box-shadow: 0 14px 38px rgba(17, 24, 39, .055) !important;
}

body.fxce-premium-cart [data-fxce-cart-main="1"] { overflow: hidden !important; }

body.fxce-premium-cart .fxce-cart-card-heading {
	min-height: 74px !important;
	padding: 20px 24px !important;
	display: flex !important;
	align-items: center !important;
	border-bottom: 1px solid var(--fxp-border) !important;
	background: linear-gradient(180deg, #fff 0%, #fcfcfd 100%) !important;
}

body.fxce-premium-cart .fxce-cart-card-heading > div {
	display: flex !important;
	align-items: baseline !important;
	gap: 10px !important;
}

body.fxce-premium-cart .fxce-cart-card-heading strong {
	color: var(--fxp-text) !important;
	font-size: 21px !important;
	font-weight: 780 !important;
	letter-spacing: -.02em !important;
}

body.fxce-premium-cart .fxce-cart-card-heading span {
	color: var(--fxp-muted) !important;
	font-size: 13px !important;
}

body.fxce-premium-cart [data-fxce-cart-main="1"] > .woocommerce-cart-form {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 24px 22px !important;
	background: transparent !important;
}

body.fxce-premium-cart .woocommerce-cart-form__contents {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: collapse !important;
	background: transparent !important;
}

@media (min-width: 768px) {
	body.fxce-premium-cart .woocommerce-cart-form__contents { table-layout: auto !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-remove { position: static !important; inset: auto !important; width: 72px !important; padding-right: 4px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-thumbnail { width: 112px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-name { width: auto !important; min-width: 0 !important; padding-right: 18px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-price { width: 120px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-quantity { width: 160px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-subtotal { width: 130px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(th.product-remove, td.product-remove) { width: 72px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(th.product-thumbnail, td.product-thumbnail) { width: 112px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(th.product-price, td.product-price) { width: 120px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(th.product-quantity, td.product-quantity) { width: 160px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(th.product-subtotal, td.product-subtotal) { width: 130px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-remove a.remove {
		width: auto !important;
		height: auto !important;
		min-width: 0 !important;
		padding: 5px 0 !important;
		display: inline-flex !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		color: var(--fxp-danger) !important;
		font-size: 12px !important;
		font-weight: 720 !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}
	body.woocommerce-cart.fxce-premium-cart table.shop_table tr.cart_item td.product-remove > a.remove[data-fxce-cart-remove-control="1"] {
		all: unset !important;
		box-sizing: border-box !important;
		width: max-content !important;
		height: auto !important;
		min-width: 0 !important;
		min-height: 0 !important;
		padding: 5px 0 !important;
		display: inline-flex !important;
		align-items: center !important;
		border: 0 !important;
		border-radius: 0 !important;
		outline: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		color: #cf3348 !important;
		font-family: inherit !important;
		font-size: 12px !important;
		font-weight: 720 !important;
		line-height: 1.2 !important;
		text-decoration: none !important;
		white-space: nowrap !important;
		cursor: pointer !important;
	}
	body.woocommerce-cart.fxce-premium-cart table.shop_table tr.cart_item td.product-remove > a.remove[data-fxce-cart-remove-control="1"]::before,
	body.woocommerce-cart.fxce-premium-cart table.shop_table tr.cart_item td.product-remove > a.remove[data-fxce-cart-remove-control="1"]::after {
		content: none !important;
		display: none !important;
		border: 0 !important;
		box-shadow: none !important;
	}
}

body.fxce-premium-cart .woocommerce-cart-form__contents thead th {
	padding: 16px 10px 12px !important;
	border: 0 !important;
	border-bottom: 1px solid var(--fxp-border) !important;
	background: transparent !important;
	color: var(--fxp-muted) !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .09em !important;
	text-transform: uppercase !important;
}

body.fxce-premium-cart .woocommerce-cart-form__cart-item {
	min-height: 156px !important;
	margin: 0 !important;
	border: 0 !important;
	border-bottom: 1px solid var(--fxp-border) !important;
	background: transparent !important;
}

body.fxce-premium-cart .woocommerce-cart-form__cart-item > td {
	width: auto !important;
	padding: 20px 10px !important;
	border: 0 !important;
	vertical-align: middle !important;
}

body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-remove { width: 38px !important; }
body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-thumbnail { width: 108px !important; }

body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-thumbnail img {
	width: 92px !important;
	height: 122px !important;
	border-radius: 13px !important;
	background: var(--fxp-soft) !important;
	object-fit: cover !important;
}

body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-name {
	min-width: 180px !important;
	color: var(--fxp-text) !important;
	font-size: 15px !important;
	font-weight: 730 !important;
	line-height: 1.45 !important;
}

body.fxce-premium-cart .product-name > a {
	color: inherit !important;
	text-decoration: none !important;
}

body.fxce-premium-cart .product-name :is(.variation, dl.variation) {
	margin: 8px 0 0 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 5px 8px !important;
	color: var(--fxp-muted) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
}

body.fxce-premium-cart .product-name .variation :is(dt, dd) { margin: 0 !important; }
body.fxce-premium-cart .product-name .variation dd + dt::before { content: "•"; margin-right: 8px; color: #c5c9d0; }

body.fxce-premium-cart .woocommerce-cart-form__cart-item :is(.product-price, .product-subtotal) {
	color: var(--fxp-text) !important;
	font-size: 14px !important;
	font-weight: 760 !important;
	white-space: nowrap !important;
}

body.fxce-premium-cart .quantity {
	display: inline-grid !important;
	grid-template-columns: 36px 42px 36px !important;
	align-items: center !important;
	min-height: 40px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 999px !important;
	background: var(--fxp-surface) !important;
	overflow: hidden !important;
}

body.fxce-premium-cart .quantity :is(.minus, .plus, button) {
	width: 36px !important;
	min-width: 36px !important;
	height: 38px !important;
	min-height: 38px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	font-size: 17px !important;
	box-shadow: none !important;
}

body.fxce-premium-cart .quantity input.qty {
	width: 42px !important;
	min-width: 0 !important;
	height: 38px !important;
	min-height: 38px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	font-size: 13px !important;
	font-weight: 750 !important;
	text-align: center !important;
	box-shadow: none !important;
}

body.fxce-premium-cart .product-remove a.remove {
	display: grid !important;
	place-items: center !important;
	width: 30px !important;
	height: 30px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 50% !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-muted) !important;
	font-size: 17px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

body.fxce-premium-cart .product-remove a.remove:hover {
	border-color: #f1b8c2 !important;
	background: #fff6f8 !important;
	color: var(--fxp-danger) !important;
}

body.fxce-premium-cart .woocommerce-cart-form__contents td.actions {
	padding: 18px 0 0 !important;
	border: 0 !important;
}

body.fxce-premium-cart td.actions > button[name="update_cart"] {
	float: right !important;
	min-height: 42px !important;
	padding: 0 17px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 999px !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-text) !important;
	font-size: 12px !important;
	font-weight: 750 !important;
}

body.fxce-premium-cart .coupon {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 8px !important;
	width: min(520px, 100%) !important;
}

body.fxce-premium-cart .coupon label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
}

body.fxce-premium-cart .coupon input.input-text {
	width: 100% !important;
	min-width: 0 !important;
	min-height: 46px !important;
	padding: 0 14px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 12px !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-text) !important;
	box-shadow: none !important;
}

body.fxce-premium-cart .coupon button {
	min-height: 46px !important;
	padding: 0 16px !important;
	border: 1px solid var(--fxp-text) !important;
	border-radius: 12px !important;
	background: var(--fxp-text) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 750 !important;
}

body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
	position: sticky !important;
	top: 88px !important;
	padding: 24px !important;
}

body.fxce-premium-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

body.fxce-premium-cart .cart_totals > h2 {
	margin: 0 0 18px !important;
	color: var(--fxp-text) !important;
	font-size: 22px !important;
	font-weight: 780 !important;
	letter-spacing: -.025em !important;
}

body.fxce-premium-cart .cart_totals > .coupon {
	width: 100% !important;
	margin: 0 0 18px !important;
	padding: 0 0 18px !important;
	border: 0 !important;
	border-bottom: 1px solid color-mix(in srgb, var(--fxp-border) 70%, transparent) !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.fxce-premium-cart .cart_totals table {
	width: 100% !important;
	margin: 0 0 16px !important;
	border: 0 !important;
	border-collapse: collapse !important;
}

body.fxce-premium-cart .cart_totals :is(th, td) {
	padding: 7px 0 !important;
	border: 0 !important;
	border-bottom: 0 !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

body.fxce-premium-cart .cart_totals th { width: 48% !important; font-weight: 620 !important; text-align: left !important; }
body.fxce-premium-cart .cart_totals td { text-align: right !important; }
body.fxce-premium-cart .cart_totals .order-total :is(th, td) { padding-top: 12px !important; border-bottom: 0 !important; font-size: 17px !important; font-weight: 820 !important; }
body.fxce-premium-cart .cart_totals :is(.cart-discount, .fee, .fxce-savings-line, .fxce-total-savings) :is(th, td, .amount, b, strong) {
	color: #086b4d !important;
	font-weight: 750 !important;
	opacity: 1 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .woocommerce-remove-coupon {
	color: var(--fxp-text, #171717) !important;
	font-weight: 700 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px !important;
	cursor: pointer !important;
}
body.fxce-premium-cart .cart_totals .fxce-discounts-heading th { padding: 12px 0 5px !important; border: 0 !important; color: var(--fxp-muted) !important; font-size: 10px !important; font-weight: 800 !important; letter-spacing: .09em !important; text-transform: uppercase !important; }

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 7px !important;
	width: 100% !important;
	margin: 12px 0 4px !important;
	padding: 14px !important;
	border: 0 !important;
	border-radius: 12px !important;
	background: color-mix(in srgb, var(--fxp-surface) 58%, var(--fxp-soft)) !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] :is(th, td) {
	display: block !important;
	width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: left !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] th {
	font-size: 12px !important;
	font-weight: 780 !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] :is(ul#shipping_method, .woocommerce-shipping-methods) {
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] :is(li, label, .woocommerce-shipping-destination) {
	text-align: left !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination {
	margin: 7px 0 0 !important;
	color: var(--fxp-muted) !important;
	font-size: 11px !important;
	font-weight: 520 !important;
	line-height: 1.5 !important;
}

body.fxce-premium-cart .fxce-wallet-inline-row,
body.fxce-premium-cart .fxce-wallet-inline-row td {
	width: 100% !important;
	border: 0 !important;
}

body.fxce-premium-cart .fxce-wallet-inline-row td { padding: 11px 0 4px !important; }
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] { width: 100% !important; }
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] * { text-align: left !important; }

body.fxce-premium-cart .wc-proceed-to-checkout { padding: 0 !important; }

body.fxce-premium-cart :is(.wc-proceed-to-checkout .checkout-button, .wc-block-cart__submit-button) {
	width: 100% !important;
	min-height: 56px !important;
	margin: 0 !important;
	padding: 0 20px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid var(--fxp-primary) !important;
	border-radius: 999px !important;
	background: var(--fxp-primary) !important;
	color: var(--fxp-primary-text) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: .01em !important;
	text-align: center !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

.fxce-cart-assurance {
	margin-top: 20px;
	padding-top: 18px;
	display: grid;
	gap: 12px;
	border-top: 1px solid var(--fxp-border);
}

.fxce-cart-assurance__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fxce-cart-assurance__icon {
	flex: 0 0 38px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--fxp-soft);
	color: var(--fxp-text);
}

.fxce-cart-assurance__icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fxce-cart-assurance__item > span:last-child { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.fxce-cart-assurance__item strong { color: var(--fxp-text); font-size: 13.5px; font-weight: 750; line-height: 1.3; }
.fxce-cart-assurance__item small { color: var(--fxp-muted); font-size: 11.5px; line-height: 1.35; }

body.fxce-premium-cart [data-fxce-cart-main="1"] :is(.cross-sells, .up-sells, .related) {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 26px 24px 28px !important;
	border-top: 1px solid var(--fxp-border) !important;
}

body.fxce-premium-cart [data-fxce-cart-main="1"] :is(.cross-sells, .up-sells, .related) > h2 {
	margin: 0 0 18px !important;
	font-size: 20px !important;
	font-weight: 780 !important;
	letter-spacing: -.02em !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendations-track="1"] {
	display: flex !important;
	position: static !important;
	gap: 14px !important;
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
	transition: none !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-behavior: smooth !important;
	scroll-snap-type: x mandatory !important;
	scrollbar-width: none !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendations-track="1"]::-webkit-scrollbar { display: none !important; }
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-card="1"] {
	display: block !important;
	flex: 0 0 calc((100% - 14px) / 2) !important;
	width: calc((100% - 14px) / 2) !important;
	max-width: calc((100% - 14px) / 2) !important;
	min-width: 0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	scroll-snap-align: start !important;
	scroll-snap-stop: always !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"] {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	aspect-ratio: 4 / 5 !important;
	min-height: 0 !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	overflow: hidden !important;
	border-radius: 12px !important;
	background: var(--fxp-soft) !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-image="1"] {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 !important;
	object-fit: cover !important;
	object-position: center top !important;
}

body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-copy="1"] {
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 0 !important;
	margin-top: 0 !important;
}

.fxce-cart-recommendation-dots,
body.fxce-premium-cart .fxce-cart-recommendations :is(.swiper-pagination, .slick-dots, .owl-dots) {
	min-height: 24px;
	margin: 14px 0 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 7px !important;
}

.fxce-cart-recommendation-dots button {
	width: 7px;
	height: 7px;
	min-width: 7px;
	min-height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d8cbd0;
	box-shadow: none;
}

.fxce-cart-recommendation-dots button.is-active { width: 20px; border-radius: 999px; background: var(--fxp-primary); }

/* The FCC fallback owns pagination when the theme did not expose a live
   carousel instance. Suppress dormant Glozin pagination in that case only. */
body.fxce-premium-cart .fxce-cart-recommendations[data-fxce-recommendations-owner="fcc"] :is(.swiper-pagination, .swiper-pagination-bullets, .slick-dots, .owl-dots, .gz-swiper-pagination) {
	display: none !important;
}

/* Empty cart is deliberately calm and useful. */
body.fxce-premium-cart .cart-empty,
body.fxce-premium-cart .woocommerce-info.cart-empty {
	width: min(680px, calc(100% - 32px)) !important;
	margin: 72px auto 18px !important;
	padding: 32px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: var(--fxp-radius) !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-text) !important;
	text-align: center !important;
	box-shadow: var(--fxp-shadow) !important;
}

body.fxce-premium-cart .return-to-shop { text-align: center !important; }
body.fxce-premium-cart .return-to-shop .button { min-height: 48px !important; padding: 0 22px !important; border-radius: 999px !important; background: var(--fxp-primary) !important; color: var(--fxp-primary-text) !important; }

/* Checkout composition. */
body.fxce-premium-checkout .woocommerce {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

.fxce-checkout-progress {
	position: static !important;
	width: min(320px, 100%);
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
}

.fxce-checkout-progress li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	color: var(--fxp-muted);
}

.fxce-checkout-progress li:not(:last-child)::after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 13px;
	left: calc(50% + 17px);
	right: calc(-50% + 17px);
	height: 1px;
	background: var(--fxp-border);
}

.fxce-checkout-progress li > span {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border: 1px solid var(--fxp-border);
	border-radius: 50%;
	background: var(--fxp-surface);
	font-size: 10px;
	font-weight: 800;
}

.fxce-checkout-progress li small { font-size: 10px; font-weight: 700; }
.fxce-checkout-progress li small {
	position: relative;
	z-index: 2;
	padding-inline: 5px;
	background: var(--fxp-surface);
	text-decoration: none !important;
}
.fxce-checkout-progress--2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.fxce-checkout-progress li.is-complete { color: var(--fxp-success); }
.fxce-checkout-progress li.is-complete > span { border-color: #b7e0d1; background: #edf9f4; }
.fxce-checkout-progress li.is-current { color: var(--fxp-text); }
.fxce-checkout-progress li.is-current > span { border-color: var(--fxp-primary); background: var(--fxp-primary); color: var(--fxp-primary-text); }

body.fxce-premium-checkout form.checkout {
	width: min(1280px, calc(100% - 48px)) !important;
	max-width: none !important;
	margin: 0 auto 84px !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1.32fr) minmax(360px, .68fr) !important;
	gap: 24px !important;
	align-items: start !important;
}

body.fxce-premium-checkout form.checkout > #customer_details {
	grid-column: 1 !important;
	min-width: 0 !important;
	display: grid !important;
	gap: 16px !important;
}

body.fxce-premium-checkout form.checkout > #order_review_heading {
	grid-column: 2 !important;
	grid-row: 1 !important;
	margin: 0 !important;
	padding: 0 4px !important;
	color: var(--fxp-text) !important;
	font-size: 22px !important;
	font-weight: 780 !important;
	letter-spacing: -.025em !important;
}

body.fxce-premium-checkout form.checkout > #order_review {
	grid-column: 2 !important;
	grid-row: 1 / span 2 !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 42px 0 0 !important;
	padding: 24px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: var(--fxp-radius) !important;
	background: var(--fxp-surface) !important;
	box-shadow: var(--fxp-shadow) !important;
}

body.fxce-premium-checkout.fxce-checkout-sticky-summary form.checkout > #order_review {
	position: sticky !important;
	top: 88px !important;
}

body.fxce-premium-checkout :is(.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields) {
	position: relative !important;
	padding: 24px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: var(--fxp-radius) !important;
	background: var(--fxp-surface) !important;
	box-shadow: none !important;
}

body.fxce-premium-checkout [data-fxce-checkout-section="contact"]::before,
body.fxce-premium-checkout [data-fxce-checkout-section="delivery"]::before {
	content: attr(data-fxce-step);
	position: absolute;
	top: 23px;
	left: 24px;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--fxp-text);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

body.fxce-premium-checkout :is(.woocommerce-billing-fields, .woocommerce-shipping-fields) > h3 {
	min-height: 28px !important;
	margin: 0 0 20px !important;
	padding-left: 38px !important;
	display: flex !important;
	align-items: center !important;
	color: var(--fxp-text) !important;
	font-size: 19px !important;
	font-weight: 780 !important;
	letter-spacing: -.02em !important;
}

body.fxce-premium-checkout form.checkout #customer_details :is(.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper) {
	display: grid !important;
	grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	gap: 15px 12px !important;
}

body.fxce-premium-checkout form.checkout #customer_details .form-row {
	position: relative !important;
	float: none !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	grid-column: span 6 !important;
}

body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="address_1"],
body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="address_2"],
body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="email"] { grid-column: 1 / -1 !important; }

body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="postcode"],
body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="city"],
body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="state"] { grid-column: span 4 !important; }

body.fxce-premium-checkout .form-row label {
	display: block !important;
	margin: 0 0 6px !important;
	color: var(--fxp-text) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

body.fxce-premium-checkout .form-row .required { color: var(--fxp-danger) !important; }

body.fxce-premium-checkout .form-row :is(input.input-text, select, textarea, .select2-container, .select2-selection) {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
}

body.fxce-premium-checkout .form-row :is(input.input-text, select, textarea, .select2-selection) {
	min-height: 50px !important;
	padding: 0 14px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 12px !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-text) !important;
	font-size: 14px !important;
	box-shadow: none !important;
	outline: 0 !important;
}

body.fxce-premium-checkout .form-row textarea {
	min-height: 96px !important;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
	resize: vertical !important;
}

body.fxce-premium-checkout .form-row :is(input.input-text, select, textarea, .select2-selection):focus {
	border-color: var(--fxp-text) !important;
	box-shadow: 0 0 0 3px rgba(23, 25, 31, .07) !important;
}

body.fxce-premium-checkout .fxce-field-verified :is(input.input-text, .select2-selection) { padding-right: 44px !important; }

body.fxce-premium-checkout .fxce-verified-indicator {
	right: 13px !important;
	bottom: 14px !important;
	width: 22px !important;
	height: 22px !important;
	background: #e8f8ef !important;
	color: var(--fxp-success) !important;
}

body.fxce-premium-checkout #ship-to-different-address {
	margin: 0 0 16px !important;
	padding: 12px 14px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 12px !important;
	background: var(--fxp-soft) !important;
	font-size: 13px !important;
}

body.fxce-premium-checkout .fxce-checkout-section-toggle {
	min-height: 28px !important;
	font-size: 17px !important;
	font-weight: 780 !important;
}

body.fxce-premium-checkout .woocommerce-form-coupon-toggle,
body.fxce-premium-checkout .woocommerce-form-login-toggle {
	width: min(1280px, calc(100% - 48px)) !important;
	margin: 0 auto 12px !important;
}

body.fxce-premium-checkout :is(.woocommerce-form-coupon-toggle, .woocommerce-form-login-toggle) .woocommerce-info {
	margin: 0 !important;
	padding: 13px 16px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 14px !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-muted) !important;
	font-size: 13px !important;
}

body.fxce-premium-checkout form.checkout_coupon {
	width: min(680px, calc(100% - 48px)) !important;
	margin: 0 auto 18px !important;
	padding: 16px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 14px !important;
	background: var(--fxp-surface) !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table {
	width: 100% !important;
	margin: 0 0 18px !important;
	border: 0 !important;
	border-collapse: collapse !important;
	background: transparent !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(th, td) {
	padding: 11px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid var(--fxp-border) !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table thead th {
	color: var(--fxp-muted) !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .08em !important;
	text-transform: uppercase !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table td.product-total,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot td { text-align: right !important; white-space: nowrap !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table .order-total :is(th, td) { padding-top: 16px !important; border-bottom: 0 !important; font-size: 17px !important; font-weight: 820 !important; }

body.fxce-premium-checkout #payment {
	margin: 0 !important;
	padding: 16px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 16px !important;
	background: var(--fxp-soft) !important;
}

body.fxce-premium-checkout #payment .payment_methods {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	list-style: none !important;
}

body.fxce-premium-checkout #payment .wc_payment_method {
	margin: 0 !important;
	padding: 13px 0 !important;
	border-bottom: 1px solid var(--fxp-border) !important;
}

body.fxce-premium-checkout #payment .wc_payment_method:last-child { border-bottom: 0 !important; }
body.fxce-premium-checkout #payment .wc_payment_method > label { color: var(--fxp-text) !important; font-size: 13px !important; font-weight: 750 !important; }
body.fxce-premium-checkout #payment .payment_box { margin: 10px 0 0 !important; padding: 12px !important; border-radius: 12px !important; background: var(--fxp-surface) !important; color: var(--fxp-muted) !important; font-size: 12px !important; }
body.fxce-premium-checkout #payment .place-order { margin: 0 !important; padding: 16px 0 0 !important; }
body.fxce-premium-checkout #payment .woocommerce-privacy-policy-text { color: var(--fxp-muted) !important; font-size: 11px !important; line-height: 1.55 !important; }

body.fxce-premium-checkout #place_order {
	width: 100% !important;
	min-height: 56px !important;
	margin: 14px 0 0 !important;
	padding: 0 20px !important;
	border: 1px solid var(--fxp-primary) !important;
	border-radius: 999px !important;
	background: var(--fxp-primary) !important;
	color: var(--fxp-primary-text) !important;
	font-size: 14px !important;
	font-weight: 820 !important;
	box-shadow: none !important;
}

.fxce-checkout-assurance {
	margin-top: 18px;
	padding-top: 16px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	border-top: 1px solid var(--fxp-border);
}

.fxce-checkout-assurance > div {
	min-width: 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.fxce-checkout-assurance svg {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--fxp-success);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fxce-checkout-assurance span { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fxce-checkout-assurance strong { color: var(--fxp-text); font-size: 10px; font-weight: 780; line-height: 1.3; }
.fxce-checkout-assurance small { color: var(--fxp-muted); font-size: 9px; line-height: 1.35; }

body.fxce-premium-checkout :is(.woocommerce-error, .woocommerce-NoticeGroup-checkout, .woocommerce-message) {
	width: min(1280px, calc(100% - 48px)) !important;
	margin: 0 auto 14px !important;
	padding: 14px 16px 14px 44px !important;
	border: 1px solid #f3c4cc !important;
	border-radius: 14px !important;
	background: #fff6f8 !important;
	color: #7a2638 !important;
	font-size: 13px !important;
}

/* Success and error feedback must not share the same danger treatment. Native
   coupon confirmations are also relocated beside the checkout coupon control
   by checkout-experience.js so they cannot fall below the page workspace. */
body.fxce-premium-checkout .woocommerce-message:not(.woocommerce-error) {
	border-color: #b9e2ca !important;
	background: #f1fbf5 !important;
	color: #12643a !important;
}

body.fxce-premium-checkout .fxce-checkout-coupon-feedback {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	margin: 8px 0 0 !important;
	padding: 9px 11px !important;
	border: 1px solid #b9e2ca !important;
	border-radius: 10px !important;
	background: #f1fbf5 !important;
	color: #12643a !important;
	font-size: 11px !important;
	font-weight: 650 !important;
	line-height: 1.4 !important;
}

body.fxce-premium-checkout .fxce-checkout-coupon-feedback::before {
	content: "";
	flex: 0 0 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #16834e;
}

body.fxce-premium-checkout .fxce-checkout-coupon-feedback[hidden] {
	display: none !important;
}

/* Tablet uses one calm reading column rather than two squeezed columns. */
@media (max-width: 1023px) {
	.fxce-cart-page-header,
	.fxce-checkout-page-header,
	body.fxce-premium-cart .woocommerce,
	body.fxce-premium-checkout form.checkout,
	body.fxce-premium-checkout .woocommerce-form-coupon-toggle,
	body.fxce-premium-checkout .woocommerce-form-login-toggle { width: min(760px, calc(100% - 32px)) !important; }

	body.fxce-premium-cart [data-fxce-cart-shell="1"] { grid-template-columns: 1fr !important; }
	body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals { position: static !important; }

	body.fxce-premium-checkout form.checkout {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
	}

	body.fxce-premium-checkout form.checkout :is(#customer_details, #order_review_heading, #order_review) {
		width: 100% !important;
		margin: 0 !important;
	}

	body.fxce-premium-checkout form.checkout > #order_review { position: static !important; padding: 22px !important; }
}

/* Mobile cart: product cards, clear totals, persistent checkout action. */
@media (max-width: 767px) {
	body.fxce-premium-cart,
	body.fxce-premium-checkout { --fxp-radius: 16px; --fxp-shadow: none; overflow-x: hidden !important; }

	.fxce-cart-page-header,
	.fxce-checkout-page-header {
		width: calc(100% - 24px) !important;
		margin: 18px auto 16px !important;
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.fxce-cart-page-header h1,
	.fxce-checkout-page-header h1 { font-size: 29px !important; }

	.fxce-cart-page-header p,
	.fxce-checkout-page-header p { margin-top: 7px !important; font-size: 12px !important; }

	.fxce-cart-continue { min-height: 40px; padding: 0 13px; font-size: 11px; }

	body.fxce-premium-cart .woocommerce,
	body.fxce-premium-checkout form.checkout,
	body.fxce-premium-checkout .woocommerce-form-coupon-toggle,
	body.fxce-premium-checkout .woocommerce-form-login-toggle {
		width: calc(100% - 24px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	body.fxce-premium-cart .woocommerce { margin-bottom: 88px !important; }
	body.fxce-premium-cart [data-fxce-cart-shell="1"] { display: block !important; }
	body.fxce-premium-cart [data-fxce-cart-main="1"] { overflow: visible !important; border: 0 !important; background: transparent !important; }

	body.fxce-premium-cart .fxce-cart-card-heading {
		min-height: 58px !important;
		margin-bottom: 10px !important;
		padding: 14px 16px !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: var(--fxp-radius) !important;
		background: var(--fxp-surface) !important;
	}

	body.fxce-premium-cart .fxce-cart-card-heading strong { font-size: 18px !important; }
	body.fxce-premium-cart [data-fxce-cart-main="1"] > .woocommerce-cart-form { padding: 0 !important; background: transparent !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents { display: block !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents :is(thead, tbody, tr, td) { width: 100% !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents thead { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents tbody { display: block !important; }

	body.fxce-premium-cart .woocommerce-cart-form__cart-item {
		position: relative !important;
		min-height: 146px !important;
		margin: 0 0 10px !important;
		padding: 14px !important;
		display: grid !important;
		grid-template-columns: 88px minmax(0, 1fr) !important;
		grid-template-rows: auto auto 1fr auto !important;
		gap: 6px 12px !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: var(--fxp-radius) !important;
		background: var(--fxp-surface) !important;
		box-shadow: none !important;
	}

	body.fxce-premium-cart .woocommerce-cart-form__cart-item > td {
		display: block !important;
		width: auto !important;
		min-width: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		text-align: left !important;
	}

	body.fxce-premium-cart .woocommerce-cart-form__cart-item > td::before { display: none !important; content: none !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-thumbnail { grid-column: 1 !important; grid-row: 1 / 5 !important; width: 88px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-thumbnail img { width: 88px !important; height: 118px !important; border-radius: 12px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-name { grid-column: 2 !important; grid-row: 1 !important; min-width: 0 !important; padding-right: 0 !important; font-size: 13px !important; line-height: 1.4 !important; overflow-wrap: anywhere !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-price { display: none !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-subtotal { grid-column: 2 !important; grid-row: 2 !important; font-size: 13px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item .product-quantity { grid-column: 2 !important; grid-row: 4 !important; display: flex !important; align-items: center !important; align-self: end !important; justify-self: start !important; margin-left: 40px !important; }
	body.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-remove { position: static !important; inset: auto !important; grid-column: 2 !important; grid-row: 4 !important; width: 30px !important; height: 30px !important; padding: 0 !important; margin: 0 !important; align-self: center !important; justify-self: start !important; }
	body.fxce-premium-cart .quantity { width: max-content !important; max-width: 100% !important; grid-template-columns: 32px 36px 32px !important; min-height: 36px !important; }
	body.fxce-premium-cart .quantity :is(.minus, .plus, button) { width: 32px !important; min-width: 32px !important; height: 34px !important; min-height: 34px !important; }
	body.fxce-premium-cart .quantity input.qty { width: 36px !important; height: 34px !important; min-height: 34px !important; }

	body.fxce-premium-cart .woocommerce-cart-form__contents tr:not(.cart_item) { display: block !important; }
	body.fxce-premium-cart .woocommerce-cart-form__contents td.actions { display: grid !important; gap: 9px !important; padding: 2px 0 14px !important; }
	body.fxce-premium-cart .coupon { grid-template-columns: minmax(0, 1fr) auto !important; width: 100% !important; }
	body.fxce-premium-cart td.actions > button[name="update_cart"] { float: none !important; width: 100% !important; }

	body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
		position: static !important;
		margin-top: 2px !important;
		padding: 18px !important;
		border-radius: var(--fxp-radius) !important;
	}

	body.fxce-premium-cart .cart_totals > h2 { font-size: 19px !important; }
	body.fxce-premium-cart .cart_totals :is(th, td) { font-size: 12px !important; }
	body.fxce-premium-cart .cart_totals .order-total :is(th, td) { font-size: 15px !important; }
	body.fxce-premium-cart .wc-proceed-to-checkout { display: none !important; }
	body.fxce-premium-cart :is(.gz-cart-service-highlight, .cart-service-highlight) { display: none !important; }

	body.flashyn-mobile-theme-active.woocommerce-cart.fxce-premium-cart .woocommerce-cart-form__cart-item { padding-right: 14px !important; }
	body.flashyn-mobile-theme-active.woocommerce-cart.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-name {
		padding-right: 44px !important;
	}
	body.flashyn-mobile-theme-active.woocommerce-cart.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-remove {
		position: absolute !important;
		z-index: 9 !important;
		inset: 46px 4px auto auto !important;
		grid-column: auto !important;
		grid-row: auto !important;
		width: 30px !important;
		height: 30px !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	body.flashyn-mobile-theme-active.woocommerce-cart.fxce-premium-cart .woocommerce-cart-form__cart-item td.product-remove > a.remove[data-fxce-cart-remove-control="1"] {
		width: 30px !important;
		height: 30px !important;
		min-width: 30px !important;
		min-height: 30px !important;
		margin: 0 !important;
		font-size: 0 !important;
	}
	body.flashyn-mobile-theme-active.woocommerce-cart.fxce-premium-cart .woocommerce-cart-form__cart-item .product-quantity {
		grid-column: 2 !important;
		grid-row: 4 !important;
		margin-left: 0 !important;
	}

	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-card="1"] {
		flex-basis: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
		align-items: center !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"] {
		width: min(54vw, 210px) !important;
		height: auto !important;
		aspect-ratio: 3 / 4 !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-copy="1"] {
		width: min(100%, 300px) !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head {
		flex-direction: row !important;
		align-items: center !important;
		gap: 8px !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head span {
		width: auto !important;
		white-space: nowrap !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] > small { display: none !important; }
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied {
		min-height: 38px !important;
		margin-top: 7px !important;
		padding: 7px 9px !important;
		align-items: center !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-check {
		width: 21px !important;
		height: 21px !important;
		flex-basis: 21px !important;
		font-size: 12px !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock {
		margin-top: 7px !important;
		padding: 7px 9px !important;
		font-size: 10px !important;
		line-height: 1.35 !important;
	}
	.fxce-cart-assurance { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
	.fxce-cart-assurance__item { min-width: 0; align-items: flex-start; flex-direction: column; gap: 7px; }
	.fxce-cart-assurance__icon { width: 38px; height: 38px; flex-basis: 38px; }
	.fxce-cart-assurance__icon svg { width: 20px; height: 20px; }
	.fxce-cart-assurance__item strong { font-size: 12.5px; }
	.fxce-cart-assurance__item small { font-size: 11px; }

	body.fxce-premium-cart .fxce-mobile-cart-checkout {
		position: fixed !important;
		z-index: 9997 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		min-height: 76px !important;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;
		display: grid !important;
		grid-template-columns: minmax(96px, .55fr) minmax(0, 1.45fr) !important;
		align-items: center !important;
		gap: 10px !important;
		border-top: 1px solid var(--fxp-border) !important;
		background: color-mix(in srgb, var(--fxp-surface) 94%, transparent) !important;
		box-shadow: 0 -12px 30px rgba(17, 24, 39, .1) !important;
		backdrop-filter: blur(16px) !important;
	}

	body.flashyn-commerce-navigation-mobile.fxce-premium-cart .fxce-mobile-cart-checkout { bottom: calc(66px + env(safe-area-inset-bottom)) !important; padding-bottom: 10px !important; }

	.fxce-mobile-cart-checkout__total { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
	body.fxce-premium-cart .fxce-mobile-cart-checkout__total { align-items: center !important; text-align: center !important; }
	.fxce-mobile-cart-checkout__total small { color: var(--fxp-muted); font-size: 9px; font-weight: 700; line-height: 1.2; }
	.fxce-mobile-cart-checkout__total strong { color: var(--fxp-text); font-size: 15px; font-weight: 820; line-height: 1.2; white-space: nowrap; }

	body.fxce-premium-cart .fxce-mobile-cart-checkout__button {
		width: 100% !important;
		min-width: 0 !important;
		min-height: 52px !important;
		margin: 0 !important;
		padding: 0 12px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		border: 1px solid var(--fxp-primary) !important;
		border-radius: 999px !important;
		background: var(--fxp-primary) !important;
		color: var(--fxp-primary-text) !important;
		font-size: 12px !important;
		font-weight: 820 !important;
		line-height: 1.2 !important;
		text-align: center !important;
		text-decoration: none !important;
	}

	/* Mobile checkout remains one continuous, easily scanned transaction. */
	.fxce-checkout-page-header { gap: 16px; }
	.fxce-checkout-progress { width: 100%; max-width: 310px; align-self: stretch; }
	body.fxce-premium-checkout form.checkout { margin-bottom: 44px !important; display: flex !important; flex-direction: column !important; gap: 12px !important; }
	body.fxce-premium-checkout form.checkout :is(#customer_details, #order_review_heading, #order_review) { width: 100% !important; margin: 0 !important; }
	body.fxce-premium-checkout form.checkout > #order_review_heading { padding: 7px 2px 0 !important; font-size: 19px !important; }
	body.fxce-premium-checkout form.checkout > #order_review { position: static !important; padding: 16px !important; border-radius: var(--fxp-radius) !important; }

	body.fxce-premium-checkout :is(.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-additional-fields) {
		padding: 17px 15px !important;
		border-radius: var(--fxp-radius) !important;
	}

	body.fxce-premium-checkout [data-fxce-checkout-section="contact"]::before,
	body.fxce-premium-checkout [data-fxce-checkout-section="delivery"]::before { top: 17px; left: 15px; width: 24px; height: 24px; }
	body.fxce-premium-checkout :is(.woocommerce-billing-fields, .woocommerce-shipping-fields) > h3 { min-height: 24px !important; margin-bottom: 17px !important; padding-left: 34px !important; font-size: 17px !important; }

	body.fxce-premium-checkout form.checkout #customer_details :is(.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper) { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px 9px !important; }
	body.fxce-premium-checkout form.checkout #customer_details .form-row { grid-column: 1 / -1 !important; }
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="first_name"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="last_name"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="postcode"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="city"] { grid-column: span 1 !important; }
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="state"] { grid-column: 1 / -1 !important; }
	body.fxce-premium-checkout .form-row label { font-size: 11px !important; }
	body.fxce-premium-checkout .form-row :is(input.input-text, select, .select2-selection) { min-height: 48px !important; font-size: 13px !important; }
	body.fxce-premium-checkout .fxce-checkout-summary-toggle { margin-bottom: 10px !important; padding-bottom: 12px !important; }
	body.fxce-premium-checkout .fxce-checkout-summary-toggle strong { font-size: 16px !important; }
	body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(th, td) { font-size: 11px !important; }
	body.fxce-premium-checkout .woocommerce-checkout-review-order-table .order-total :is(th, td) { font-size: 15px !important; }
	body.fxce-premium-checkout #payment { padding: 13px !important; border-radius: 14px !important; }
	body.fxce-premium-checkout #place_order { min-height: 54px !important; font-size: 13px !important; }
	.fxce-checkout-assurance { grid-template-columns: 1fr; }
	body.fxce-premium-checkout form.checkout_coupon { width: calc(100% - 24px) !important; }
	body.fxce-premium-checkout :is(.woocommerce-error, .woocommerce-NoticeGroup-checkout, .woocommerce-message) { width: calc(100% - 24px) !important; }
}

/* v7.34.33.30 — FCC-owned address UI and true checkout action dock. */
body.fxce-premium-checkout [data-fxce-native-address-fields="1"] {
	display: none !important;
	visibility: hidden !important;
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

body.fxce-premium-checkout [data-fxce-checkout-section="address"] {
	width: 100% !important;
	max-width: none !important;
}

.fxce-address-editor {
	width: 100%;
	padding: 4px 0 0;
}
.fxce-address-editor[hidden] { display: none !important; }
.fxce-address-editor__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.fxce-owned-field {
	min-width: 0;
	display: grid;
	align-content: start;
	gap: 7px;
	color: var(--fxp-text);
}
.fxce-owned-field.is-wide { grid-column: 1 / -1; }
.fxce-owned-field > span:first-child {
	font-size: 12px;
	font-weight: 740;
	line-height: 1.35;
}
.fxce-owned-field > span:first-child b { color: var(--fxp-danger); }
.fxce-owned-field > span:first-child small { color: var(--fxp-muted); font-size: 10px; font-weight: 500; }
.fxce-owned-field > span:first-child .fxce-field-requirement{margin-left:5px;font-weight:500;text-transform:none}
.fxce-owned-field__help{margin-top:-2px;color:var(--fxp-muted);font-size:10px;font-weight:400;line-height:1.35}
.fxce-owned-field__control { display: block; min-width: 0; }
.fxce-owned-field__control :is(input, select) {
	width: 100%;
	min-width: 0;
	min-height: 50px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid var(--fxp-border);
	border-radius: 12px;
	background: var(--fxp-surface);
	color: var(--fxp-text);
	font: inherit;
	font-size: 14px;
	box-shadow: none;
	outline: 0;
}
.fxce-owned-field__control :is(input, select):focus {
	border-color: var(--fxp-primary);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--fxp-primary) 10%, transparent);
}
.fxce-owned-field__status,
.fxce-email-verification__status {
	min-height: 15px;
	color: var(--fxp-muted);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.35;
}
.fxce-owned-field__status.is-error,
.fxce-email-verification__status.is-error { color: var(--fxp-danger); }
.fxce-owned-field.has-error .fxce-owned-field__control :is(input, select) {
	border-color: var(--fxp-danger) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--fxp-danger) 10%, transparent) !important;
}
.fxce-owned-field__control + .fxce-owned-field__status {
	margin-top: -2px;
}
.fxce-owned-field__status:empty {
	display: none;
	min-height: 0;
}
.fxce-owned-field.has-verification .fxce-email-verification {
	margin-top: 0;
}
.fxce-email-verification__status.is-verified { color: var(--fxp-success); }
.fxce-email-verification__status.is-pending { color: var(--fxp-muted); }

.fxce-email-verification {
	margin-top: 2px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 7px 10px;
}
.fxce-email-verification > button,
.fxce-email-code-row button {
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid var(--fxp-border);
	border-radius: 999px;
	background: var(--fxp-surface);
	color: var(--fxp-text);
	font-size: 10px;
	font-weight: 780;
}
.fxce-email-code-row {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
}
.fxce-email-code-row[hidden] { display: none !important; }
.fxce-email-code-row input {
	width: 100%;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--fxp-border);
	border-radius: 10px;
	background: var(--fxp-surface);
}
.fxce-email-code-row small { color: var(--fxp-muted); font-size: 10px; line-height: 1.35; }
.fxce-email-verification[data-fxce-verification-state="verified"] > button,
.fxce-email-verification[data-fxce-verification-state="verified"] .fxce-email-code-row { display: none !important; }

.fxce-address-card {
	grid-template-columns: 46px minmax(0, 1fr) auto;
	align-items: start;
	min-height: 132px;
	padding: 18px;
}
.fxce-address-card[hidden] { display: none !important; }
.fxce-address-card__content { min-width: 0; display: grid; gap: 4px; }
.fxce-address-card__content strong { color: var(--fxp-text); font-size: 16px; line-height: 1.35; }
.fxce-address-card__content > span:not(.fxce-address-card__label) { color: var(--fxp-text); font-size: 13px; font-weight: 650; }
.fxce-address-card__content small { max-width: 620px; color: var(--fxp-muted); font-size: 13px; line-height: 1.55; }
.fxce-address-card [data-fxce-change-address] { align-self: center; white-space: nowrap; cursor: pointer; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout[data-fxce-checkout-step="1"] form.checkout { grid-template-columns: minmax(0, 980px) !important; }
	body.fxce-premium-checkout [data-fxce-checkout-section="address"] { padding: 30px !important; }
	body.fxce-premium-checkout [data-fxce-checkout-section="address"]::before { top: 29px; left: 30px; }
	body.fxce-premium-checkout [data-fxce-checkout-section="address"] > h3 { margin-bottom: 24px !important; padding-left: 40px !important; }
	.fxce-checkout-step-actions { margin-top: 4px; }
}

@media (max-width: 767px) {
	body.fxce-premium-checkout { padding-bottom: calc(88px + env(safe-area-inset-bottom)) !important; }
	body.fxce-premium-checkout form.checkout { margin-bottom: 24px !important; }
	.fxce-address-editor__grid { grid-template-columns: 1fr; gap: 13px; }
	.fxce-owned-field,
	.fxce-owned-field.is-half,
	.fxce-owned-field.is-wide { grid-column: 1 / -1; }
	.fxce-owned-field__control :is(input, select) { min-height: 48px; font-size: 13px; }
	.fxce-address-card { grid-template-columns: 42px minmax(0, 1fr); min-height: 0; padding: 15px; gap: 11px; }
	.fxce-address-card [data-fxce-change-address] { grid-column: 2; justify-self: start; margin-top: 4px; }
	.fxce-address-card__content strong { font-size: 15px; }
	.fxce-address-card__content small { font-size: 12px; }
	.fxce-checkout-step-actions {
		position: fixed !important;
		z-index: 10030 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
		display: flex !important;
		gap: 9px !important;
		border-top: 1px solid var(--fxp-border) !important;
		background: color-mix(in srgb, var(--fxp-surface) 96%, transparent) !important;
		box-shadow: 0 -10px 28px rgba(28, 18, 22, .09) !important;
		backdrop-filter: blur(14px);
	}
	.fxce-checkout-step-actions .fxce-step-back { min-width: 82px; min-height: 52px; }
	.fxce-checkout-step-actions .fxce-step-next { min-height: 52px; max-width: none; flex: 1; }
	body.fxce-premium-checkout #payment .place-order.fxce-place-order-ready #place_order { display: none !important; }
	body.fxce-premium-checkout [data-fxce-surface="mobile-footer"][data-fxce-checkout-footer="1"] {
		--fxce-footer-safe-space: 92px;
		margin-top: 18px !important;
	}
}

/* Keep cart and checkout content visible while the native WooCommerce
   transaction completes. A compact status replaces the former full-surface
   fade/blanking treatment. */
html.fxce-cart-update-active body:is(.woocommerce-cart,.woocommerce-checkout)::before {
	content: "Updating cart…";
	position: fixed;
	z-index: 9998;
	left: 50%;
	top: max(74px, calc(env(safe-area-inset-top) + 58px));
	transform: translate(-50%, -50%);
	padding: 9px 14px;
	border: 1px solid #e5e0da;
	border-radius: 999px;
	background: #fff;
	color: #292524;
	box-shadow: 0 14px 44px rgba(28, 25, 23, .12);
	font-size: 12px;
	font-weight: 720;
}
html.fxce-cart-update-active body:is(.woocommerce-cart,.woocommerce-checkout) :is(
	.widget_shopping_cart_content,
	.woocommerce-mini-cart,
	[data-fxce-surface="cart-drawer"],
	.woocommerce-cart-form,
	.cart_totals,
	form.checkout,
	#order_review,
	[data-fxce-order-products]
) {
	opacity: 1 !important;
	visibility: visible !important;
}
html.fxce-cart-update-active body:is(.woocommerce-cart,.woocommerce-checkout) :is(
	.widget_shopping_cart_content,
	.woocommerce-mini-cart,
	[data-fxce-surface="cart-drawer"],
	.woocommerce-cart-form,
	.cart_totals,
	form.checkout,
	#order_review,
	[data-fxce-order-products]
) > .blockUI.blockOverlay {
	background: transparent !important;
	opacity: 0 !important;
}

body.fxce-premium-cart {
	background: #f7f4ef !important;
}
body.fxce-premium-cart .cart-collaterals .cart_totals {
	border: 1px solid #ded8d1 !important;
	background: #fff !important;
	box-shadow: 0 16px 42px rgba(35, 29, 24, .08) !important;
}
body.fxce-premium-cart .fxce-cart-coupon {
	margin: 10px 0 14px !important;
	background: #fff !important;
}
body.fxce-premium-cart .fxce-cart-coupon > .coupon {
	margin: 0 !important;
	padding: 0 10px 10px !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 8px !important;
	border: 0 !important;
}
body.fxce-premium-cart .fxce-cart-coupon > .coupon :is(input,button) {
	min-height: 40px !important;
	margin: 0 !important;
	border-radius: 9px !important;
}
body.fxce-premium-cart .fxce-cart-coupon > .coupon button {
	padding-inline: 14px !important;
	background: var(--fxp-text, #171217) !important;
	color: #fff !important;
}
body.fxce-premium-cart .fxce-cart-student-benefit {
	margin-top: 16px;
	padding: 18px;
	border-radius: 15px;
}
.fxce-cart-student-content {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #d9ebe2;
}
.fxce-cart-student-content[hidden],
.fxce-cart-student-code[hidden],
.fxce-cart-student-verified[hidden] {
	display: none !important;
}
.fxce-cart-student-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}
.fxce-cart-student-fields label {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--fxp-text, #171217);
	font-size: 11px;
	font-weight: 720;
}
.fxce-cart-student-fields input {
	width: 100%;
	min-height: 44px;
	box-sizing: border-box;
	border: 1px solid var(--fxp-border, #ddd7d0);
	border-radius: 10px;
	background: #fff;
}
.fxce-cart-student-code {
	display: grid;
	gap: 6px;
}
.fxce-cart-student-code > button,
.fxce-email-resend {
	justify-self: start;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: #166b4d !important;
	font-size: 11px !important;
	font-weight: 720 !important;
	text-decoration: underline;
}
.fxce-cart-student-actions {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.fxce-cart-student-actions > button {
	min-height: 40px;
	padding: 0 15px;
	border: 0;
	border-radius: 9px;
	background: #171217;
	color: #fff;
	font-size: 11px;
	font-weight: 750;
}
.fxce-cart-student-actions small {
	color: var(--fxp-muted, #6f6863);
	font-size: 11px;
}
.fxce-cart-student-actions small.is-error { color: var(--fxp-danger, #b42318); }
.fxce-cart-student-verified,
.fxce-student-verified-summary {
	margin-top: 14px;
	padding: 11px 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #b8dec9;
	border-radius: 11px;
	background: #f1faf5;
	color: #166b4d;
}
.fxce-cart-student-verified svg,
.fxce-student-verified-summary > svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
}
.fxce-cart-student-verified span,
.fxce-student-verified-summary span { display: grid; gap: 2px; }
.fxce-cart-student-verified strong,
.fxce-student-verified-summary strong { font-size: 12px; }
.fxce-cart-student-verified small,
.fxce-student-verified-summary small { color: #38735d; font-size: 10.5px; }
.fxce-cart-student-login { margin: 12px 0 0; color: var(--fxp-muted, #6f6863); font-size: 11px; }
.fxce-student-benefit-choice input:disabled + span { background: #f3f1ee; opacity: .7; }
.fxce-student-benefit-choice:has(input:disabled) { cursor: not-allowed; opacity: .72; }

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] {
	display: grid !important;
	grid-template-columns: minmax(100px, .7fr) minmax(0, 1.3fr) !important;
	width: auto !important;
	margin: 12px 0 8px !important;
	padding: 12px !important;
	border: 1px solid #e3ded8 !important;
	border-radius: 11px !important;
	background: #faf8f5 !important;
}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] :is(th,td) {
	display: block !important;
	width: auto !important;
	padding: 0 !important;
}

.fxce-student-benefit-email {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	align-items: start !important;
	column-gap: 14px !important;
}
.fxce-student-benefit-email .fxce-owned-field__control {
	grid-column: 1;
}
.fxce-student-benefit-email .fxce-email-verification {
	grid-column: 2;
	display: grid;
	align-content: start;
	gap: 6px;
}
.fxce-student-benefit-email .fxce-email-verification > button[data-fxce-send-email-code] {
	min-height: 44px;
	margin: 0;
}
.fxce-email-code-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 5px;
}
.fxce-email-code-row[hidden] { display: none !important; }
.fxce-email-code-row input { min-height: 44px !important; }
.fxce-email-code-row small { font-size: 10px; color: var(--fxp-muted, #6f6863); }
.fxce-email-verification__status { grid-column: 1; min-height: 16px; font-size: 10.5px; }

@media (min-width: 1180px) {
	body.fxce-premium-cart .woocommerce {
		width: min(1500px, calc(100% - 28px)) !important;
	}
	body.fxce-premium-cart [data-fxce-cart-shell="1"] {
		grid-template-columns: minmax(0, 1.55fr) minmax(400px, .75fr) !important;
		gap: 24px !important;
		align-items: start !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		grid-template-columns: minmax(0, 1.42fr) minmax(390px, .78fr) !important;
		align-items: start !important;
	}
}
@media (max-width: 767px) {
	.fxce-cart-student-fields,
	.fxce-student-benefit-email {
		grid-template-columns: minmax(0, 1fr) !important;
	}
	.fxce-student-benefit-email .fxce-email-verification { grid-column: 1; }
	.fxce-cart-student-actions { align-items: flex-start; flex-direction: column; }
	body.fxce-premium-cart .fxce-cart-coupon > .coupon { grid-template-columns: minmax(0, 1fr) !important; }
}

/* v7.34.33.33 — one responsive checkout composition owned by FCC. */
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header,
body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle,
body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout_coupon {
	width: min(1240px, calc(100% - 40px)) !important;
	max-width: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header {
	padding: 22px 0 12px !important;
	align-items: end !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header h1 {
	font-size: clamp(27px, 3vw, 38px) !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header p {
	font-size: 12px !important;
}

.fxce-checkout-notes-toggle {
	width: 100% !important;
	min-height: 50px !important;
	margin: 0 !important;
	padding: 10px 13px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	text-align: left !important;
	box-shadow: none !important;
}
.fxce-checkout-notes-toggle > span { display: flex; align-items: baseline; gap: 7px; }
.fxce-checkout-notes-toggle strong { font-size: 12px; font-weight: 760; }
.fxce-checkout-notes-toggle small { color: var(--fxp-muted); font-size: 10px; font-weight: 550; }
.fxce-checkout-notes-toggle svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	transition: transform .16s ease;
}
.fxce-checkout-notes-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }
body.fxce-premium-checkout [data-fxce-checkout-section="notes"] {
	padding: 0 5px !important;
}
body.fxce-premium-checkout [data-fxce-checkout-section="notes"] .woocommerce-additional-fields__field-wrapper {
	padding: 0 10px 12px !important;
}

/* Cart recommendations use the image as the sizing anchor. This remains
 * deterministic even when Glozin changes or nests the media wrapper. */
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"] {
	width: min(100%, 240px) !important;
	max-width: 240px !important;
	height: 300px !important;
	aspect-ratio: auto !important;
	margin: 0 auto 12px !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-image="1"] {
	width: min(100%, 240px) !important;
	max-width: 240px !important;
	height: 300px !important;
	max-height: 300px !important;
	margin: 0 auto !important;
	object-fit: cover !important;
	object-position: center top !important;
}

@media (min-width: 768px) {
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop form.checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.35fr) minmax(360px, .9fr) !important;
		align-items: start !important;
		gap: clamp(22px, 3vw, 40px) !important;
		margin-top: 10px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop form.checkout > #customer_details {
		grid-column: 1 !important;
		width: 100% !important;
		margin: 0 !important;
		display: grid !important;
		gap: 14px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop form.checkout > #order_review_heading {
		display: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop form.checkout > #order_review {
		grid-column: 2 !important;
		grid-row: 1 !important;
		position: sticky !important;
		top: 22px !important;
		width: 100% !important;
		max-height: calc(100vh - 44px) !important;
		margin: 0 !important;
		padding: 20px !important;
		overflow: auto !important;
		border-radius: 18px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #customer_details [data-fxce-checkout-section="address"] {
		padding: 22px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #customer_details [data-fxce-checkout-section="address"]::before {
		top: 21px !important;
		left: 22px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #customer_details [data-fxce-checkout-section="address"] > h3 {
		margin-bottom: 18px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #customer_details #payment {
		width: 100% !important;
		margin: 0 !important;
		padding: 18px !important;
		display: block !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: 18px !important;
		background: var(--fxp-surface) !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #payment::before {
		content: "Payment";
		display: block;
		margin: 0 0 12px;
		color: var(--fxp-text);
		font-size: 16px;
		font-weight: 800;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #payment .place-order {
		display: block !important;
		margin-top: 8px !important;
		padding-top: 14px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop #payment #place_order {
		width: 100% !important;
		min-height: 52px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		border-radius: 999px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop .fxce-checkout-step-actions,
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop .fxce-checkout-progress {
		display: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop .fxce-checkout-products__toggle em,
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop .fxce-checkout-products__toggle svg {
		display: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2-desktop .fxce-checkout-products__list[hidden] {
		display: grid !important;
	}
}

@media (max-width: 767px) {
	body.fxce-premium-checkout.fxce-checkout-layout-v2 {
		padding-bottom: calc(84px + env(safe-area-inset-bottom)) !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout_coupon {
		width: calc(100% - 20px) !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header {
		padding: 13px 0 7px !important;
		gap: 10px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header h1 {
		font-size: 23px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header p {
		margin-top: 3px !important;
		font-size: 10.5px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-progress {
		max-width: 260px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		gap: 9px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > [hidden],
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #customer_details[hidden],
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #order_review[hidden] {
		display: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 :is(.woocommerce-billing-fields, .woocommerce-additional-fields) {
		padding: 13px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"] > h3 {
		margin-bottom: 12px !important;
		font-size: 15px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-editor__grid {
		gap: 10px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-owned-field {
		gap: 4px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-owned-field > span:first-child {
		font-size: 10.5px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-owned-field__control :is(input, select) {
		min-height: 44px !important;
		font-size: 12px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #order_review {
		padding: 13px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products__toggle {
		min-height: 44px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products__toggle strong {
		font-size: 13px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products__list article {
		grid-template-columns: 48px minmax(0, 1fr) auto !important;
		padding: 9px 0 !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-product__media {
		width: 48px !important;
		height: 60px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products__list article strong {
		font-size: 11px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-checkout-review-order-table :is(th, td) {
		padding: 8px 0 !important;
		font-size: 10.5px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #payment {
		margin-top: 10px !important;
		padding: 11px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #payment .place-order {
		display: block !important;
		padding-top: 10px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #payment #place_order {
		display: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-step-actions {
		position: fixed !important;
		z-index: 10030 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		min-height: 72px !important;
		padding: 9px 12px calc(9px + env(safe-area-inset-bottom)) !important;
		display: flex !important;
		align-items: center !important;
		background: color-mix(in srgb, var(--fxp-surface) 96%, transparent) !important;
		border-top: 1px solid var(--fxp-border) !important;
		box-shadow: 0 -10px 26px rgba(17, 24, 39, .09) !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"],
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-image="1"] {
		width: 148px !important;
		max-width: 148px !important;
		height: 185px !important;
		max-height: 185px !important;
	}
}

@media (max-width: 420px) {
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="first_name"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="last_name"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="postcode"],
	body.fxce-premium-checkout form.checkout #customer_details .form-row[data-fxce-field="city"] { grid-column: 1 / -1 !important; }
}

@media (max-width: 480px) {
	body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals { padding-bottom: 12px !important; }
	.fxce-cart-assurance { grid-template-columns: 1fr; gap: 10px; margin-top: 16px; padding-top: 14px; }
	.fxce-cart-assurance__item { width: 100%; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: center; gap: 12px; }
	.fxce-cart-assurance__icon { width: 44px; height: 44px; flex-basis: 44px; }
	.fxce-cart-assurance__icon svg { width: 22px; height: 22px; }
	.fxce-cart-assurance__item strong { font-size: 14px; }
	.fxce-cart-assurance__item small { font-size: 12.5px; }
}

/* v7.34.33.29 — real stepped checkout and device-owned theme palettes. */
@media (min-width: 1024px) {
	body.fxce-premium-cart,
	body.fxce-premium-checkout {
		--fxp-canvas: var(--glozin-body-background, var(--body-bg-color, #f8f8f8));
		--fxp-surface: var(--glozin-content-background, var(--content-bg-color, #fff));
		--fxp-text: var(--glozin-heading-color, var(--heading-color, #17191f));
		--fxp-muted: var(--glozin-text-color, var(--text-color, #69707d));
		--fxp-border: var(--glozin-border-color, var(--border-color, #e4e7ec));
		--fxp-primary: var(--glozin-primary-color, var(--primary-color, var(--theme-color-primary, #17191f)));
		--fxp-primary-text: var(--glozin-primary-contrast, var(--primary-contrast, #fff));
	}
}

body.fxce-premium-checkout[data-fxce-checkout-step="1"] form.checkout,
body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout,
body.fxce-premium-checkout[data-fxce-checkout-step="3"] form.checkout {
	grid-template-columns: minmax(0, 860px) !important;
	justify-content: center !important;
}

body.fxce-premium-checkout[data-fxce-checkout-step="1"] form.checkout > #customer_details,
body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #order_review_heading,
body.fxce-premium-checkout[data-fxce-checkout-step="3"] form.checkout > #order_review_heading,
body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #order_review,
body.fxce-premium-checkout[data-fxce-checkout-step="3"] form.checkout > #order_review,
body.fxce-premium-checkout form.checkout > .fxce-checkout-step-actions {
	grid-column: 1 !important;
}

/* Step state owns visibility. Theme and earlier layout declarations use
 * display!important, so the native hidden attribute needs equal authority. */
body.fxce-premium-checkout form.checkout > #customer_details[hidden],
body.fxce-premium-checkout form.checkout > #order_review_heading[hidden],
body.fxce-premium-checkout form.checkout > #order_review[hidden],
body.fxce-premium-checkout form.checkout > .fxce-checkout-step-actions [hidden] {
	display: none !important;
}

body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #order_review,
body.fxce-premium-checkout[data-fxce-checkout-step="3"] form.checkout > #order_review {
	grid-row: auto !important;
	margin-top: 0 !important;
}

body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #order_review_heading,
body.fxce-premium-checkout[data-fxce-checkout-step="3"] form.checkout > #order_review_heading {
	grid-row: auto !important;
	padding: 0 !important;
}

body.fxce-premium-checkout [data-fxce-checkout-section="alternate-delivery"] { display: none !important; }

body.fxce-premium-checkout [data-fxce-checkout-section="address"]::before {
	content: attr(data-fxce-step);
	position: absolute;
	top: 23px;
	left: 24px;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--fxp-text);
	color: var(--fxp-surface);
	font-size: 10px;
	font-weight: 800;
}

body.fxce-premium-checkout [data-fxce-checkout-section="address"] > h3 {
	min-height: 28px !important;
	margin: 0 0 20px !important;
	padding-left: 38px !important;
	display: flex !important;
	align-items: center !important;
	color: var(--fxp-text) !important;
	font-size: 19px !important;
	font-weight: 780 !important;
}

.fxce-address-card {
	min-height: 104px;
	padding: 17px;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--fxp-border);
	border-radius: 16px;
	background: var(--fxp-soft);
}

.fxce-address-card__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--fxp-surface);
	color: var(--fxp-primary);
}

.fxce-address-card__icon svg,
.fxce-checkout-delivery-estimate svg,
.fxce-checkout-products__toggle svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fxce-address-card > div:nth-child(2) { min-width: 0; display: grid; gap: 3px; }
.fxce-address-card__label { color: var(--fxp-muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.fxce-address-card strong { color: var(--fxp-text); font-size: 15px; }
.fxce-address-card small { color: var(--fxp-muted); font-size: 13px; line-height: 1.45; }
.fxce-address-card button,
.fxce-step-back {
	min-height: 40px;
	padding: 0 15px;
	border: 1px solid var(--fxp-border);
	border-radius: 999px;
	background: var(--fxp-surface);
	color: var(--fxp-text);
	font-size: 12px;
	font-weight: 780;
}

body.fxce-premium-checkout .woocommerce-billing-fields.is-address-collapsed .woocommerce-billing-fields__field-wrapper { display: none !important; }
.fxce-address-label-field { grid-column: 1 / -1 !important; }

.fxce-checkout-step-actions {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.fxce-step-next {
	min-width: min(100%, 320px);
	min-height: 56px;
	padding: 0 24px;
	border: 1px solid #161616;
	border-radius: 999px;
	background: #161616;
	color: #fff;
	font-size: 14px;
	font-weight: 820;
}

body.fxce-premium-checkout #payment .place-order:not(.fxce-place-order-ready) { display: none !important; }
body.fxce-premium-checkout #payment .place-order.fxce-place-order-ready #place_order { display: none !important; }

.fxce-checkout-products {
	margin: 0 0 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--fxp-border);
}

.fxce-checkout-products__toggle {
	width: 100%;
	min-height: 46px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--fxp-text) !important;
	box-shadow: none !important;
	text-align: left;
}

.fxce-checkout-products__toggle > span { display: grid; gap: 2px; }
.fxce-checkout-products__toggle strong { font-size: 16px; }
.fxce-checkout-products__toggle strong small { margin-left: 5px; padding: 2px 7px; border-radius: 999px; background: var(--fxp-soft); color: var(--fxp-muted); font-size: 10px; font-weight: 750; }
.fxce-checkout-products__toggle em { color: var(--fxp-muted); font-size: 11px; font-style: normal; }
.fxce-checkout-products__toggle svg { transition: transform .18s ease; }
.fxce-checkout-products__toggle[aria-expanded="true"] svg { transform: rotate(90deg); }
.fxce-checkout-products__list { display: grid; gap: 12px; padding-top: 10px; }
.fxce-checkout-products__list[hidden] { display: none !important; }
.fxce-checkout-products__list article { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; align-items: center; gap: 12px; }
.fxce-checkout-product__media { position: relative; width: 64px; height: 78px; overflow: hidden; border-radius: 11px; background: var(--fxp-soft); }
.fxce-checkout-product__media img { width: 100%; height: 100%; object-fit: cover; }
.fxce-checkout-products__list article > span:nth-child(2) { min-width: 0; display: grid; gap: 3px; }
.fxce-checkout-products__list article strong { color: var(--fxp-text); font-size: 13px; line-height: 1.35; }
.fxce-checkout-products__list article small { color: var(--fxp-muted); font-size: 11px; }
.fxce-checkout-product__quantity { width: max-content; padding: 2px 7px; border: 1px solid var(--fxp-border); border-radius: 999px; background: var(--fxp-soft); color: var(--fxp-muted) !important; font-size: 9px !important; font-weight: 750; }
.fxce-checkout-products__list article em { color: var(--fxp-success); font-size: 10px; font-style: normal; }
.fxce-checkout-products__list article > b { color: var(--fxp-text); font-size: 13px; white-space: nowrap; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table.fxce-checkout-totals-only tbody { display: none !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot tr { display: table-row !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot th,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot td { display: table-cell !important; vertical-align: top !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot th { width: 48% !important; text-align: left !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot td { width: 52% !important; text-align: right !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td::before { display: none !important; content: none !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(#shipping_method,.woocommerce-shipping-methods) { margin: 0 !important; padding: 0 !important; text-align: right !important; list-style: none !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(#shipping_method,.woocommerce-shipping-methods) li { margin: 0 !important; text-align: right !important; }

/* v7.34.33.31 — template-owned checkout gate and composition states. */
body.fxce-checkout-auth-gated:not(.logged-in) .woocommerce {
	min-height: min(66vh, 620px) !important;
	display: grid !important;
	place-items: center !important;
	padding: clamp(20px, 5vw, 72px) 16px !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate {
	width: min(720px, 100%) !important;
	margin: 0 auto !important;
	padding: clamp(22px, 4vw, 38px) !important;
	display: grid !important;
	grid-template-columns: 52px minmax(0, 1fr) auto !important;
	gap: 18px !important;
	align-items: center !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 22px !important;
	background: var(--fxp-surface) !important;
	box-shadow: 0 22px 70px rgba(26, 18, 21, .11) !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-icon {
	width: 52px !important;
	height: 52px !important;
	display: grid !important;
	place-items: center !important;
	border-radius: 16px !important;
	background: var(--fxp-soft) !important;
	color: var(--fxp-primary) !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate svg {
	width: 25px !important;
	height: 25px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 1.8 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-copy strong {
	font-size: clamp(19px, 2.5vw, 26px) !important;
	line-height: 1.2 !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-copy small {
	margin-top: 7px !important;
	font-size: 14px !important;
	line-height: 1.55 !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-button {
	min-height: 48px !important;
	padding: 0 21px !important;
	border-radius: 999px !important;
	background: var(--fxp-primary) !important;
	color: var(--fxp-primary-text) !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate ~ .woocommerce-info,
body.fxce-checkout-auth-gated:not(.logged-in) form.checkout { display: none !important; }
body.fxce-checkout-auth-gated:not(.logged-in).flashyn-identity-modal-open .woocommerce {
	visibility: hidden !important;
}

@media (min-width: 1024px) {
	body.fxce-premium-checkout.fxce-checkout-template-compact_guided form.checkout {
		grid-template-columns: minmax(0, 860px) !important;
		justify-content: center !important;
	}
	body.fxce-premium-checkout.fxce-checkout-template-compact_guided form.checkout > #order_review {
		position: static !important;
	}
}

body.fxce-premium-checkout[data-fxce-checkout-step="1"] :is(.woocommerce-NoticeGroup-checkout, .woocommerce-error[data-fxce-payment-error], [data-fxce-payment-notice]) {
	display: none !important;
}
body.fxce-premium-checkout [data-fxce-checkout-wallet="compact_row"] {
	min-height: 0 !important;
	margin: 10px 0 !important;
	padding: 10px 12px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 12px !important;
	background: var(--fxp-soft) !important;
}
body.fxce-premium-checkout [data-fxce-checkout-wallet="compact_row"] > small,
body.fxce-premium-checkout [data-fxce-checkout-wallet="compact_row"] .flashyn-wallet-unlock { display: none !important; }

@media (max-width: 767px) {
	body.fxce-checkout-auth-gated:not(.logged-in) .woocommerce { min-height: 58vh !important; padding: 22px 12px !important; }
	body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate {
		grid-template-columns: 44px minmax(0, 1fr) !important;
		padding: 18px !important;
		gap: 12px !important;
		border-radius: 18px !important;
	}
	body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-icon { width: 44px !important; height: 44px !important; }
	body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-copy strong { font-size: 18px !important; }
	body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-copy small { font-size: 12.5px !important; }
	body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate .flashyn-checkout-verify-button { grid-column: 1 / -1 !important; width: 100% !important; }
	body.fxce-premium-checkout:not(.fxce-checkout-action-dock-active) .fxce-checkout-step-actions { position: static !important; }
}

.fxce-checkout-delivery-estimate {
	margin: 0 0 16px;
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid color-mix(in srgb, var(--fxp-primary) 20%, var(--fxp-border));
	border-radius: 14px;
	background: color-mix(in srgb, var(--fxp-primary) 5%, var(--fxp-surface));
	color: var(--fxp-primary);
}
.fxce-checkout-delivery-estimate > span { display: grid; gap: 2px; }
.fxce-checkout-delivery-estimate strong { color: var(--fxp-text); font-size: 13px; }
.fxce-checkout-delivery-estimate small { color: var(--fxp-muted); font-size: 11px; }

@media (max-width: 767px) {
	body.fxce-premium-checkout [data-fxce-checkout-section="address"]::before { top: 17px; left: 15px; width: 24px; height: 24px; }
	body.fxce-premium-checkout [data-fxce-checkout-section="address"] > h3 { min-height: 24px !important; padding-left: 34px !important; font-size: 17px !important; }
	.fxce-address-card { grid-template-columns: 38px minmax(0, 1fr); padding: 14px; }
	.fxce-address-card__icon { width: 38px; height: 38px; }
	.fxce-address-card button { grid-column: 2; justify-self: start; }
	.fxce-checkout-step-actions { position: sticky; z-index: 18; bottom: calc(78px + env(safe-area-inset-bottom)); padding: 10px 0; background: var(--fxp-canvas); }
	.fxce-step-back { flex: 0 0 auto; }
	.fxce-step-next { min-width: 0; flex: 1; min-height: 52px; font-size: 13px; }
	.fxce-checkout-products__list article { grid-template-columns: 58px minmax(0, 1fr) auto; gap: 10px; }
	.fxce-checkout-product__media { width: 58px; height: 72px; }
	.fxce-checkout-assurance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v7.34.33.30 final authority — intentionally last so older compatibility
 * declarations cannot restore the native form or sticky action position. */
body.fxce-premium-checkout [data-fxce-native-address-fields="1"] { display: none !important; }
.fxce-address-card {
	grid-template-columns: 46px minmax(0, 1fr) auto !important;
	align-items: start !important;
	min-height: 132px !important;
	padding: 18px !important;
}
@media (max-width: 767px) {
	body.fxce-premium-checkout { padding-bottom: calc(88px + env(safe-area-inset-bottom)) !important; }
	.fxce-address-card {
		grid-template-columns: 42px minmax(0, 1fr) !important;
		min-height: 0 !important;
		padding: 15px !important;
	}
	.fxce-address-card [data-fxce-change-address] { grid-column: 2 !important; justify-self: start !important; }
	.fxce-checkout-step-actions {
		position: fixed !important;
		z-index: 10030 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
		background: color-mix(in srgb, var(--fxp-surface) 96%, transparent) !important;
	}
}


/* v7.34.33.34 — unified responsive checkout composition authority. */
body.fxce-premium-checkout {
	--fxce-checkout-gap: clamp(18px, 2.2vw, 30px);
	--fxce-checkout-radius: 16px;
	--fxce-checkout-control-height: 48px;
}
body.fxce-premium-checkout .fxce-checkout-progress { display: none; }
body.fxce-premium-checkout form.checkout { align-items: start !important; gap: var(--fxce-checkout-gap) !important; }
body.fxce-premium-checkout form.checkout > #customer_details,
body.fxce-premium-checkout form.checkout > #order_review { min-width: 0 !important; }
body.fxce-premium-checkout .fxce-address-editor__grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 14px !important;
}
body.fxce-premium-checkout .fxce-owned-field { min-width: 0 !important; margin: 0 !important; }
body.fxce-premium-checkout .fxce-owned-field.is-wide { grid-column: 1 / -1 !important; }
body.fxce-premium-checkout .fxce-owned-field__control :is(input, select, textarea) {
	min-height: var(--fxce-checkout-control-height) !important;
	border-radius: 11px !important;
}
body.fxce-premium-checkout .fxce-address-editor__actions {
	margin-top: 18px;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
body.fxce-premium-checkout .fxce-address-editor__actions button {
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 780;
}
body.fxce-premium-checkout .fxce-address-cancel { border: 1px solid var(--fxp-border); background: var(--fxp-surface); color: var(--fxp-text); }
body.fxce-premium-checkout .fxce-address-confirm { border: 1px solid var(--fxp-primary); background: var(--fxp-primary); color: var(--fxp-primary-text); }
body.fxce-premium-checkout .fxce-address-card { min-height: 0 !important; border-radius: var(--fxce-checkout-radius) !important; }
body.fxce-premium-checkout #payment { border-radius: var(--fxce-checkout-radius) !important; }
body.fxce-premium-checkout #order_review { overflow: visible !important; }
body.fxce-premium-checkout .fxce-checkout-step-actions { display: none !important; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout {
		grid-template-columns: minmax(0, 1.7fr) minmax(330px, .95fr) !important;
		justify-content: stretch !important;
	}
	body.fxce-premium-checkout form.checkout > #customer_details { grid-column: 1 !important; grid-row: 1 !important; }
	body.fxce-premium-checkout form.checkout > #order_review { grid-column: 2 !important; grid-row: 1 !important; margin-top: 0 !important; }
	body.fxce-premium-checkout.fxce-checkout-sticky-summary form.checkout > #order_review {
		position: sticky !important;
		top: 24px !important;
		max-height: none !important;
		overflow: visible !important;
	}
	body.fxce-premium-checkout #payment[data-fxce-desktop-payment="1"] { margin-top: 18px !important; }
	body.fxce-premium-checkout #payment .place-order,
	body.fxce-premium-checkout #payment .place-order:not(.fxce-place-order-ready) { display: block !important; }
	body.fxce-premium-checkout #payment #place_order { display: block !important; width: 100% !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	body.fxce-premium-checkout form.checkout {
		width: min(760px, 100%) !important;
		margin-inline: auto !important;
		grid-template-columns: minmax(0, 1fr) !important;
		justify-content: center !important;
	}
	body.fxce-premium-checkout form.checkout > :is(#customer_details, #order_review_heading, #order_review) { grid-column: 1 !important; position: static !important; }
	body.fxce-premium-checkout form.checkout > #customer_details { grid-row: 1 !important; }
	body.fxce-premium-checkout form.checkout > #order_review { grid-row: 2 !important; margin-top: 0 !important; max-height: none !important; overflow: visible !important; }
	body.fxce-premium-checkout #payment[data-fxce-desktop-payment="1"] { margin-top: 18px !important; }
	body.fxce-premium-checkout #payment .place-order,
	body.fxce-premium-checkout #payment .place-order:not(.fxce-place-order-ready) { display: block !important; }
	body.fxce-premium-checkout #payment #place_order { display: block !important; width: 100% !important; }
	body.fxce-premium-checkout .fxce-checkout-products__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
	body.fxce-premium-checkout .fxce-checkout-progress { display: grid; }
	body.fxce-premium-checkout form.checkout { grid-template-columns: minmax(0, 1fr) !important; }
	body.fxce-premium-checkout .fxce-address-editor__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px 10px !important; }
	body.fxce-premium-checkout .fxce-owned-field { grid-column: 1 / -1 !important; }
	body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="city"],
	body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="postcode"] { grid-column: auto !important; }
	body.fxce-premium-checkout .fxce-address-editor__actions { position: static; margin-top: 14px; }
	body.fxce-premium-checkout .fxce-address-editor__actions button { flex: 1; min-height: 44px; }
	body.fxce-premium-checkout .fxce-checkout-step-actions { display: flex !important; }
	body.fxce-premium-checkout #payment .place-order,
	body.fxce-premium-checkout #payment #place_order { display: none !important; }
	body.fxce-premium-checkout .fxce-checkout-products__toggle[aria-expanded="false"] + .fxce-checkout-products__list { display: none !important; }
}

@media (max-width: 420px) {
	body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="city"],
	body.fxce-premium-checkout .fxce-owned-field[data-fxce-owned-field="postcode"] { grid-column: 1 / -1 !important; }
}

/* v7.34.33.35 — approved mobile order summary and checkout integrity authority. */
body.fxce-premium-checkout [data-fxce-native-checkout-heading],
body.fxce-premium-checkout [data-fxce-native-checkout-description] { display: none !important; }

body.fxce-premium-checkout .woocommerce-checkout-review-order-table.fxce-checkout-totals-only thead,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table.fxce-checkout-totals-only tbody { display: none !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot th { text-align: left !important; vertical-align: middle !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot td {
	text-align: right !important;
	vertical-align: middle !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tfoot td :is(.amount, strong, b) { text-align: right !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-methods {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	text-align: right !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-methods li { margin: 0 !important; }
body.fxce-premium-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-methods label { margin: 0 !important; }

body.fxce-premium-checkout .fxce-mobile-order-card { display: none; }
body.fxce-premium-checkout .fxce-checkout-products__desktop { display: block; }
body.fxce-premium-checkout .fxce-checkout-products__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}
body.fxce-premium-checkout .fxce-checkout-products__heading strong { font-size: 16px; }
body.fxce-premium-checkout .fxce-checkout-products__heading small {
	padding: 4px 8px;
	border-radius: 999px;
	background: var(--fxp-muted, #f5f5f7);
	color: var(--fxp-text-muted, #666);
	font-size: 11px;
}

.fxce-order-sheet[hidden] { display: none !important; }
.fxce-order-sheet {
	position: fixed;
	inset: 0;
	z-index: 10080;
	display: grid;
	align-items: end;
}
.fxce-order-sheet__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(15, 12, 14, .52);
}
.fxce-order-sheet__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: min(82vh, 760px);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	background: var(--fxp-surface, #fff);
	border-radius: 22px 22px 0 0;
	box-shadow: 0 -18px 50px rgba(15, 12, 14, .18);
	overflow: hidden;
	animation: fxce-sheet-in .22s ease-out;
}
@keyframes fxce-sheet-in { from { transform: translateY(24px); opacity: .7; } to { transform: translateY(0); opacity: 1; } }
.fxce-order-sheet__panel > header,
.fxce-order-sheet__panel > footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	background: var(--fxp-surface, #fff);
}
.fxce-order-sheet__panel > header { border-bottom: 1px solid var(--fxp-border, #ece4e7); }
.fxce-order-sheet__panel > footer { border-top: 1px solid var(--fxp-border, #ece4e7); padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
.fxce-order-sheet__panel > header span,
.fxce-order-sheet__panel > footer span { display: grid; gap: 2px; }
.fxce-order-sheet__panel > header strong { font-size: 18px; }
.fxce-order-sheet__panel > header small,
.fxce-order-sheet__panel > footer small { color: var(--fxp-text-muted, #6f6267); font-size: 12px; }
.fxce-order-sheet__panel > header button {
	width: 38px;
	height: 38px;
	border: 1px solid var(--fxp-border, #ece4e7);
	border-radius: 50%;
	background: #fff;
	font-size: 24px;
	line-height: 1;
}
.fxce-order-sheet__panel > footer button {
	min-width: 120px;
	min-height: 46px;
	border: 0;
	border-radius: 999px;
	background: var(--fxp-primary, #9c183f);
	color: var(--fxp-primary-text, #fff);
	font-weight: 750;
}
.fxce-order-sheet__items { overflow: auto; overscroll-behavior: contain; padding: 4px 18px; }
.fxce-order-sheet__item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--fxp-border, #ece4e7);
}
.fxce-order-sheet__item:last-child { border-bottom: 0; }
.fxce-order-sheet__media { width: 58px; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 9px; background: #f4f1f2; }
.fxce-order-sheet__media img { width: 100%; height: 100%; object-fit: cover; }
.fxce-order-sheet__copy { min-width: 0; display: grid; gap: 3px; }
.fxce-order-sheet__copy strong { font-size: 13px; line-height: 1.35; }
.fxce-order-sheet__copy small { color: var(--fxp-text-muted, #6f6267); font-size: 11px; }
.fxce-order-sheet__item > b { white-space: nowrap; font-size: 13px; }
body.fxce-order-sheet-open { overflow: hidden !important; }

@media (min-width: 768px) {
	body.fxce-premium-checkout form.checkout > #order_review #payment { margin-top: 18px !important; }
	body.fxce-premium-checkout form.checkout > #customer_details #payment { display: none !important; }
}

@media (max-width: 767px) {
	body.fxce-premium-checkout [data-fxce-checkout-footer="1"],
	body.fxce-premium-checkout footer.site-footer,
	body.fxce-premium-checkout .elementor-location-footer { display: none !important; }
	body.fxce-premium-checkout .fxce-checkout-products {
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}
	body.fxce-premium-checkout .fxce-checkout-products__desktop { display: none !important; }
	body.fxce-premium-checkout .fxce-mobile-order-card {
		display: grid;
		width: 100%;
		gap: 13px;
		padding: 16px;
		border: 1px solid var(--fxp-border, #eadde1);
		border-radius: 16px;
		background: var(--fxp-surface, #fff);
		color: var(--fxp-text, #171116);
		text-align: left;
		box-shadow: none;
	}
	body.fxce-premium-checkout .fxce-mobile-order-card__heading,
	body.fxce-premium-checkout .fxce-mobile-order-card__content,
	body.fxce-premium-checkout .fxce-mobile-order-card__action { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
	body.fxce-premium-checkout .fxce-mobile-order-card__heading strong { font-size: 17px; }
	body.fxce-premium-checkout .fxce-mobile-order-card__heading small {
		padding: 4px 8px;
		border-radius: 999px;
		background: #f5f1f2;
		font-size: 11px;
		color: #6f6267;
	}
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs { display: flex; align-items: center; min-width: 0; }
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs span,
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs i {
		width: 42px;
		height: 52px;
		margin-left: -8px;
		border: 2px solid #fff;
		border-radius: 9px;
		overflow: hidden;
		background: #f4f1f2;
		font-style: normal;
	}
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs span:first-child { margin-left: 0; }
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs img { width: 100%; height: 100%; object-fit: cover; }
	body.fxce-premium-checkout .fxce-mobile-order-card__thumbs i { display: grid; place-items: center; font-size: 11px; font-weight: 750; }
	body.fxce-premium-checkout .fxce-mobile-order-card__price { display: grid; justify-items: end; gap: 2px; }
	body.fxce-premium-checkout .fxce-mobile-order-card__price small { color: #6f6267; font-size: 11px; }
	body.fxce-premium-checkout .fxce-mobile-order-card__price strong { font-size: 18px; }
	body.fxce-premium-checkout .fxce-mobile-order-card__action {
		justify-content: flex-end;
		padding-top: 12px;
		border-top: 1px solid var(--fxp-border, #eadde1);
		color: var(--fxp-primary, #9c183f);
		font-size: 13px;
		font-weight: 750;
	}
	body.fxce-premium-checkout .fxce-mobile-order-card__action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
}
body.fxce-premium-checkout #order_review_heading[hidden],
body.fxce-premium-checkout [data-fxce-checkout-header] ~ form.checkout > #order_review_heading { display: none !important; }

/* v8.0.0 — Checkout Experience Framework authority. */
body.fxce-premium-checkout {
	--fxco-border: #e8e1e4;
	--fxco-muted: #74686d;
	--fxco-soft: #faf8f9;
	--fxco-ink: #181316;
	--fxco-accent: var(--fxp-primary, #9c183f);
}
body.fxce-premium-checkout .fxce-checkout-products,
body.fxce-premium-checkout .fxce-checkout-delivery-estimate,
body.fxce-premium-checkout .flashyn-wallet-enforcement,
body.fxce-premium-checkout .woocommerce-additional-fields,
body.fxce-premium-checkout #payment {
	border-color: var(--fxco-border) !important;
	box-shadow: none !important;
}
body.fxce-premium-checkout .fxce-checkout-products__heading small {
	padding: 0 !important;
	background: transparent !important;
	color: var(--fxco-muted) !important;
	font-size: 12px !important;
	font-weight: 650 !important;
}
body.fxce-premium-checkout .fxce-checkout-products__list {
	display: grid;
	gap: 0;
}
body.fxce-premium-checkout .fxce-checkout-products__list article {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--fxco-border);
}
body.fxce-premium-checkout .fxce-checkout-products__list article:last-child { border-bottom: 0; }
body.fxce-premium-checkout .fxce-checkout-product__media {
	width: 54px;
	aspect-ratio: 3 / 4;
	border-radius: 10px;
	overflow: hidden;
	background: #f3eff1;
}
body.fxce-premium-checkout .fxce-checkout-product__media img { width: 100%; height: 100%; object-fit: cover; }
body.fxce-premium-checkout .fxce-checkout-products__list article > span:nth-child(2) { min-width: 0; display: grid; gap: 4px; }
body.fxce-premium-checkout .fxce-checkout-products__list article strong { font-size: 13px; line-height: 1.35; color: var(--fxco-ink); }
body.fxce-premium-checkout .fxce-checkout-products__list article small { font-size: 11px; color: var(--fxco-muted); }
body.fxce-premium-checkout .fxce-checkout-products__list article b { font-size: 13px; white-space: nowrap; }
body.fxce-premium-checkout .fxce-desktop-view-order {
	width: 100%; min-height: 44px; margin-top: 8px; border: 0; border-top: 1px solid var(--fxco-border);
	background: transparent; color: var(--fxco-accent); font-size: 13px; font-weight: 750;
	display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
body.fxce-premium-checkout .fxce-desktop-view-order svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }

body.fxce-premium-checkout .fxce-checkout-delivery-estimate {
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 13px 14px !important;
	border: 1px solid var(--fxco-border) !important;
	border-radius: 14px !important;
	background: var(--fxco-soft) !important;
	color: var(--fxco-ink) !important;
}
body.fxce-premium-checkout .fxce-checkout-delivery-estimate__icon {
	width: 38px; height: 38px; border-radius: 11px; background: #fff; border: 1px solid var(--fxco-border);
	display: grid; place-items: center; color: var(--fxco-accent); flex: 0 0 auto;
}
body.fxce-premium-checkout .fxce-checkout-delivery-estimate__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
body.fxce-premium-checkout .fxce-checkout-delivery-estimate > span:last-child { display: grid; gap: 2px; }
body.fxce-premium-checkout .fxce-checkout-delivery-estimate small { color: var(--fxco-muted) !important; font-size: 11px !important; font-weight: 650; }
body.fxce-premium-checkout .fxce-checkout-delivery-estimate strong { color: var(--fxco-ink) !important; font-size: 13px !important; }

body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact {
	background: #fff !important;
	border: 1px solid var(--fxco-border) !important;
	border-radius: 14px !important;
	padding: 14px !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact :is(.flashyn-wallet-balance,.flashyn-wallet-applied,.flashyn-wallet-status,.wallet-balance,.wallet-applied) {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact [class*="success"],
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact [class*="applied"] {
	color: #166534 !important;
}

body.fxce-premium-checkout .woocommerce-additional-fields { width: 100%; }
body.fxce-premium-checkout .woocommerce-additional-fields .fxce-native-notes-label { display: none !important; }
body.fxce-premium-checkout .woocommerce-additional-fields__field-wrapper { padding: 0 16px 16px !important; }
body.fxce-premium-checkout .woocommerce-additional-fields textarea {
	width: 100% !important; min-height: 104px !important; resize: vertical; margin: 0 !important;
	border: 1px solid var(--fxco-border) !important; border-radius: 12px !important; background: #fff !important;
}

body.fxce-premium-checkout #payment.fxce-payment-cards { background: transparent !important; border: 0 !important; padding: 0 !important; }
body.fxce-premium-checkout #payment.fxce-payment-cards ul.payment_methods { display: grid; gap: 10px; padding: 0 !important; border: 0 !important; }
body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card {
	margin: 0 !important; padding: 0 !important; border: 1px solid var(--fxco-border) !important;
	border-radius: 14px !important; background: #fff !important; overflow: hidden; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card.is-selected {
	border-color: #5f5559 !important; background: #fff !important; box-shadow: none !important;
}
body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card > input { position: absolute !important; opacity: 0 !important; pointer-events: none; }
body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card > label {
	display: grid !important; grid-template-columns: 22px minmax(0, 1fr) auto; align-items: center; gap: 11px;
	margin: 0 !important; padding: 14px !important; cursor: pointer;
}
body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card > label > img { max-height: 24px !important; width: auto !important; margin: 0 !important; }
body.fxce-premium-checkout .fxce-payment-radio {
	width: 20px; height: 20px; border: 1.5px solid #b9adb2; border-radius: 50%; display: grid; place-items: center; background: #fff;
}
body.fxce-premium-checkout .fxce-payment-radio i { width: 9px; height: 9px; border-radius: 50%; background: transparent; }
body.fxce-premium-checkout .fxce-payment-card.is-selected .fxce-payment-radio { border-color: var(--fxco-accent); }
body.fxce-premium-checkout .fxce-payment-card.is-selected .fxce-payment-radio i { background: var(--fxco-accent); }
body.fxce-premium-checkout .fxce-payment-copy { display: grid; gap: 3px; min-width: 0; }
body.fxce-premium-checkout .fxce-payment-copy strong { color: var(--fxco-ink); font-size: 14px; }
body.fxce-premium-checkout .fxce-payment-copy small { color: var(--fxco-muted); font-size: 11px; font-weight: 500; }
body.fxce-premium-checkout #payment .payment_box { margin: 0 !important; padding: 0 14px 14px 47px !important; background: transparent !important; color: var(--fxco-muted) !important; font-size: 12px; }
body.fxce-premium-checkout #payment .payment_box::before { display: none !important; }

body.fxce-premium-checkout .fxce-checkout-consent {
	margin: 14px 0 12px !important; padding: 0 !important; border: 0 !important; background: transparent !important;
}
body.fxce-premium-checkout .fxce-checkout-consent > p,
body.fxce-premium-checkout .fxce-checkout-consent .woocommerce-privacy-policy-text { color: var(--fxco-muted); font-size: 11px; line-height: 1.5; }
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: grid !important; grid-template-columns: 22px minmax(0,1fr); gap: 10px; align-items: start;
	color: var(--fxco-ink) !important; font-size: 12px !important; line-height: 1.55; cursor: pointer;
}
body.fxce-premium-checkout .fxce-consent-box {
	width: 20px; height: 20px; margin-top: 1px; border: 1.5px solid #a99ca2; border-radius: 6px; display: grid; place-items: center; background: #fff;
}
body.fxce-premium-checkout .fxce-consent-box svg { width: 14px; height: 14px; fill: none; stroke: transparent; stroke-width: 2.4; }
body.fxce-premium-checkout label.is-checked .fxce-consent-box { background: var(--fxco-accent); border-color: var(--fxco-accent); }
body.fxce-premium-checkout label.is-checked .fxce-consent-box svg { stroke: #fff; }
body.fxce-premium-checkout .fxce-policy-link {
	appearance: none; border: 0; padding: 0; background: transparent; color: var(--fxco-accent); font: inherit; font-weight: 750;
	text-decoration: underline; text-underline-offset: 2px; cursor: pointer;
}
body.fxce-premium-checkout .fxce-policy-link:focus-visible,
body.fxce-premium-checkout .fxce-payment-card label:focus-visible { outline: 2px solid var(--fxco-accent); outline-offset: 3px; border-radius: 4px; }

.fxce-order-sheet__panel > header button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.fxce-order-sheet__panel > header button { display: grid; place-items: center; color: var(--fxco-ink); cursor: pointer; }

.fxce-policy-dialog[hidden] { display: none !important; }
.fxce-policy-dialog { position: fixed; inset: 0; z-index: 10120; display: grid; place-items: center; padding: 20px; }
.fxce-policy-dialog__backdrop { position: absolute; inset: 0; border: 0; background: rgba(15,12,14,.56); }
.fxce-policy-dialog__sheet {
	position: relative; z-index: 1; width: min(680px, 100%); max-height: min(82vh, 760px); display: grid; grid-template-rows: auto minmax(0,1fr) auto;
	background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 28px 80px rgba(15,12,14,.24);
}
.fxce-policy-dialog__sheet header,
.fxce-policy-dialog__sheet footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 18px; border-color: var(--fxco-border); }
.fxce-policy-dialog__sheet header { border-bottom: 1px solid var(--fxco-border); }
.fxce-policy-dialog__sheet footer { border-top: 1px solid var(--fxco-border); }
.fxce-policy-dialog__sheet header button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--fxco-border); border-radius: 50%; background: #fff; }
.fxce-policy-dialog__sheet header svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.fxce-policy-dialog__content { overflow: auto; padding: 18px; color: #342a2f; font-size: 13px; line-height: 1.7; }
.fxce-policy-dialog__sheet footer a { color: var(--fxco-accent); font-size: 12px; font-weight: 700; }
.fxce-policy-dialog__sheet footer button { min-height: 42px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--fxco-accent); color: #fff; font-weight: 750; }
body.fxce-policy-open { overflow: hidden !important; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout { align-items: start !important; }
	body.fxce-premium-checkout #customer_details { display: grid !important; gap: 14px; align-content: start; }
	body.fxce-premium-checkout #order_review { align-content: start; }
	body.fxce-premium-checkout .fxce-order-sheet { align-items: center; padding: 24px; }
	body.fxce-premium-checkout .fxce-order-sheet__panel { width: min(620px, 100%); border-radius: 20px; max-height: min(82vh,760px); }
}
@media (max-width: 767px) {
	.fxce-policy-dialog { place-items: end center; padding: 0; }
	.fxce-policy-dialog__sheet { width: 100%; max-height: 86vh; border-radius: 22px 22px 0 0; }
	.fxce-policy-dialog__sheet footer { padding-bottom: calc(15px + env(safe-area-inset-bottom)); }
	body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card > label { grid-template-columns: 22px minmax(0,1fr) auto; padding: 13px; }
	body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] { font-size: 12px !important; }
}
body.fxce-premium-checkout .fxce-checkout-consent input#terms,
body.fxce-premium-checkout .fxce-checkout-consent input[name="terms"] { position: absolute !important; opacity: 0 !important; width: 1px !important; height: 1px !important; pointer-events: none; }


/* v8.0.1 — checkout visual acceptance corrections. */
body.fxce-premium-checkout [data-fxce-native-checkout-description],
body.fxce-premium-checkout [data-fxce-header-description] { display: none !important; }

body.fxce-premium-checkout .fxce-checkout-page-header {
	width: min(1180px, calc(100% - 40px)) !important;
	margin: clamp(28px, 4vw, 58px) auto 24px !important;
	display: block !important;
	text-align: left !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header__copy {
	width: 100% !important;
	margin: 0 !important;
	text-align: left !important;
	justify-items: start !important;
	align-items: start !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header__copy > span,
body.fxce-premium-checkout .fxce-checkout-page-header h1 { text-align: left !important; margin-left: 0 !important; }

body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.fxce-single-shipping-method td {
	position: relative !important;
	text-align: right !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.fxce-single-shipping-method td > :not(.fxce-shipping-value):not(input) {
	display: none !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.fxce-single-shipping-method td input.shipping_method,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.fxce-single-shipping-method td input[name^="shipping_method"] {
	position: absolute !important; opacity: 0 !important; pointer-events: none !important;
}
body.fxce-premium-checkout .fxce-shipping-value { display: inline-block !important; font-weight: 650; color: var(--fxco-ink, #171217); }
body.fxce-premium-checkout .fxce-coupon-saving,
body.fxce-premium-checkout .fxce-coupon-saving :is(.amount, b, strong) { color: #086b4d !important; font-weight: 750 !important; opacity: 1 !important; }

body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact,
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact * {
	box-shadow: none !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact {
	background: #fff !important; border: 1px solid var(--fxco-border, #eadfe3) !important; padding: 14px 16px !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact :is(
	.flashyn-wallet-balance,.flashyn-wallet-applied,.flashyn-wallet-status,.flashyn-wallet-auto-applied,
	.flashyn-wallet-enforcement-head,.wallet-balance,.wallet-applied,[class*="available"],[class*="success"]
) {
	background: transparent !important; border: 0 !important; border-radius: 0 !important; padding: 0 !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact .flashyn-wallet-check {
	width: 20px !important; height: 20px !important; min-width: 20px !important; border-radius: 50% !important;
}
body.fxce-premium-checkout .flashyn-wallet-enforcement.fxce-checkout-wallet-compact [class*="applied"] { margin-top: 8px !important; }

body.fxce-premium-checkout .fxce-checkout-delivery-estimate {
	background: #fff !important; border-color: var(--fxco-border, #eadfe3) !important; padding: 14px 16px !important;
}
body.fxce-premium-checkout .fxce-checkout-delivery-estimate__icon { background: #f6f3f4 !important; color: var(--fxco-accent, #9c183f) !important; }

.fxce-dialog-close,
.fxce-order-sheet__panel > header .fxce-dialog-close,
.fxce-policy-dialog__sheet header .fxce-dialog-close {
	width: 40px !important; height: 40px !important; min-width: 40px !important; padding: 0 !important;
	display: grid !important; place-items: center !important; border: 1px solid var(--fxco-border, #eadfe3) !important;
	border-radius: 50% !important; background: #fff !important; color: #21191d !important; font: inherit !important;
	box-shadow: none !important; overflow: visible !important;
}
.fxce-dialog-close span { display: block !important; font-family: Arial, sans-serif !important; font-size: 27px !important; line-height: 1 !important; font-weight: 300 !important; transform: translateY(-1px); }
.fxce-dialog-close::before,
.fxce-dialog-close::after { content: none !important; display: none !important; }

body.fxce-premium-checkout :is(.back-to-top,.scroll-to-top,.scroll-top,.go-top,#back-to-top,#scroll-top,[class*="go-top"],[class*="back-to-top"],[class*="scroll-to-top"]) {
	display: none !important;
}

body.fxce-premium-checkout .fxce-checkout-support { display: grid; gap: 12px; width: 100%; }
body.fxce-premium-checkout .fxce-checkout-support[hidden] { display: none !important; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout {
		width: min(1180px, calc(100% - 40px)) !important;
		grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr) !important;
		gap: clamp(26px, 3vw, 48px) !important;
	}
	body.fxce-premium-checkout #customer_details { gap: 16px !important; }
	body.fxce-premium-checkout .fxce-checkout-support { margin-top: 0; }
	body.fxce-premium-checkout .fxce-order-sheet {
		place-items: start end !important;
		padding: 96px var(--fxce-order-anchor-right, 24px) 24px 24px !important;
	}
	body.fxce-premium-checkout .fxce-order-sheet__backdrop { background: rgba(15,12,14,.34) !important; }
	body.fxce-premium-checkout .fxce-order-sheet__panel {
		width: min(var(--fxce-order-anchor-width, 560px), 620px) !important;
		max-height: calc(100vh - 120px) !important;
		border-radius: 18px !important;
		box-shadow: 0 24px 70px rgba(15,12,14,.22) !important;
	}
}

@media (max-width: 767px) {
	body.fxce-premium-checkout .fxce-checkout-page-header {
		width: calc(100% - 32px) !important; margin: 22px auto 18px !important;
	}
	body.fxce-premium-checkout .fxce-checkout-page-header__copy { padding-left: 0 !important; }
}

/* v8.0.2 — checkout layout stabilization and acceptance closure. */
body.fxce-premium-checkout [data-fxce-empty-checkout-hero="1"],
body.fxce-premium-checkout [data-fxce-hidden-privacy-notice="1"],
body.fxce-premium-checkout .woocommerce-privacy-policy-text[data-fxce-hidden-privacy-notice="1"] {
	display: none !important;
}

body.fxce-premium-checkout .fxce-checkout-page-header {
	min-height: 0 !important;
	height: auto !important;
	padding: 0 !important;
	margin-top: 18px !important;
	margin-bottom: 22px !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header__copy { min-height: 0 !important; }

/* Notes use the exact same column width and box model as the address section. */
body.fxce-premium-checkout #customer_details,
body.fxce-premium-checkout #customer_details > *,
body.fxce-premium-checkout #customer_details .woocommerce-additional-fields,
body.fxce-premium-checkout #customer_details [data-fxce-checkout-section="notes"] {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box !important;
}
body.fxce-premium-checkout #customer_details .woocommerce-additional-fields {
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--fxco-border, #e8e1e4) !important;
	border-radius: var(--fxce-checkout-radius, 16px) !important;
	background: #fff !important;
	overflow: hidden !important;
}
body.fxce-premium-checkout #customer_details .fxce-checkout-notes-toggle {
	width: 100% !important;
	min-height: 54px !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-sizing: border-box !important;
}
body.fxce-premium-checkout #customer_details .woocommerce-additional-fields__field-wrapper {
	width: 100% !important;
	padding: 0 18px 18px !important;
	box-sizing: border-box !important;
}
body.fxce-premium-checkout #customer_details .woocommerce-additional-fields textarea {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Wallet balance is one clean badge, not nested pills/rings. Applies to cart and checkout. */
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"],[class*="available"]
) {
	box-shadow: none !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"]
)::before,
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"]
)::after {
	content: none !important;
	display: none !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"]
) > * {
	box-shadow: none !important;
	outline: 0 !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"]
) :is(span,strong,b,em,i) {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-enforcement :is(
	.flashyn-wallet-balance,.wallet-balance,[class*="wallet-balance"]
) {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	min-height: 30px !important;
	padding: 4px 10px !important;
	border: 1px solid #bcebd0 !important;
	border-radius: 999px !important;
	background: #f4fcf7 !important;
	color: #08783f !important;
}

/* Consent is a single aligned row; the native privacy paragraph is intentionally removed. */
body.fxce-premium-checkout .fxce-checkout-consent .woocommerce-privacy-policy-text,
body.fxce-premium-checkout .fxce-checkout-consent > p:not(.form-row) {
	display: none !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box {
	flex: 0 0 21px !important;
	width: 21px !important;
	height: 21px !important;
	margin: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-copy {
	display: inline !important;
	min-width: 0 !important;
	line-height: 1.55 !important;
}

/* All totals values, including subtotal, have one right-hand value column. */
body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(tbody,tfoot) tr > td {
	text-align: right !important;
	vertical-align: middle !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal td,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.order-total td {
	display: table-cell !important;
	text-align: right !important;
	white-space: nowrap !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal td > *,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.order-total td > * {
	float: none !important;
	margin-left: 6px !important;
}

@media (min-width: 1024px) {
	/* Desktop: order review is the left primary column; delivery/payment is the right action column. */
	body.fxce-premium-checkout .fxce-checkout-page-header,
	body.fxce-premium-checkout form.checkout {
		width: min(1240px, calc(100% - 48px)) !important;
	}
	body.fxce-premium-checkout form.checkout {
		grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr) !important;
		gap: clamp(28px, 3vw, 48px) !important;
		margin-top: 0 !important;
	}
	body.fxce-premium-checkout form.checkout > #order_review {
		grid-column: 1 !important;
		grid-row: 1 !important;
		position: static !important;
		width: 100% !important;
	}
	body.fxce-premium-checkout form.checkout > #customer_details {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 100% !important;
		align-content: start !important;
	}
	body.fxce-premium-checkout #customer_details > #payment {
		display: block !important;
		margin-top: 0 !important;
	}
	body.fxce-premium-checkout #order_review > #payment { display: none !important; }
	body.fxce-premium-checkout.fxce-checkout-sticky-summary form.checkout > #order_review {
		position: static !important;
		top: auto !important;
	}
	body.fxce-premium-checkout .fxce-checkout-products__desktop { display: block !important; }
	body.fxce-premium-checkout .fxce-checkout-products__list article {
		grid-template-columns: 64px minmax(0,1fr) auto !important;
		padding: 14px 0 !important;
	}
	body.fxce-premium-checkout .fxce-checkout-product__media { width: 64px !important; }
}

@media (max-width: 767px) {
	body.fxce-premium-checkout .fxce-checkout-page-header {
		width: calc(100% - 28px) !important;
		margin: 6px auto 12px !important;
		padding: 0 !important;
		gap: 8px !important;
	}
	body.fxce-premium-checkout .fxce-checkout-page-header h1 { margin: 0 !important; }
	body.fxce-premium-checkout .fxce-checkout-progress { margin-top: 2px !important; }
	body.fxce-premium-checkout form.checkout { margin-top: 0 !important; }
	body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
		font-size: 12px !important;
	}
}


/* v8.0.4 — checkout shell and cart recommendation stabilization. */

/* Checkout is a compact controlled shell; theme wrappers may not reserve hero space. */
body.fxce-premium-checkout [data-fxce-checkout-shell-ancestor="1"] {
	min-height: 0 !important;
	height: auto !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}
body.fxce-premium-checkout [data-fxce-empty-checkout-hero="1"],
body.fxce-premium-checkout :is(.page-header,.page-title-wrap,.page-title-wrapper,.page-heading,.breadcrumb-wrap,.breadcrumbs-wrapper,.woocommerce-breadcrumb) {
	display: none !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header,
body.fxce-premium-checkout form.checkout {
	width: min(1240px, calc(100% - 40px)) !important;
	max-width: 1240px !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header {
	min-height: 0 !important;
	height: auto !important;
	margin: 18px auto 20px !important;
	padding: 0 !important;
	display: block !important;
}
body.fxce-premium-checkout .fxce-checkout-page-header__copy,
body.fxce-premium-checkout .fxce-checkout-progress {
	margin: 0 !important;
	padding: 0 !important;
}
body.fxce-premium-checkout form.checkout {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Consent is one true row. Hide the native input and use FCC's visible control. */
body.fxce-premium-checkout .fxce-checkout-consent {
	width: 100% !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: grid !important;
	grid-template-columns: 22px minmax(0, 1fr) !important;
	column-gap: 10px !important;
	row-gap: 0 !important;
	align-items: start !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] > input#terms,
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] > input[name="terms"] {
	position: absolute !important;
	inline-size: 1px !important;
	block-size: 1px !important;
	opacity: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	pointer-events: none !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box {
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 21px !important;
	height: 21px !important;
	margin: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-copy {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: block !important;
	min-width: 0 !important;
	line-height: 1.55 !important;
}
body.fxce-premium-checkout .woocommerce-privacy-policy-text,
body.fxce-premium-checkout [data-fxce-hidden-privacy-notice="1"] {
	display: none !important;
}

/* Monetary values share one far-right edge. */
body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(tbody,tfoot) tr > td {
	text-align: right !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 7px !important;
	white-space: nowrap !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td .amount {
	order: 2 !important;
	margin: 0 !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td :is(.fxce-saving-badge,.save,.saved,[class*="save"]) {
	order: 1 !important;
	margin: 0 !important;
}

@media (min-width: 1024px) {
	body.fxce-premium-checkout .fxce-checkout-page-header {
		margin-top: 22px !important;
		margin-bottom: 24px !important;
	}
	body.fxce-premium-checkout form.checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr) !important;
		gap: clamp(28px, 3vw, 46px) !important;
		align-items: start !important;
	}
	body.fxce-premium-checkout form.checkout > #order_review {
		grid-column: 1 !important;
		grid-row: 1 !important;
		width: 100% !important;
		position: static !important;
		margin: 0 !important;
	}
	body.fxce-premium-checkout form.checkout > #customer_details {
		grid-column: 2 !important;
		grid-row: 1 !important;
		width: 100% !important;
		margin: 0 !important;
	}
	body.fxce-premium-checkout.fxce-checkout-sticky-summary form.checkout > #order_review {
		position: static !important;
		top: auto !important;
	}
}

@media (max-width: 767px) {
	body.fxce-premium-checkout .fxce-checkout-page-header {
		width: calc(100% - 28px) !important;
		margin: 8px auto 12px !important;
	}
	body.fxce-premium-checkout .fxce-checkout-page-header__copy > span {
		margin-bottom: 5px !important;
	}
	body.fxce-premium-checkout .fxce-checkout-progress {
		margin-top: 8px !important;
	}
}

/* Cart recommendations: compact FCC carousel, two cards on desktop and one on mobile. */
body.fxce-premium-cart [data-fxce-cart-main="1"] :is(.cross-sells,.up-sells,.related).fxce-cart-recommendations {
	padding: 20px 24px 22px !important;
	overflow: hidden !important;
}
body.fxce-premium-cart [data-fxce-cart-main="1"] .fxce-cart-recommendations > h2 {
	margin: 0 0 14px !important;
	font-size: 19px !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendations-track="1"] {
	gap: 14px !important;
	align-items: stretch !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-card="1"] {
	flex: 0 0 calc((100% - 14px) / 2) !important;
	width: calc((100% - 14px) / 2) !important;
	max-width: calc((100% - 14px) / 2) !important;
	min-height: 0 !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
	display: grid !important;
	grid-template-columns: 128px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 16px !important;
	min-height: 164px !important;
	height: auto !important;
	padding: 12px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 16px !important;
	background: #fff !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"] {
	grid-column: 1 !important;
	width: 128px !important;
	max-width: 128px !important;
	height: 148px !important;
	max-height: 148px !important;
	aspect-ratio: auto !important;
	margin: 0 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-image="1"] {
	width: 128px !important;
	max-width: 128px !important;
	height: 148px !important;
	max-height: 148px !important;
	object-fit: cover !important;
	object-position: center top !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-copy="1"] {
	grid-column: 2 !important;
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	margin: 0 !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] :is(h2,h3,.woocommerce-loop-product__title,.product-title) {
	margin-top: 0 !important;
	font-size: 14px !important;
	line-height: 1.35 !important;
}
body.fxce-premium-cart .fxce-cart-recommendation-dots {
	min-height: 18px !important;
	margin-top: 10px !important;
}

@media (max-width: 767px) {
	body.fxce-premium-cart [data-fxce-cart-main="1"] :is(.cross-sells,.up-sells,.related).fxce-cart-recommendations {
		padding: 18px 14px 20px !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-card="1"] {
		flex-basis: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
		grid-template-columns: 112px minmax(0, 1fr) !important;
		gap: 13px !important;
		min-height: 140px !important;
		padding: 10px !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-media="1"],
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-image="1"] {
		width: 112px !important;
		max-width: 112px !important;
		height: 132px !important;
		max-height: 132px !important;
		margin: 0 !important;
	}
}

/* v8.0.5 — final responsive commerce ownership fixes. */
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-available-badge {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	min-height: 30px !important;
	padding: 4px 10px !important;
	border: 1px solid #bcebd0 !important;
	border-radius: 999px !important;
	background: #f4fcf7 !important;
	box-shadow: none !important;
	color: #08783f !important;
	font-weight: 750 !important;
	white-space: nowrap !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-available-badge *,
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-available-badge :is(.woocommerce-Price-amount,.woocommerce-Price-currencySymbol) {
	display: inline !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font: inherit !important;
	color: inherit !important;
}
body:is(.fxce-premium-checkout,.fxce-premium-cart) .flashyn-wallet-available-badge em { font-style: normal !important; }

body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] {
	display: grid !important;
	grid-template-columns: minmax(0,1fr) minmax(132px,auto) !important;
	align-items: center !important;
	width: 100% !important;
}
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > th,
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td { display: block !important; width: auto !important; }
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 7px !important;
	min-width: 132px !important;
	text-align: right !important;
	white-space: nowrap !important;
}
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] .amount { margin-left: auto !important; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="order-left"] {
		display: grid !important;
		grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr) !important;
	}
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="order-left"] > #order_review {
		grid-column: 1 !important; grid-row: 1 !important; order: 1 !important;
	}
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="order-left"] > #customer_details {
		grid-column: 2 !important; grid-row: 1 !important; order: 2 !important;
	}
}

.fxce-checkout-edit-cart { display: none; }
@media (max-width: 767px) {
	body.fxce-premium-checkout .fxce-checkout-page-header__copy { position: relative !important; padding-right: 118px !important; }
	body.fxce-premium-checkout .fxce-checkout-edit-cart {
		display: inline-flex !important;
		position: absolute !important;
		right: 0 !important;
		top: 2px !important;
		align-items: center !important;
		min-height: 32px !important;
		padding: 0 10px !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: 999px !important;
		background: #fff !important;
		color: var(--fxp-ink) !important;
		font-size: 12px !important;
		font-weight: 750 !important;
		text-decoration: none !important;
	}
	body.fxce-premium-checkout .fxce-checkout-edit-cart svg {
		width: 15px !important;
		height: 15px !important;
		margin-right: 5px !important;
		fill: none !important;
		stroke: currentColor !important;
		stroke-width: 2 !important;
		stroke-linecap: round !important;
		stroke-linejoin: round !important;
	}
}

/* v8.0.6 — approved desktop checkout composition.
 * Left: delivery address, notes and product review.
 * Right: order summary, payment method, consent and final payment action. */
body.fxce-premium-checkout .fxce-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--fxco-accent, #9d174d);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}
body.fxce-premium-checkout .fxce-order-summary-heading,
body.fxce-premium-checkout .fxce-payment-heading { display: none; }

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] {
		display: grid !important;
		grid-template-columns: minmax(0, 1.45fr) minmax(430px, 1fr) !important;
		gap: clamp(26px, 3vw, 44px) !important;
		align-items: start !important;
		width: min(1440px, calc(100% - 48px)) !important;
		margin-inline: auto !important;
	}
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] > #customer_details {
		grid-column: 1 !important;
		grid-row: 1 !important;
		order: 1 !important;
		width: 100% !important;
		margin: 0 !important;
	}
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] > #order_review {
		grid-column: 2 !important;
		grid-row: 1 !important;
		order: 2 !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 20px !important;
		position: sticky !important;
		top: 22px !important;
		max-height: none !important;
		overflow: visible !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: 20px !important;
		background: var(--fxp-surface, #fff) !important;
		box-shadow: 0 18px 50px rgba(25, 20, 22, .06) !important;
	}

	/* Address and notes remain a single compact delivery block. */
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] #customer_details > :first-child,
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] #customer_details .col-1 {
		width: 100% !important;
		float: none !important;
	}
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] #customer_details .col-2 {
		width: 100% !important;
		float: none !important;
	}

	/* Product list is section 2 in the left column. */
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] {
		display: block !important;
		margin: 22px 0 0 !important;
		padding: 22px 24px 20px !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: 20px !important;
		background: var(--fxp-surface, #fff) !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-mobile-order-card {
		display: none !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__desktop {
		display: block !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__heading {
		display: flex !important;
		align-items: center !important;
		gap: 11px !important;
		margin: 0 0 14px !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__heading strong {
		font-size: 18px !important;
		font-weight: 800 !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__heading small {
		margin-left: 0 !important;
		font-size: 12px !important;
		color: var(--fxco-muted) !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__list {
		display: block !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-products__list article {
		display: grid !important;
		grid-template-columns: 66px minmax(0,1fr) auto !important;
		align-items: center !important;
		gap: 14px !important;
		min-height: 86px !important;
		padding: 10px 0 !important;
		border-bottom: 1px solid var(--fxp-border) !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-product__media {
		width: 64px !important;
		height: 76px !important;
		border-radius: 10px !important;
		overflow: hidden !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-checkout-product__media img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center top !important;
	}
	body.fxce-premium-checkout [data-fxce-order-products][data-fxce-desktop-products="1"] .fxce-desktop-view-order {
		width: 100% !important;
		min-height: 48px !important;
		margin-top: 12px !important;
		padding: 0 14px !important;
		border: 1px solid var(--fxp-border) !important;
		border-radius: 14px !important;
		background: #fff !important;
	}

	/* The right column starts with totals, then delivery/wallet, payment and action. */
	body.fxce-premium-checkout .fxce-order-summary-heading {
		display: block !important;
		margin: 0 0 10px !important;
		font-size: 18px !important;
		font-weight: 800 !important;
		color: var(--fxco-ink) !important;
	}
	body.fxce-premium-checkout #order_review > [data-fxce-order-products] {
		display: none !important;
	}
	body.fxce-premium-checkout #order_review .woocommerce-checkout-review-order-table {
		margin: 0 !important;
		width: 100% !important;
	}
	body.fxce-premium-checkout #order_review .woocommerce-checkout-review-order-table tr > th,
	body.fxce-premium-checkout #order_review .woocommerce-checkout-review-order-table tr > td {
		padding-block: 11px !important;
	}
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] {
		display: table-row !important;
	}
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > th,
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td {
		display: table-cell !important;
	}
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 8px !important;
		min-width: 180px !important;
	}
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] .amount {
		order: 2 !important;
		margin-left: 0 !important;
	}
	body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] :is(.fxce-saving-badge,.save,.saved,[class*="save"]) {
		order: 1 !important;
	}
	body.fxce-premium-checkout .fxce-checkout-delivery-estimate,
	body.fxce-premium-checkout #order_review [data-fxce-checkout-wallet] {
		margin-top: 12px !important;
	}
	body.fxce-premium-checkout .fxce-payment-heading {
		display: flex !important;
		align-items: center !important;
		gap: 11px !important;
		margin: 18px 0 12px !important;
		padding-top: 18px !important;
		border-top: 1px solid var(--fxp-border) !important;
		font-size: 18px !important;
		font-weight: 800 !important;
	}
	body.fxce-premium-checkout #payment::before { display: none !important; content: none !important; }
	body.fxce-premium-checkout #order_review #payment {
		display: block !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
	}
	body.fxce-premium-checkout #order_review #payment .place-order,
	body.fxce-premium-checkout #order_review #payment .place-order:not(.fxce-place-order-ready) {
		display: block !important;
		padding-top: 14px !important;
	}
	body.fxce-premium-checkout #order_review #payment #place_order {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
		min-height: 54px !important;
		border-radius: 999px !important;
		font-size: 16px !important;
		font-weight: 800 !important;
	}
	body.fxce-premium-checkout #order_review .fxce-checkout-assurance {
		margin-top: 16px !important;
		padding-top: 16px !important;
	}
}

@media (max-width: 1023px) {
	body.fxce-premium-checkout .fxce-order-summary-heading,
	body.fxce-premium-checkout .fxce-payment-heading { display: none !important; }
}
@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] #customer_details > [data-fxce-order-products] {
		grid-column: 1 / -1 !important;
		width: 100% !important;
		clear: both !important;
	}
}


/* v8.0.7 — final checkout theme/action and cart recommendation stabilization. */
body.fxce-premium-checkout {
	--fxco-accent: var(--flashyn-theme-accent, var(--fxce-accent, var(--theme-color, #9d174d)));
	--fxco-accent-soft: color-mix(in srgb, var(--fxco-accent) 8%, #fff);
}
body.fxce-premium-checkout :is(.fxce-section-number,#place_order,.fxce-mobile-checkout-primary,.fxce-consent-visual.is-checked) {
	background-color: var(--fxco-accent) !important;
}
body.fxce-premium-checkout :is(.fxce-payment-card.is-selected,.fxce-checkout-consent a) {
	border-color: var(--fxco-accent) !important;
	color: var(--fxco-accent) !important;
}
body.fxce-premium-checkout .fxce-payment-card.is-selected {
	background: var(--fxco-accent-soft) !important;
}

/* The checkout totals already show wallet deduction; do not repeat a wallet card. */
body.fxce-premium-checkout #order_review [data-fxce-checkout-wallet],
body.fxce-premium-checkout #order_review .flashyn-wallet-enforcement { display: none !important; }

/* One explicit, clickable consent row. */
body.fxce-premium-checkout .fxce-checkout-consent,
body.fxce-premium-checkout .fxce-checkout-consent .woocommerce-form__label-for-checkbox,
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	line-height: 1.45 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-visual {
	position: static !important;
	flex: 0 0 20px !important;
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	border: 1.5px solid color-mix(in srgb, var(--fxco-accent) 45%, #9ca3af) !important;
	border-radius: 5px !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .woocommerce-terms-and-conditions-checkbox-text {
	display: inline !important;
	margin: 0 !important;
}

@media (min-width: 1024px) {
	body.fxce-premium-checkout form.checkout[data-fxce-desktop-composition="approved-split"] > #order_review {
		padding: 18px 20px !important;
	}
	body.fxce-premium-checkout #order_review .woocommerce-checkout-review-order-table tr > th,
	body.fxce-premium-checkout #order_review .woocommerce-checkout-review-order-table tr > td {
		padding-block: 8px !important;
	}
	body.fxce-premium-checkout .fxce-checkout-delivery-estimate { margin-top: 8px !important; padding: 11px 13px !important; }
	body.fxce-premium-checkout .fxce-payment-heading { margin: 12px 0 9px !important; padding-top: 12px !important; }
	body.fxce-premium-checkout #payment .wc_payment_method.fxce-payment-card > label { padding: 11px 12px !important; }
	body.fxce-premium-checkout #payment .payment_box { padding: 0 12px 10px 45px !important; }
	body.fxce-premium-checkout #order_review #payment .place-order,
	body.fxce-premium-checkout #order_review #payment .place-order:not(.fxce-place-order-ready) { padding-top: 10px !important; }
	body.fxce-premium-checkout #order_review .fxce-checkout-assurance { margin-top: 11px !important; padding-top: 11px !important; }
}

/* Stable subtotal value edge: savings badge precedes amount without creating a second row. */
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] {
	display: grid !important;
	grid-template-columns: auto minmax(70px, auto) !important;
	justify-content: end !important;
	align-items: center !important;
	column-gap: 8px !important;
	text-align: right !important;
}
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] .amount {
	grid-column: 2 !important;
	justify-self: end !important;
	margin: 0 !important;
}
body.fxce-premium-checkout tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] :is(.fxce-saving-badge,.save,.saved,[class*="save"]) {
	grid-column: 1 !important;
	justify-self: end !important;
}

/* Cart recommendations: content-sized section and deterministic two/one-card viewport. */
body.fxce-premium-cart .fxce-cart-recommendations {
	min-height: 0 !important;
	height: auto !important;
	max-height: none !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendations-track="1"] {
	display: flex !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: x mandatory !important;
	scroll-behavior: smooth !important;
	scrollbar-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendations-track="1"]::-webkit-scrollbar { display: none !important; }
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-card="1"] {
	scroll-snap-align: start !important;
	align-self: stretch !important;
	margin: 0 !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
	box-sizing: border-box !important;
	min-height: 0 !important;
	height: 158px !important;
	max-height: 158px !important;
	overflow: hidden !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-copy="1"] {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	min-width: 0 !important;
	overflow: hidden !important;
}
body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] :is(h2,h3,.woocommerce-loop-product__title,.product-title) {
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}
@media (max-width: 767px) {
	body.fxce-premium-cart .fxce-cart-recommendations [data-fxce-cart-recommendation-content="1"] {
		height: 142px !important;
		max-height: 142px !important;
	}
}


/* v8.0.8 — mobile step ownership and consent alignment. */
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: grid !important;
	grid-template-columns: 22px minmax(0, 1fr) !important;
	align-items: center !important;
	column-gap: 10px !important;
	row-gap: 0 !important;
	width: 100% !important;
	margin: 0 !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] > input#terms,
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] > input[name="terms"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 1px !important;
	height: 1px !important;
	pointer-events: none !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box {
	grid-column: 1 !important;
	display: grid !important;
	place-items: center !important;
	width: 22px !important;
	height: 22px !important;
	margin: 0 !important;
	border: 1.5px solid color-mix(in srgb, var(--fxco-accent) 45%, #9ca3af) !important;
	border-radius: 6px !important;
	background: #fff !important;
	color: #fff !important;
	box-sizing: border-box !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label.is-checked .fxce-consent-box {
	background: var(--fxco-accent) !important;
	border-color: var(--fxco-accent) !important;
}
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box svg {
	width: 14px !important;
	height: 14px !important;
	opacity: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label.is-checked .fxce-consent-box svg { opacity: 1 !important; }
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-copy {
	grid-column: 2 !important;
	display: inline !important;
	margin: 0 !important;
	line-height: 1.45 !important;
}
@media (max-width: 767px) {
	body.fxce-premium-checkout[data-fxce-checkout-step="1"] [data-fxce-order-products] {
		display: none !important;
	}
	body.fxce-premium-checkout[data-fxce-checkout-step="2"] [data-fxce-order-products] {
		display: block !important;
	}
}


/* v8.0.9 — commerce UX corrections. */
/* Section headings are sufficient; numbered circles created confusion. */
body.fxce-premium-checkout .fxce-section-number { display: none !important; }
body.fxce-premium-checkout :is(.fxce-address-heading,.fxce-order-products-heading,.fxce-payment-heading) { gap: 0 !important; }

/* Use the actual WooCommerce checkbox as the single visible consent control. */
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-consent-enhanced="1"] {
	display: flex !important;
	flex-flow: row nowrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native {
	position: static !important;
	display: inline-grid !important;
	place-content: center !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	flex: 0 0 22px !important;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1.5px solid color-mix(in srgb, var(--fxco-accent) 48%, #9ca3af) !important;
	border-radius: 6px !important;
	background: #fff !important;
	box-shadow: none !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native::before {
	content: "" !important;
	width: 11px !important;
	height: 6px !important;
	border-left: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
	transform: rotate(-45deg) scale(0) !important;
	transform-origin: center !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:checked {
	border-color: var(--fxco-accent) !important;
	background: var(--fxco-accent) !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:checked::before { transform: rotate(-45deg) scale(1) !important; }
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box { display: none !important; }
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-copy {
	display: inline !important;
	min-width: 0 !important;
	margin: 0 !important;
	line-height: 1.45 !important;
}

/* Cart summary must size to its contents, keeping checkout action in view. */
body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
	align-self: start !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	padding: 16px !important;
}
body.fxce-premium-cart .cart-collaterals .cart_totals {
	height: auto !important;
	min-height: 0 !important;
	display: block !important;
}
body.fxce-premium-cart .cart_totals > h2 { margin-bottom: 12px !important; }
body.fxce-premium-cart .cart_totals > .coupon { margin-bottom: 12px !important; padding-bottom: 12px !important; }
body.fxce-premium-cart .cart_totals table { margin-bottom: 10px !important; }
body.fxce-premium-cart .cart_totals :is(th,td) { padding-block: 7px !important; }
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] { margin: 6px 0 !important; padding: 10px !important; border-radius: 12px !important; box-shadow: none !important; background: var(--fxp-surface) !important; }
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied { margin-top: 7px !important; padding: 8px 10px !important; border-radius: 10px !important; }
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] > small,
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock { display: none !important; }
body.fxce-premium-cart .wc-proceed-to-checkout { margin-top: 10px !important; }
body.fxce-premium-cart .fxce-cart-assurance { margin-top: 12px !important; padding-top: 12px !important; }

/* v8.0.10 — source-level checkout consent and unnumbered section headings. */
body.fxce-premium-checkout [data-fxce-checkout-section="address"]::before,
body.fxce-premium-checkout [data-fxce-checkout-section="contact"]::before,
body.fxce-premium-checkout [data-fxce-checkout-section="delivery"]::before {
	display: none !important;
	content: none !important;
}
body.fxce-premium-checkout [data-fxce-checkout-section="address"] > h3,
body.fxce-premium-checkout :is(.woocommerce-billing-fields,.woocommerce-shipping-fields) > h3 {
	padding-left: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent [data-fxce-consent-row="1"] {
	display: grid !important;
	grid-template-columns: 22px minmax(0,1fr) !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 2px 0 !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent [data-fxce-consent-row="1"] > input.fxce-consent-native {
	grid-column: 1 !important;
	position: relative !important;
	display: grid !important;
	place-items: center !important;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	margin: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
}
body.fxce-premium-checkout .fxce-checkout-consent [data-fxce-consent-row="1"] > .fxce-consent-copy {
	grid-column: 2 !important;
	display: inline !important;
	min-width: 0 !important;
	line-height: 1.45 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[aria-hidden="true"] { display: none !important; }

body.fxce-premium-cart [data-fxce-cart-recommendation-card="1"][role="link"] { cursor: pointer !important; }
body.fxce-premium-cart [data-fxce-cart-recommendation-card="1"] a[href] { pointer-events: auto !important; }

/* Checkout consent uses the real WooCommerce checkbox as its only control. */
body.fxce-premium-checkout .fxce-checkout-consent [data-fxce-consent-row="1"] {
	display: grid !important;
	grid-template-columns: 22px minmax(0,1fr) !important;
	align-items: start !important;
	column-gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native {
	position: relative !important;
	grid-column: 1 !important;
	display: inline-grid !important;
	place-content: center !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	inline-size: 22px !important;
	block-size: 22px !important;
	min-inline-size: 22px !important;
	padding: 0 !important;
	margin: 1px 0 0 !important;
	border: 1.5px solid var(--fxco-border, #c9b8be) !important;
	border-radius: 6px !important;
	background: #fff !important;
	box-shadow: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native::before {
	content: "" !important;
	width: 11px !important;
	height: 6px !important;
	border-left: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
	transform: rotate(-45deg) scale(0) !important;
	transform-origin: center !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:checked {
	background: #161616 !important;
	border-color: #161616 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:checked::before { transform: rotate(-45deg) scale(1) !important; }
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-copy {
	grid-column: 2 !important;
	display: inline !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	margin: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:focus-visible {
	outline: 3px solid rgba(22,22,22,.2) !important;
	outline-offset: 2px !important;
}

/* The wallet deduction already appears in totals. Remove the duplicate cart wallet card. */
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] { display: block !important; }
body.fxce-premium-cart .cart-collaterals .cart_totals > * { margin-block-start: 0 !important; }
body.fxce-premium-cart .cart-collaterals .cart_totals { padding: 14px !important; }
body.fxce-premium-cart .cart_totals table { margin: 4px 0 8px !important; }
body.fxce-premium-cart .cart_totals :is(th,td) { padding-block: 6px !important; }
body.fxce-premium-cart .cart_totals .woocommerce-shipping-totals td,
body.fxce-premium-cart .cart_totals .shipping td { padding-bottom: 8px !important; }
body.fxce-premium-cart .wc-proceed-to-checkout { margin-top: 8px !important; }
body.fxce-premium-cart .fxce-cart-assurance { margin-top: 10px !important; padding-top: 10px !important; gap: 8px !important; }

/* v8.0.17: keep checkout subtotal label, savings badge and amount on one stable row. */
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal,
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] {
	display: table-row !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > th,
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td,
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > th,
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td {
	display: table-cell !important;
	vertical-align: middle !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td,
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] {
	white-space: nowrap !important;
	text-align: right !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td > *,
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] > * {
	display: inline-flex !important;
	align-items: center !important;
	vertical-align: middle !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-subtotal > td :is(.fxce-saving-badge,.save,.saved,[class*="save"]),
body.fxce-premium-checkout #order_review tr[data-fxce-subtotal-row="1"] > td[data-fxce-subtotal-value="1"] :is(.fxce-saving-badge,.save,.saved,[class*="save"]) {
	margin-right: 8px !important;
}


/* v8.1.1 — compact cart summary and single-owner wallet rendering. */
body.fxce-premium-cart .flashyn-wallet-enforcement-cart:not([data-fxce-wallet-inline="1"]) {
	display: none !important;
}
body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
	padding: 14px !important;
}
body.fxce-premium-cart .cart-collaterals .cart_totals {
	min-height: 0 !important;
	height: auto !important;
}
body.fxce-premium-cart .cart_totals > h2 {
	margin-bottom: 10px !important;
}
body.fxce-premium-cart .cart_totals > .coupon {
	margin-bottom: 9px !important;
	padding-bottom: 10px !important;
}
body.fxce-premium-cart .cart_totals table {
	margin: 0 0 6px !important;
}
body.fxce-premium-cart .cart_totals :is(th, td) {
	padding-block: 5px !important;
	line-height: 1.35 !important;
}
body.fxce-premium-cart .cart_totals .fxce-discounts-heading th {
	padding: 8px 0 3px !important;
}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] {
	gap: 4px !important;
	margin: 7px 0 3px !important;
	padding: 11px 12px !important;
}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination {
	margin-top: 4px !important;
	line-height: 1.35 !important;
}
body.fxce-premium-cart .cart_totals .order-total :is(th, td) {
	padding-top: 10px !important;
}
body.fxce-premium-cart .wc-proceed-to-checkout {
	margin-top: 6px !important;
}
body.fxce-premium-cart .fxce-cart-assurance {
	margin-top: 8px !important;
	padding-top: 8px !important;
}


/* v8.1.3 — storefront cart, filter and navigation polish. */
body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] {display:block!important;margin:5px 0!important;padding:9px 10px!important;border-radius:11px!important}
body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head{align-items:center!important}
body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] :is(.flashyn-wallet-auto-applied,.flashyn-wallet-unlock,.flashyn-wallet-reward-preview){margin-top:6px!important}
body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-reward-preview{padding-top:7px!important}
body.fxce-premium-cart [data-fxce-cart-shell="1"]>.cart-collaterals,body.fxce-premium-cart .cart-collaterals .cart_totals{padding:11px 12px!important}
body.fxce-premium-cart .cart_totals>h2{margin:0 0 7px!important}
body.fxce-premium-cart .cart_totals table{margin:0 0 3px!important}
body.fxce-premium-cart .cart_totals :is(th,td){padding-block:4px!important}
body.fxce-premium-cart .cart_totals .fxce-discounts-heading th{padding:6px 0 2px!important}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"]{margin:5px 0 2px!important;padding:9px 10px!important;gap:3px!important}
body.fxce-premium-cart .cart_totals .fxce-total-savings :is(th,td),body.fxce-premium-cart .cart_totals .order-total :is(th,td){padding-top:7px!important}
body.fxce-premium-cart .wc-proceed-to-checkout{margin-top:4px!important;padding-top:0!important}
body.fxce-premium-cart .fxce-cart-assurance{margin-top:6px!important;padding-top:6px!important;gap:6px!important}

@media(max-width:782px){
.fxce-mobile-filters:not([hidden]){display:flex!important;align-items:flex-end!important}
.fxce-filter-sheet{height:min(86dvh,720px)!important;max-height:min(86dvh,720px)!important;padding-bottom:0!important;overflow:hidden!important}
.fxce-filter-sheet>header{flex:0 0 auto!important;padding:10px 12px 8px!important}
.fxce-filter-layout{min-height:0!important;flex:1 1 auto!important;grid-template-columns:94px minmax(0,1fr)!important;overflow:hidden!important}
.fxce-filter-tabs{min-height:0!important;overflow-y:auto!important}.fxce-filter-tabs button{min-height:43px!important;padding:7px 8px!important;font-size:10px!important}
.fxce-filter-panels{min-height:0!important;overflow-y:auto!important;padding:10px!important}.fxce-filter-panel h3{margin-bottom:8px!important;font-size:14px!important}
.fxce-filter-category-grid{gap:7px!important}.fxce-filter-category-image{height:70px!important;border-radius:10px!important}
.fxce-filter-swatches{gap:6px!important}.fxce-filter-swatches label{min-height:40px!important;padding:5px 28px 5px 7px!important;border-radius:10px!important}.fxce-filter-swatches label>span{width:24px!important;height:24px!important}
.fxce-filter-pills{gap:6px!important}.fxce-filter-pills label span{min-height:34px!important;padding:0 11px!important}
.fxce-filter-price{gap:7px!important}.fxce-filter-price label>div{min-height:39px!important;border-radius:10px!important}.fxce-filter-toggle{min-height:50px!important;padding:8px 44px 8px 9px!important}
.fxce-filter-sheet>footer,.fxce-filter-sheet>footer.is-auto-apply{position:relative!important;bottom:auto!important;z-index:30!important;flex:0 0 auto!important;min-height:58px!important;grid-template-columns:auto minmax(0,1fr) auto!important;padding:8px 10px calc(8px + env(safe-area-inset-bottom))!important;background:#fff!important;box-shadow:0 -8px 20px rgba(15,23,42,.08)!important}
.fxce-filter-sheet>footer.is-auto-apply{grid-template-columns:auto minmax(0,1fr)!important}.fxce-filter-footer-reset{display:inline-flex!important;min-height:40px!important;align-items:center!important}.fxce-filter-apply{display:inline-flex!important;min-height:40px!important;padding:0 15px!important;align-items:center!important;justify-content:center!important}.fxce-filter-sheet>footer.is-auto-apply .fxce-filter-apply{display:inline-flex!important}.fxce-filter-sheet>footer span{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}
}

/* v8.1.35: native-theme alignment and saved-address selector polish. */
body.fxce-premium-cart,
body.fxce-premium-checkout,
body.fxce-checkout-auth-gated {
	--fxp-primary: var(--fxce-button-bg, var(--fxce-primary, var(--glozin-primary-color, var(--theme-color, #9f1648)))) !important;
	--fxp-primary-text: var(--fxce-button-text, #ffffff) !important;
	--fxp-success: var(--fxce-success, var(--glozin-primary-color, var(--theme-color, #0f7a55))) !important;
	--fxp-danger: var(--fxce-danger, #b4233f) !important;
}

body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination,
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] address,
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] p {
	max-width: 100% !important;
	overflow-wrap: anywhere !important;
	word-break: normal !important;
}


/* v8.1.36 — desktop cart/checkout theme + compact summary polish.
   Presentation-only. WooCommerce remains authoritative for coupon, wallet,
   shipping, totals, checkout validation and order creation. */
body.fxce-premium-cart,
body.fxce-premium-checkout,
body.fxce-checkout-auth-gated {
	/* Desktop should inherit the native site/theme button color, not the
	   mobile burgundy theme token. Mobile keeps its configured theme below. */
	--fxp-primary: var(--glozin-primary-color, var(--theme-color, var(--color-primary, var(--primary-color, #111111)))) !important;
	--fxp-primary-text: var(--glozin-primary-color-contrast, var(--theme-color-contrast, #ffffff)) !important;
	--fxp-success: var(--glozin-success-color, var(--theme-success-color, #087a55)) !important;
}
@media (max-width: 767px) {
	body.flashyn-mobile-theme-active.fxce-premium-cart,
	body.flashyn-mobile-theme-active.fxce-premium-checkout,
	body.flashyn-mobile-theme-active.fxce-checkout-auth-gated {
		--fxp-primary: var(--fxce-button-bg, var(--fxce-primary, var(--glozin-primary-color, var(--theme-color, #111111)))) !important;
		--fxp-primary-text: var(--fxce-button-text, var(--fxce-primary-text, #ffffff)) !important;
	}
}

/* Keep the coupon/login toggles aligned with the generated checkout header,
   never floating above the header with large empty space. */
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header + .woocommerce-form-coupon-toggle,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header + .woocommerce-form-login-toggle,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle + .woocommerce-form-login-toggle {
	margin-top: 0 !important;
	margin-bottom: 14px !important;
}
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-login-toggle {
	order: 2 !important;
}
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle .woocommerce-info,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-login-toggle .woocommerce-info {
	padding: 10px 14px !important;
	min-height: 0 !important;
}

/* Desktop order summary compactness. This specifically targets the right cart
   column that was growing with large gaps between subtotal, discounts, wallet,
   delivery and action rows. */
@media (min-width: 768px) {
	body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals,
	body.woocommerce-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
		align-self: start !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 16px 18px !important;
		border-radius: 18px !important;
	}
	body.fxce-premium-cart .cart-collaterals .cart_totals,
	body.woocommerce-cart .cart-collaterals .cart_totals {
		display: block !important;
		height: auto !important;
		min-height: 0 !important;
		padding: 0 !important;
		background: transparent !important;
	}
	body.fxce-premium-cart .cart_totals > h2,
	body.woocommerce-cart .cart_totals > h2 {
		margin: 0 0 10px !important;
		font-size: 20px !important;
		line-height: 1.2 !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon,
	body.woocommerce-cart .cart_totals > .coupon {
		margin: 0 0 12px !important;
		padding: 0 0 12px !important;
		gap: 8px !important;
		border-bottom: 1px solid var(--fxp-border, #e4e7ec) !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon input,
	body.woocommerce-cart .cart_totals > .coupon input {
		min-height: 42px !important;
		padding: 0 12px !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon button,
	body.woocommerce-cart .cart_totals > .coupon button {
		min-height: 42px !important;
		padding: 0 14px !important;
		border-radius: 10px !important;
		background: var(--fxp-primary, #111111) !important;
		border-color: var(--fxp-primary, #111111) !important;
		color: var(--fxp-primary-text, #ffffff) !important;
	}
	body.fxce-premium-cart .cart_totals table,
	body.woocommerce-cart .cart_totals table {
		margin: 0 !important;
		border: 0 !important;
	}
	body.fxce-premium-cart .cart_totals :is(tr, th, td),
	body.woocommerce-cart .cart_totals :is(tr, th, td) {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
		line-height: 1.32 !important;
		border: 0 !important;
	}
	body.fxce-premium-cart .cart_totals .fxce-discounts-heading th,
	body.woocommerce-cart .cart_totals .fxce-discounts-heading th {
		padding: 7px 0 2px !important;
	}
	body.fxce-premium-cart .fxce-discount-row :is(th, td),
	body.woocommerce-cart .fxce-discount-row :is(th, td) {
		padding-top: 3px !important;
		padding-bottom: 3px !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"],
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] {
		margin: 5px 0 !important;
		padding: 9px 10px !important;
		border: 0 !important;
		border-radius: 10px !important;
		box-shadow: none !important;
		background: #ffffff !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head,
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head,
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head,
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-enforcement-head {
		gap: 8px !important;
		min-height: 0 !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied,
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied,
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied,
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-auto-applied {
		margin-top: 6px !important;
		padding: 7px 9px !important;
		border-radius: 9px !important;
		min-height: 0 !important;
	}
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] > small,
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] > small,
	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock,
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock,
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] > small,
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] > small,
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock,
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] .flashyn-wallet-unlock {
		display: none !important;
	}
	body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"],
	body.woocommerce-cart .cart_totals [data-fxce-shipping-section="1"],
	body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping),
	body.woocommerce-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) {
		display: block !important;
		margin: 8px 0 4px !important;
		padding: 12px 14px !important;
		border-radius: 12px !important;
		background: #ffffff !important;
	}
	body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] :is(th, td),
	body.woocommerce-cart .cart_totals [data-fxce-shipping-section="1"] :is(th, td),
	body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) :is(th, td),
	body.woocommerce-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) :is(th, td) {
		display: block !important;
		width: 100% !important;
		padding: 0 !important;
		text-align: left !important;
	}
	body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination,
	body.woocommerce-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination {
		margin: 5px 0 0 !important;
		font-size: 12px !important;
		line-height: 1.45 !important;
		font-weight: 520 !important;
		overflow-wrap: break-word !important;
		word-break: normal !important;
	}
	body.fxce-premium-cart .cart_totals .fxce-total-savings :is(th, td),
	body.fxce-premium-cart .cart_totals .order-total :is(th, td),
	body.woocommerce-cart .cart_totals .fxce-total-savings :is(th, td),
	body.woocommerce-cart .cart_totals .order-total :is(th, td) {
		padding-top: 8px !important;
	}
	body.fxce-premium-cart .wc-proceed-to-checkout,
	body.woocommerce-cart .wc-proceed-to-checkout {
		margin-top: 10px !important;
		padding-top: 0 !important;
	}
	body.fxce-premium-cart :is(.wc-proceed-to-checkout .checkout-button, .wc-block-cart__submit-button),
	body.woocommerce-cart :is(.wc-proceed-to-checkout .checkout-button, .wc-block-cart__submit-button) {
		min-height: 50px !important;
		background: var(--fxp-primary, #111111) !important;
		border-color: var(--fxp-primary, #111111) !important;
		color: var(--fxp-primary-text, #ffffff) !important;
	}
	body.fxce-premium-cart .fxce-cart-assurance,
	body.woocommerce-cart .fxce-cart-assurance {
		margin-top: 10px !important;
		padding-top: 10px !important;
		gap: 8px !important;
	}
}

/* v8.1.37 — desktop cart/checkout consistency and compact summary correction.
   This is presentation-only. It removes mobile/brand color bleed from desktop,
   keeps success green only for savings, tightens the cart summary column, and
   aligns checkout coupon/order-note blocks with the checkout content width. */
@media (min-width: 768px) {
	body.fxce-premium-cart,
	body.fxce-premium-checkout,
	body.fxce-checkout-auth-gated {
		--fxp-primary: #111111 !important;
		--fxp-primary-text: #ffffff !important;
		--fxp-accent: #111111 !important;
		--fxp-success: #087a55 !important;
		--fxp-surface: #ffffff !important;
		--fxp-soft: #f7f7f7 !important;
		--fxp-border: #e5e7eb !important;
		--fxp-muted: #667085 !important;
		--fxp-text: #111827 !important;
	}

	body.fxce-premium-cart :is(.cart_totals, .cart_totals *, .fxce-cart-summary, .fxce-cart-summary *),
	body.fxce-premium-checkout :is(.fxce-checkout-shell, .fxce-checkout-shell *) {
		border-color: var(--fxp-border) !important;
	}

	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-login-toggle {
		width: min(100%, 760px) !important;
		max-width: 760px !important;
		margin-left: 0 !important;
		margin-right: auto !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-coupon-toggle .woocommerce-info,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .woocommerce-form-login-toggle .woocommerce-info {
		padding: 10px 14px !important;
		border-radius: 12px !important;
		text-align: left !important;
		font-size: 14px !important;
	}

	body.fxce-premium-checkout .fxce-checkout-left > .woocommerce-additional-fields,
	body.fxce-premium-checkout .fxce-checkout-left .woocommerce-additional-fields,
	body.fxce-premium-checkout .fxce-checkout-left .fxce-order-notes,
	body.fxce-premium-checkout .fxce-checkout-left [data-fxce-order-notes] {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	body.fxce-premium-checkout .fxce-checkout-left .woocommerce-additional-fields > div,
	body.fxce-premium-checkout .fxce-checkout-left .woocommerce-additional-fields__field-wrapper {
		max-width: 100% !important;
	}

	body.fxce-premium-cart [data-fxce-cart-shell="1"] > .cart-collaterals,
	body.woocommerce-cart [data-fxce-cart-shell="1"] > .cart-collaterals {
		padding: 18px 18px 14px !important;
		background: #f6f6f6 !important;
	}
	body.fxce-premium-cart .cart_totals,
	body.woocommerce-cart .cart_totals {
		gap: 0 !important;
	}
	body.fxce-premium-cart .cart_totals > h2,
	body.woocommerce-cart .cart_totals > h2 {
		margin-bottom: 12px !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon,
	body.woocommerce-cart .cart_totals > .coupon {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		align-items: center !important;
		gap: 8px !important;
		margin-bottom: 10px !important;
		padding-bottom: 10px !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon input,
	body.woocommerce-cart .cart_totals > .coupon input {
		min-width: 0 !important;
	}
	body.fxce-premium-cart .cart_totals > .coupon button,
	body.woocommerce-cart .cart_totals > .coupon button {
		white-space: nowrap !important;
	}

	body.fxce-premium-cart .cart_totals table,
	body.woocommerce-cart .cart_totals table,
	body.fxce-premium-cart .cart_totals tbody,
	body.woocommerce-cart .cart_totals tbody {
		display: block !important;
		width: 100% !important;
	}
	body.fxce-premium-cart .cart_totals tr,
	body.woocommerce-cart .cart_totals tr {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		align-items: center !important;
		gap: 10px !important;
		width: 100% !important;
		padding: 7px 0 !important;
		border-bottom: 1px solid var(--fxp-border) !important;
	}
	body.fxce-premium-cart .cart_totals tr:last-child,
	body.woocommerce-cart .cart_totals tr:last-child {
		border-bottom: 0 !important;
	}
	body.fxce-premium-cart .cart_totals :is(th, td),
	body.woocommerce-cart .cart_totals :is(th, td) {
		display: block !important;
		width: auto !important;
		padding: 0 !important;
		vertical-align: middle !important;
	}
	body.fxce-premium-cart .cart_totals td,
	body.woocommerce-cart .cart_totals td {
		text-align: right !important;
	}
	body.fxce-premium-cart .fxce-discount-row,
	body.woocommerce-cart .fxce-discount-row,
	body.fxce-premium-cart .fee,
	body.woocommerce-cart .fee {
		padding: 6px 0 !important;
	}
	body.fxce-premium-cart .fxce-discounts-heading,
	body.woocommerce-cart .fxce-discounts-heading {
		border-bottom: 0 !important;
		padding: 5px 0 0 !important;
	}

	body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
	body.fxce-premium-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"],
	body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
	body.woocommerce-cart .flashyn-wallet-enforcement-cart[data-fxce-wallet-inline="1"] {
		margin: 8px 0 !important;
		padding: 10px 12px !important;
		background: #ffffff !important;
		border-radius: 12px !important;
	}
	body.fxce-premium-cart .flashyn-wallet-reward-preview,
	body.woocommerce-cart .flashyn-wallet-reward-preview {
		margin-top: 8px !important;
		padding-top: 8px !important;
	}
	body.fxce-premium-cart .flashyn-wallet-reward-preview small,
	body.woocommerce-cart .flashyn-wallet-reward-preview small {
		font-size: 12px !important;
		line-height: 1.35 !important;
	}
	body.fxce-premium-cart .flashyn-wallet-reward-preview > div:first-child strong,
	body.woocommerce-cart .flashyn-wallet-reward-preview > div:first-child strong {
		color: var(--fxp-text) !important;
	}

	body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"],
	body.woocommerce-cart .cart_totals [data-fxce-shipping-section="1"],
	body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping),
	body.woocommerce-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) {
		margin: 8px 0 !important;
		padding: 12px !important;
		background: #ffffff !important;
		border-radius: 12px !important;
		border: 0 !important;
	}
	body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination,
	body.woocommerce-cart .cart_totals [data-fxce-shipping-section="1"] .woocommerce-shipping-destination,
	body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) .woocommerce-shipping-destination,
	body.woocommerce-cart .cart_totals :is(.woocommerce-shipping-totals, .shipping) .woocommerce-shipping-destination {
		margin-top: 6px !important;
		color: var(--fxp-muted) !important;
		font-size: 13px !important;
		line-height: 1.45 !important;
		font-weight: 500 !important;
		white-space: normal !important;
		overflow-wrap: anywhere !important;
	}
	body.fxce-premium-cart .cart_totals .order-total,
	body.woocommerce-cart .cart_totals .order-total,
	body.fxce-premium-cart .cart_totals .fxce-total-savings,
	body.woocommerce-cart .cart_totals .fxce-total-savings {
		margin-top: 8px !important;
		padding-top: 12px !important;
	}
	body.fxce-premium-cart .wc-proceed-to-checkout,
	body.woocommerce-cart .wc-proceed-to-checkout {
		margin-top: 14px !important;
	}
}

/* v8.2.1 — canonical approved checkout composition.
 * These selectors belong to the current checkout renderer and replace the
 * historical numbered/inline-address presentation without changing native
 * WooCommerce calculations, gateways, validation or order submission. */
body.fxce-premium-checkout.fxce-checkout-layout-v2 {
	--fxp-canvas: #f7f5f2;
	--fxp-surface: #ffffff;
	--fxp-text: #171717;
	--fxp-muted: #676767;
	--fxp-border: #dedbd6;
	--fxp-soft: #f8f7f5;
	--fxp-success: #087a55;
	--fxp-success-soft: #f0faf5;
	--fxp-radius: 16px;
	background: var(--fxp-canvas) !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header,
body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
	width: min(1280px, calc(100% - 48px)) !important;
	max-width: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header {
	margin: 28px auto 12px !important;
	padding: 0 !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header h1 {
	font-size: clamp(28px, 3vw, 36px) !important;
	font-weight: 790 !important;
	letter-spacing: -.035em !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header__copy > span {
	margin-top: 8px;
	margin-bottom: 0;
	color: var(--fxp-muted);
	font-size: 12px;
	letter-spacing: 0;
	text-transform: none;
}

body.fxce-premium-checkout [data-fxce-native-coupon="1"] {
	display: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
	margin: 0 auto 84px !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1.22fr) minmax(400px, .9fr) !important;
	align-items: start !important;
	gap: clamp(24px, 3.2vw, 44px) !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #customer_details {
	grid-column: 1 !important;
	grid-row: 1 !important;
	width: 100% !important;
	display: grid !important;
	gap: 18px !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 #customer_details :is(.col-1, .col-2) {
	width: 100% !important;
	margin: 0 !important;
	display: grid !important;
	float: none !important;
	gap: 18px !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review_heading {
	display: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review {
	grid-column: 2 !important;
	grid-row: 1 !important;
	position: sticky !important;
	top: 22px !important;
	width: 100% !important;
	max-height: none !important;
	margin: 0 !important;
	padding: 28px 26px 24px !important;
	overflow: visible !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 18px !important;
	background: var(--fxp-surface) !important;
	box-shadow: 0 12px 32px rgba(27, 24, 21, .055) !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"],
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-student-benefit-card,
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products,
body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="notes"] {
	width: 100% !important;
	margin: 0 !important;
	padding: 24px 26px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 16px !important;
	background: var(--fxp-surface) !important;
	box-shadow: 0 8px 24px rgba(27, 24, 21, .035) !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"]::before {
	content: none !important;
	display: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"] > h3 {
	min-height: 26px !important;
	margin: 0 0 18px !important;
	padding: 0 0 0 34px !important;
	font-size: 18px !important;
	font-weight: 780 !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"] > h3::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	margin-left: -34px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card {
	min-height: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__icon {
	display: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__content {
	display: grid !important;
	gap: 5px !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__label {
	color: var(--fxp-text) !important;
	font-size: 14px !important;
	font-weight: 780 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__content strong {
	color: var(--fxp-muted) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__content > span:not(.fxce-address-card__label),
body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card__content small {
	color: var(--fxp-muted) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
}

.fxce-address-card__actions {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 8px;
}

body.fxce-premium-checkout .fxce-address-card__actions button {
	min-width: 90px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--fxp-text);
	border-radius: 10px;
	background: var(--fxp-surface);
	color: var(--fxp-text);
	font-size: 12px;
	font-weight: 740;
}

body.fxce-premium-checkout .fxce-address-card__actions [data-fxce-edit-current-address] {
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-decoration: underline;
}

.fxce-student-benefit-card {
	border-color: #b8d9c9 !important;
	background: linear-gradient(135deg, #ffffff 0%, #fbfffd 100%) !important;
}

.fxce-student-benefit-card > header {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
}

.fxce-student-benefit-card__icon {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	color: var(--fxp-text);
}

.fxce-student-benefit-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fxce-student-benefit-card__title {
	display: grid;
	gap: 4px;
}

.fxce-student-benefit-card__title strong {
	color: var(--fxp-text);
	font-size: 17px;
	font-weight: 790;
}

.fxce-student-benefit-card__title small {
	color: var(--fxp-muted);
	font-size: 12px;
	line-height: 1.45;
}

.fxce-student-benefit-choice {
	grid-column: 1 / -1;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.fxce-student-benefit-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.fxce-student-benefit-choice > span {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 1px solid #9daaa4;
	border-radius: 6px;
	background: #fff;
	color: transparent;
}

.fxce-student-benefit-choice > span svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
}

.fxce-student-benefit-choice input:checked + span {
	border-color: var(--fxp-success);
	background: var(--fxp-success);
	color: #fff;
}

.fxce-student-benefit-choice b {
	color: var(--fxp-text);
	font-size: 14px;
	font-weight: 720;
}

.fxce-student-minimum-progress,
.fxce-student-progress {
	margin-top: 15px;
	padding: 13px 14px;
	border: 1px solid #d7e8df;
	border-radius: 12px;
	background: #f7fcf9;
}

.fxce-student-minimum-progress > div,
.fxce-student-progress__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	color: var(--fxp-muted);
	font-size: 10.5px;
	line-height: 1.4;
}

.fxce-student-minimum-progress > div b,
.fxce-student-progress__head > b {
	flex: 0 0 auto;
	color: var(--fxp-text);
	font-size: 10.5px;
	white-space: nowrap;
}

.fxce-student-minimum-progress > i,
.fxce-student-progress__track {
	display: block;
	height: 6px;
	margin-top: 9px;
	overflow: hidden;
	border-radius: 999px;
	background: #dfeae4;
}

.fxce-student-minimum-progress > i > span,
.fxce-student-progress__track > i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #159669, #3ecf8e);
	transition: width .2s ease;
}

.fxce-student-minimum-progress.is-ready,
.fxce-student-progress.is-ready {
	border-color: #a8d8c0;
	background: #effaf4;
}

.fxce-student-progress {
	margin: 14px 0 18px;
}

.fxce-student-progress__head > span {
	display: grid;
	gap: 2px;
}

.fxce-student-progress__head strong {
	color: var(--fxp-text);
	font-size: 12px;
}

.fxce-student-progress p {
	margin: 8px 0 0;
	color: var(--fxp-muted);
	font-size: 10.5px;
	line-height: 1.45;
}

.fxce-student-benefit-card__content {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid #d9ebe2;
}

.fxce-student-benefit-card__content[hidden] { display: none !important; }

.fxce-student-benefit-email {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 7px 10px;
}

.fxce-student-benefit-email > span:first-child {
	grid-column: 1 / -1;
	color: var(--fxp-text);
	font-size: 11px;
	font-weight: 720;
}

.fxce-student-benefit-email .fxce-email-verification {
	margin: 0;
}

.fxce-student-benefit-card.is-verified .fxce-student-benefit-email .fxce-email-verification {
	display: none !important;
}

.fxce-student-benefit-card.is-verified .fxce-student-benefit-email input {
	border-color: #9fcdb7 !important;
	background: #f5fcf8 !important;
	color: #174b38 !important;
}

.fxce-student-benefit-result {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.fxce-student-benefit-decision {
	color: var(--fxp-muted);
	font-size: 11px;
	line-height: 1.4;
}

.fxce-student-benefit-decision.is-error { color: var(--fxp-danger); }

.fxce-student-benefit-badge {
	flex: 0 0 auto;
	padding: 5px 9px;
	border-radius: 999px;
	background: #e0f3e9;
	color: var(--fxp-success);
	font-size: 10px;
	font-weight: 780;
}

.fxce-student-benefit-saving {
	margin-top: 10px;
	display: block;
	color: var(--fxp-success);
	font-size: 12px;
}

body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products {
	padding-bottom: 20px !important;
	border-bottom: 1px solid var(--fxp-border) !important;
}

body.fxce-premium-checkout .fxce-checkout-products__heading {
	margin-bottom: 12px;
	justify-content: flex-start;
}

body.fxce-premium-checkout .fxce-checkout-products__heading::before {
	content: "";
	width: 20px;
	height: 20px;
	background: var(--fxp-text);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12l1 12H5L6 8Z'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12l1 12H5L6 8Z'/%3E%3Cpath d='M9 9V7a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.fxce-premium-checkout .fxce-checkout-products__heading strong { font-size: 16px; }
body.fxce-premium-checkout .fxce-checkout-products__heading small {
	padding: 0;
	background: transparent;
	color: var(--fxp-muted);
}

body.fxce-premium-checkout .fxce-checkout-products__list {
	display: grid !important;
	gap: 0 !important;
	padding: 0 !important;
}

body.fxce-premium-checkout .fxce-checkout-products__list article {
	padding: 10px 0;
	border-top: 1px solid #eeeae5;
}

body.fxce-premium-checkout .fxce-checkout-product__media {
	width: 64px;
	height: 76px;
	border-radius: 9px;
}

body.fxce-premium-checkout .fxce-desktop-view-order {
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #a2322b;
	font-size: 12px;
	font-weight: 720;
}

body.fxce-premium-checkout .fxce-desktop-view-order svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	vertical-align: middle;
}

body.fxce-premium-checkout [data-fxce-checkout-section="notes"] {
	padding: 0 14px !important;
}

body.fxce-premium-checkout .fxce-checkout-notes-toggle {
	min-height: 64px !important;
}

body.fxce-premium-checkout .fxce-checkout-notes-toggle strong { font-size: 14px; }

body.fxce-premium-checkout .fxce-order-summary-heading {
	margin: 0 0 14px;
	color: var(--fxp-text);
	font-size: 23px;
	font-weight: 790;
	letter-spacing: -.025em;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table {
	margin: 0 !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table :is(th, td) {
	padding: 7px 0 !important;
	border-bottom: 0 !important;
	color: var(--fxp-text) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.cart-discount :is(th, td),
body.fxce-premium-checkout .woocommerce-checkout-review-order-table tr.fee :is(th, td) {
	color: var(--fxp-success) !important;
	font-weight: 750 !important;
}

body.fxce-premium-checkout .woocommerce-checkout-review-order-table .order-total :is(th, td) {
	padding-top: 12px !important;
	border-top: 1px solid var(--fxp-border) !important;
	font-size: 20px !important;
	font-weight: 820 !important;
}

.fxce-checkout-coupon {
	margin: 12px 0 18px;
	border: 1px solid var(--fxp-border);
	border-radius: 11px;
	background: var(--fxp-surface);
}

.fxce-checkout-coupon summary {
	min-height: 46px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #b83e34;
	cursor: pointer;
	list-style: none;
	font-size: 12px;
	font-weight: 720;
}

.fxce-checkout-coupon summary::-webkit-details-marker { display: none; }
.fxce-checkout-coupon summary svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	transform: rotate(90deg);
	transition: transform .16s ease;
}
.fxce-checkout-coupon[open] summary svg { transform: rotate(-90deg); }

.fxce-checkout-coupon__form {
	padding: 0 10px 10px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.fxce-checkout-coupon__form input {
	min-width: 0;
	min-height: 40px;
	padding: 0 11px;
	border: 1px solid var(--fxp-border);
	border-radius: 9px;
}

.fxce-checkout-coupon__form button {
	min-height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 9px;
	background: var(--fxp-text);
	color: #fff;
	font-size: 11px;
	font-weight: 750;
}

.fxce-checkout-coupon > small {
	display: block;
	padding: 0 10px 8px;
	color: var(--fxp-danger);
	font-size: 10px;
}

body.fxce-premium-checkout .fxce-checkout-delivery-estimate,
body.fxce-premium-checkout .flashyn-checkout-delivery {
	margin: 0 0 12px !important;
	padding: 14px !important;
	border: 1px solid #9ed8ba !important;
	border-radius: 13px !important;
	background: var(--fxp-success-soft) !important;
	color: var(--fxp-success) !important;
}

body.fxce-premium-checkout .fxce-payment-heading {
	margin: 12px 0 8px;
	padding-top: 12px;
	border-top: 1px solid var(--fxp-border);
	color: var(--fxp-text);
	font-size: 17px;
	font-weight: 790;
}

body.fxce-premium-checkout #payment {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

body.fxce-premium-checkout #payment .payment_methods {
	padding: 0 !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 12px !important;
	background: var(--fxp-surface) !important;
}

body.fxce-premium-checkout #payment .wc_payment_method {
	padding: 16px !important;
}

body.fxce-premium-checkout #payment .payment_box {
	padding: 8px 32px 0 !important;
	background: transparent !important;
}

body.fxce-premium-checkout #payment .place-order {
	display: block !important;
	margin-top: 14px !important;
	padding-top: 14px !important;
}

body.fxce-premium-checkout #place_order {
	min-height: 60px !important;
	border-radius: 13px !important;
	background: #161616 !important;
	color: #fff !important;
	font-size: 18px !important;
}

body.fxce-premium-checkout .fxce-checkout-assurance {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--fxp-border);
}

/* Address selector and editor share one overlay. */
.fxce-address-dialog[hidden] { display: none !important; }
.fxce-address-dialog {
	position: fixed;
	inset: 0;
	z-index: 10090;
	display: grid;
	place-items: center;
	padding: 20px;
}
.fxce-address-dialog__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(18, 16, 14, .45);
	backdrop-filter: blur(2px);
}
.fxce-address-dialog__panel {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	max-height: min(84vh, 780px);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid #d7d3cd;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(21, 18, 15, .22);
}
.fxce-address-dialog__panel > header {
	min-height: 64px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--fxp-border);
}
.fxce-address-dialog__panel > header strong { font-size: 18px; }
.fxce-address-dialog .fxce-dialog-close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #111;
}
.fxce-address-dialog .fxce-dialog-close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}
.fxce-address-dialog__rows {
	max-height: min(56vh, 510px);
	padding: 14px 20px;
	display: grid;
	gap: 10px;
	overflow: auto;
}
.fxce-address-dialog__address {
	position: relative;
	padding: 14px;
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) auto;
	align-items: start;
	gap: 12px;
	border: 1px solid var(--fxp-border);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}
.fxce-address-dialog__address.is-selected {
	border-color: #1d1d1d;
	box-shadow: 0 0 0 1px #1d1d1d;
}
.fxce-address-dialog__address input { margin-top: 3px; accent-color: #111; }
.fxce-address-dialog__address > span { min-width: 0; display: grid; gap: 4px; }
.fxce-address-dialog__address b { font-size: 14px; }
.fxce-address-dialog__address small,
.fxce-address-dialog__address em { color: var(--fxp-muted); font-size: 12px; font-style: normal; line-height: 1.45; }
.fxce-address-dialog__address button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--fxp-text);
	font-size: 11px;
	text-decoration: underline;
}
.fxce-address-dialog footer {
	padding: 14px 20px 18px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px;
	border-top: 1px solid var(--fxp-border);
}
.fxce-address-dialog footer button {
	min-height: 46px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 760;
}
.fxce-address-dialog__secondary { border: 1px solid var(--fxp-text); background: #fff; color: var(--fxp-text); }
.fxce-address-dialog__primary { border: 1px solid #111; background: #111; color: #fff; }
.fxce-address-dialog__editor {
	max-height: min(60vh, 560px);
	padding: 18px 20px;
	overflow: auto;
}
.fxce-address-dialog .fxce-address-editor__actions { display: none !important; }

/* Purpose-specific communication preferences — compact, calm and auditable. */
.fx-communication-preferences {
	min-width: 0;
	margin: 12px 0;
	padding: 12px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: linear-gradient(145deg, #fff, #f8fafc);
	box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
}
.fx-communication-preferences label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.fx-communication-preferences label strong { display: block; color: #0f172a; line-height: 1.35; }
.fx-communication-preferences label small { display: block; margin-top: 3px; color: #64748b; line-height: 1.45; }
.fx-communication-preferences label {
	padding: 9px 0;
	border-bottom: 1px solid #eef2f7;
	cursor: pointer;
}
.fx-communication-preferences label:last-of-type { border-bottom: 0; }
.fx-communication-preferences input[type=checkbox] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: #111827;
}
.fx-communication-preferences__warning {
	margin: 8px 0 0;
	padding: 10px 12px;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	background: #fff7ed;
	color: #9a3412;
	font-size: 12px;
	line-height: 1.45;
}
.fx-communication-preferences__warning[hidden] { display: none !important; }
.fxce-address-dialog__status {
	display: block;
	min-height: 18px;
	padding: 0 20px 8px;
	color: var(--fxp-danger);
	font-size: 11px;
}
body.fxce-address-dialog-open { overflow: hidden !important; }

@media (max-width: 1023px) {
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		grid-template-columns: minmax(0, 1fr) !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #customer_details,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review {
		grid-column: 1 !important;
		position: static !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review { grid-row: 2 !important; }
}

@media (max-width: 767px) {
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		width: calc(100% - 20px) !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-page-header {
		margin-top: 14px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		margin-bottom: 28px !important;
		gap: 12px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="address"],
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-student-benefit-card,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-checkout-products,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 [data-fxce-checkout-section="notes"],
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review {
		padding: 16px !important;
		border-radius: 14px !important;
		box-shadow: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 .fxce-address-card {
		grid-template-columns: minmax(0, 1fr) !important;
	}
	.fxce-address-card__actions {
		grid-template-columns: auto auto;
		justify-content: start;
		justify-items: start;
	}
	body.fxce-premium-checkout .fxce-address-card__actions [data-fxce-edit-current-address] { min-width: 54px; }
	.fxce-student-benefit-email { grid-template-columns: minmax(0, 1fr); }
	.fxce-student-benefit-email > span:first-child { grid-column: 1; }
	.fxce-student-benefit-email .fxce-email-verification { margin-top: 4px; }
	body.fxce-premium-checkout .fxce-mobile-order-card { display: grid; }
	body.fxce-premium-checkout .fxce-checkout-products__desktop { display: none; }
	body.fxce-premium-checkout #place_order { display: none !important; }
	.fxce-address-dialog {
		place-items: end center;
		padding: 0;
	}
	.fxce-address-dialog__panel {
		width: 100%;
		max-height: 92vh;
		border-radius: 20px 20px 0 0;
	}
	.fxce-address-dialog__rows { max-height: 60vh; padding: 12px; }
	.fxce-address-dialog__address { grid-template-columns: 20px minmax(0, 1fr); }
	.fxce-address-dialog__address button { grid-column: 2; justify-self: start; }
	.fxce-address-dialog__editor { max-height: 66vh; padding: 14px; }
	.fxce-address-dialog footer { padding: 12px 12px calc(12px + env(safe-area-inset-bottom)); }
	.fxce-address-dialog .fxce-address-editor__grid { grid-template-columns: 1fr !important; }
	.fxce-address-dialog .fxce-owned-field { grid-column: 1 !important; }
}

/* v8.2.2 — wider desktop cart and hard-aligned checkout columns. */
@media (min-width: 1180px) {
	body.fxce-premium-cart .woocommerce {
		width: min(1440px, calc(100% - 32px)) !important;
	}
	body.fxce-premium-cart [data-fxce-cart-shell="1"] {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 430px) !important;
		gap: 20px !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #customer_details,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review {
		align-self: start !important;
		margin-top: 0 !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #customer_details > :first-child,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #order_review > :first-child {
		margin-top: 0 !important;
	}
}

@media (max-width: 767px) {
	.fxce-student-minimum-progress > div,
	.fxce-student-progress__head {
		flex-direction: column;
		gap: 4px;
	}
}

/* v8.2.3 — one authoritative desktop checkout top edge. */
@media (min-width: 1024px) {
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout {
		align-items: start !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #customer_details,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #order_review {
		align-self: start !important;
		margin-top: 0 !important;
		transform: none !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 form.checkout > #customer_details {
		padding-top: 0 !important;
	}
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #customer_details > :first-child,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #customer_details > :first-child > :first-child,
	body.fxce-premium-checkout.fxce-checkout-layout-v2 #order_review > :first-child {
		margin-top: 0 !important;
	}
}
.fxce-cart-login-nudge{display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:12px;align-items:center;margin:14px 14px 10px;padding:13px 14px;border:1px solid #dbeafe;border-radius:15px;background:linear-gradient(135deg,#f8fbff,#fff);color:#0f172a}.fxce-cart-login-nudge>span{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#eaf2ff;color:#2563eb}.fxce-cart-login-nudge svg{width:19px;fill:none;stroke:currentColor;stroke-width:1.8}.fxce-cart-login-nudge strong,.fxce-cart-login-nudge small{display:block}.fxce-cart-login-nudge small{margin-top:3px;color:#64748b;line-height:1.4}.fxce-cart-login-nudge button{min-height:38px;padding:0 15px;border:0;border-radius:999px;background:#0f172a;color:#fff;font-weight:800;cursor:pointer}@media(max-width:700px){.fxce-cart-login-nudge{grid-template-columns:36px minmax(0,1fr)}.fxce-cart-login-nudge button{grid-column:1/-1;width:100%}}

/* v8.2.7 — canonical synchronized cart surfaces and shared benefit ownership. */
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-card {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: none !important;
	margin-inline: 0 !important;
	padding: 24px 26px !important;
	border: 1px solid #b8d9c9 !important;
	border-radius: 16px !important;
	background: linear-gradient(135deg,#fff 0%,#fbfffd 100%) !important;
	box-shadow: 0 8px 24px rgba(27,24,21,.035) !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-card__icon {
	width: 32px !important;
	height: 32px !important;
	border-radius: 10px !important;
	background: color-mix(in srgb,var(--fxp-primary) 10%,#fff) !important;
	color: var(--fxp-primary) !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-card__icon svg {
	width: 21px !important;
	height: 21px !important;
}
body.fxce-premium-cart [data-fxce-cart-main="1"] > .fxce-cart-student-benefit {
	align-self: stretch !important;
	width: calc(100% - 48px) !important;
	margin: 18px 24px 0 !important;
}
body.fxce-premium-cart .cart-collaterals .cart_totals {
	display: block !important;
	padding: 16px 18px !important;
}
body.fxce-premium-cart .cart_totals > h2 { margin: 0 0 10px !important; }
body.fxce-premium-cart .cart_totals table,
body.fxce-premium-cart .cart_totals tbody {
	display: block !important;
	width: 100% !important;
	margin: 0 0 8px !important;
}
body.fxce-premium-cart .cart_totals tr {
	display: grid !important;
	grid-template-columns: minmax(0,1fr) auto !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	padding: 6px 0 !important;
	border: 0 !important;
}
body.fxce-premium-cart .cart_totals tr > :is(th,td) {
	display: block !important;
	width: auto !important;
	padding: 0 !important;
	margin: 0 !important;
}
body.fxce-premium-cart .cart_totals tr > th { text-align: left !important; }
body.fxce-premium-cart .cart_totals tr > td {
	text-align: right !important;
	justify-self: end !important;
}
body.fxce-premium-cart .cart_totals .fxce-discounts-heading {
	grid-template-columns: 1fr !important;
	padding: 9px 0 3px !important;
}
body.fxce-premium-cart .cart_totals .fxce-discounts-heading > th {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	text-align: left !important;
	padding: 0 !important;
}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"],
body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals,.shipping) {
	grid-template-columns: minmax(72px,.34fr) minmax(0,.66fr) !important;
	margin: 7px 0 !important;
	padding: 12px 14px !important;
	border-radius: 12px !important;
	background: #fff !important;
	box-sizing: border-box !important;
}
body.fxce-premium-cart .cart_totals [data-fxce-shipping-section="1"] td,
body.fxce-premium-cart .cart_totals :is(.woocommerce-shipping-totals,.shipping) td {
	min-width: 0 !important;
	padding-inline: 4px !important;
}
body.fxce-premium-cart .cart_totals .fxce-total-savings,
body.fxce-premium-cart .cart_totals .order-total {
	margin-top: 5px !important;
	padding-top: 10px !important;
	border-top: 1px solid var(--fxp-border) !important;
}
body.fxce-premium-cart .wc-proceed-to-checkout {
	margin: 8px 0 0 !important;
	padding: 0 !important;
}
body.fxce-premium-cart .wc-proceed-to-checkout .checkout-button { margin: 0 !important; }
/* Cart mutations keep the existing surface readable and interactive. Only the
   initiating row/control receives a local pending state. */
.woocommerce-cart-form__cart-item.is-fxce-removing {
	opacity: .64;
	transition: opacity .12s ease;
}
.woocommerce-cart-form a.remove[data-fxce-remove-pending="1"] {
	pointer-events: none !important;
	cursor: progress !important;
}
.woocommerce-cart-form a.remove[data-fxce-remove-pending="1"]::before {
	animation: fxce-cart-remove-pending .7s linear infinite;
}
@keyframes fxce-cart-remove-pending { to { transform: rotate(360deg); } }

body.fxce-premium-cart .fxce-wallet-inline-row,
body.woocommerce-cart .fxce-wallet-inline-row,
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] {
	width: 100% !important;
	max-width: none !important;
	float: none !important;
	clear: both !important;
	box-sizing: border-box !important;
}
body.fxce-premium-cart .cart_totals tr.fxce-wallet-inline-row,
body.woocommerce-cart .cart_totals tr.fxce-wallet-inline-row {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	justify-items: stretch !important;
}
body.fxce-premium-cart .cart_totals tr.fxce-wallet-inline-row > td,
body.woocommerce-cart .cart_totals tr.fxce-wallet-inline-row > td {
	display: block !important;
	grid-column: 1 / -1 !important;
	justify-self: stretch !important;
	width: 100% !important;
	padding-inline: 0 !important;
	text-align: left !important;
	box-sizing: border-box !important;
}
body.fxce-premium-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"],
body.woocommerce-cart .flashyn-wallet-enforcement[data-fxce-wallet-inline="1"] {
	display: block !important;
}
.fxce-cart-sync-notice {
	margin: 0 0 12px !important;
	padding: 10px 12px !important;
	border: 1px solid #f0c7a7 !important;
	border-radius: 10px !important;
	background: #fff8f1 !important;
	color: #8a3d12 !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
}
@media (min-width:1180px) {
	body.fxce-premium-cart .woocommerce,
	body.fxce-premium-cart .fxce-cart-page-header {
		width: min(1560px,calc(100% - 24px)) !important;
	}
	body.fxce-premium-cart [data-fxce-cart-shell="1"] {
		grid-template-columns: minmax(0,1fr) minmax(410px,440px) !important;
		gap: 22px !important;
	}
	body.fxce-premium-cart [data-fxce-cart-main="1"] > .woocommerce-cart-form {
		padding-inline: 30px !important;
	}
	body.fxce-premium-cart [data-fxce-cart-main="1"] > .fxce-cart-student-benefit {
		width: calc(100% - 60px) !important;
		margin-inline: 30px !important;
	}
}
@media (max-width:767px) {
	body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-card { padding: 18px 16px !important; }
	body.fxce-premium-cart [data-fxce-cart-main="1"] > .fxce-cart-student-benefit {
		width: 100% !important;
		margin: 14px 0 0 !important;
	}
	body.fxce-premium-cart .cart-collaterals .cart_totals { padding: 14px !important; }
}

/* v8.2.9 — one Student Benefit component and deterministic mobile stages. */
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email {
	display: grid !important;
	grid-template-columns: minmax(0,1fr) minmax(150px,180px) !important;
	align-items: start !important;
	gap: 7px 12px !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email > span:first-child {
	grid-column: 1 / -1 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email > .fxce-owned-field__control {
	grid-column: 1 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email > .fxce-email-verification {
	grid-column: 2 !important;
	width: 100% !important;
	margin: 0 !important;
	display: grid !important;
	grid-template-columns: minmax(0,1fr) !important;
	align-content: start !important;
	gap: 6px !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email input[type="email"],
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email [data-fxce-student-send] {
	box-sizing: border-box !important;
	width: 100% !important;
	min-height: 44px !important;
	height: 44px !important;
	margin: 0 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) [data-fxce-student-send],
body:is(.fxce-premium-cart,.fxce-premium-checkout) [data-fxce-student-resend] {
	padding: 0 13px !important;
	border: 1px solid var(--fxp-border) !important;
	border-radius: 10px !important;
	background: var(--fxp-surface) !important;
	color: var(--fxp-text) !important;
	font-size: 11px !important;
	font-weight: 760 !important;
	cursor: pointer !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is([data-fxce-student-send],[data-fxce-student-resend])[hidden] {
	display: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email .fxce-email-code-row {
	grid-column: 1 !important;
	width: 100% !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-verified-summary {
	margin-top: 14px !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 8px !important;
	color: var(--fxp-success) !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-verified-summary[hidden] {
	display: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-verified-summary svg {
	flex: 0 0 auto !important;
	width: 17px !important;
	height: 17px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2.2 !important;
}

@media (max-width:767px) {
	body.fxce-premium-checkout[data-fxce-checkout-step="1"] form.checkout > #order_review,
	body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #customer_details {
		display: none !important;
	}
	body.fxce-premium-checkout[data-fxce-checkout-step="1"] form.checkout > #customer_details,
	body.fxce-premium-checkout[data-fxce-checkout-step="2"] form.checkout > #order_review {
		display: grid !important;
		grid-column: 1 !important;
		grid-row: 1 !important;
		margin-top: 0 !important;
	}
	body.fxce-premium-checkout[data-fxce-checkout-step="2"] .fxce-order-summary-heading {
		display: block !important;
		order: -2 !important;
		margin: 0 0 12px !important;
		padding: 0 !important;
		font-size: 20px !important;
		line-height: 1.25 !important;
	}
	body.fxce-premium-checkout[data-fxce-checkout-step="2"] [data-fxce-order-products] {
		order: -1 !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email {
		grid-template-columns: minmax(0,1fr) !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-student-benefit-email > :is(.fxce-owned-field__control,.fxce-email-verification) {
		grid-column: 1 !important;
	}
	body.fxce-premium-cart .fxce-cart-card-heading[role="button"] {
		justify-content: space-between !important;
		gap: 12px !important;
		cursor: pointer !important;
	}
	body.fxce-premium-cart .fxce-cart-card-heading .fxce-cart-products-action {
		margin-left: auto !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 6px !important;
		color: var(--fxp-primary) !important;
		white-space: nowrap !important;
	}
	body.fxce-premium-cart .fxce-cart-card-heading .fxce-cart-products-action small {
		color: inherit !important;
		font-size: 11px !important;
		font-weight: 730 !important;
	}
	body.fxce-premium-cart .fxce-cart-card-heading .fxce-cart-products-action svg {
		width: 16px !important;
		height: 16px !important;
		fill: none !important;
		stroke: currentColor !important;
		stroke-width: 2 !important;
		transition: transform .18s ease !important;
	}
	body.fxce-premium-cart .fxce-cart-card-heading[data-fxce-cart-products-open="1"] .fxce-cart-products-action svg {
		transform: rotate(90deg) !important;
	}
	body.fxce-premium-cart [data-fxce-cart-main="1"] > .woocommerce-cart-form[hidden] {
		display: none !important;
	}
}

/* v8.2.14 — single checkout owner and native WooCommerce consent. */
body.fxce-checkout-auth-gated:not(.logged-in) .woocommerce {
	visibility: hidden !important;
	pointer-events: none !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .flashyn-identity-modal {
	visibility: visible !important;
	pointer-events: auto !important;
}
body.fxce-checkout-auth-gated:not(.logged-in) .fxce-checkout-auth-gate {
	display: none !important;
}

body.fxce-premium-checkout .fxce-checkout-consent {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
}
body.fxce-premium-checkout .fxce-checkout-consent label[data-fxce-native-consent="1"] {
	display: flex !important;
	flex-flow: row nowrap !important;
	align-items: flex-start !important;
	gap: 10px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 2px 0 !important;
	color: var(--fxp-text, var(--fxce-text, inherit)) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input#terms.fxce-consent-native,
body.fxce-premium-checkout .fxce-checkout-consent input[name="terms"].fxce-consent-native {
	position: static !important;
	display: inline-block !important;
	appearance: auto !important;
	-webkit-appearance: checkbox !important;
	flex: 0 0 20px !important;
	inline-size: 20px !important;
	block-size: 20px !important;
	min-inline-size: 20px !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;
	border: initial !important;
	border-radius: 4px !important;
	background: initial !important;
	box-shadow: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	clip: auto !important;
	clip-path: none !important;
	transform: none !important;
	pointer-events: auto !important;
	accent-color: var(--fxp-primary, var(--fxce-button-bg, var(--fxce-primary, #111))) !important;
	cursor: pointer !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input#terms.fxce-consent-native::before,
body.fxce-premium-checkout .fxce-checkout-consent input[name="terms"].fxce-consent-native::before {
	display: none !important;
	content: none !important;
}
body.fxce-premium-checkout .fxce-checkout-consent input.fxce-consent-native:focus-visible {
	outline: 2px solid var(--fxp-primary, var(--fxce-primary, #111)) !important;
	outline-offset: 3px !important;
}
body.fxce-premium-checkout .fxce-checkout-consent [data-fxce-consent-row="1"],
body.fxce-premium-checkout .fxce-checkout-consent .fxce-consent-box {
	display: none !important;
}

body.fxce-premium-checkout .woocommerce-NoticeGroup-checkout {
	box-sizing: border-box !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit !important;
}
body.fxce-premium-checkout .woocommerce-NoticeGroup-checkout[data-fxce-payment-notice="terms"] {
	margin: 8px 0 0 !important;
}
body.fxce-premium-checkout .woocommerce-NoticeGroup-checkout[data-fxce-payment-notice="terms"] > .woocommerce-error,
body.fxce-premium-checkout .woocommerce-NoticeGroup-checkout[data-fxce-payment-notice="terms"] .woocommerce-error {
	box-sizing: border-box !important;
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 10px 12px !important;
	border: 1px solid color-mix(in srgb, var(--fxp-danger, #b4233f) 35%, transparent) !important;
	border-radius: 10px !important;
	background: color-mix(in srgb, var(--fxp-danger, #b4233f) 7%, var(--fxp-surface, #fff)) !important;
	color: var(--fxp-danger, #8f1d36) !important;
	font-size: 12px !important;
	line-height: 1.45 !important;
	list-style-position: inside !important;
}

@media (max-width: 767px) {
	body.flashyn-mobile-theme-active.fxce-premium-checkout {
		--fxp-canvas: var(--fxce-canvas) !important;
		--fxp-surface: var(--fxce-surface) !important;
		--fxp-text: var(--fxce-text) !important;
		--fxp-muted: var(--fxce-muted) !important;
		--fxp-border: var(--fxce-border) !important;
		--fxp-primary: var(--fxce-button-bg, var(--fxce-primary)) !important;
		--fxp-primary-text: var(--fxce-button-text) !important;
	}
	body.flashyn-mobile-theme-active.fxce-premium-checkout,
	body.flashyn-mobile-theme-active.fxce-premium-checkout .woocommerce {
		background: var(--fxce-canvas) !important;
		color: var(--fxce-text) !important;
	}
	body.flashyn-mobile-theme-active.fxce-premium-checkout :is(
		[data-fxce-checkout-section="address"],
		.fxce-student-benefit-card,
		.fxce-checkout-products,
		[data-fxce-checkout-section="notes"],
		form.checkout > #order_review,
		#payment .wc_payment_method
	) {
		background: var(--fxce-surface) !important;
		border-color: var(--fxce-border) !important;
	}
}

/* Server-rendered WooCommerce shipping truth marker. It travels with each
   replaceable totals table and is intentionally never visual. */
body.fxce-premium-cart tr.fxce-shipping-state-bridge,
body.fxce-premium-checkout tr.fxce-shipping-state-bridge {
	display: none !important;
}

/* v8.11.31 — one idempotent accordion contract for Delivery and Wallet. */
body:is(.fxce-premium-cart,.fxce-premium-checkout) tr[data-fxce-shipping-section="1"] > th,
body.fxce-premium-checkout tr.shipping > th,
body.fxce-premium-checkout tr.woocommerce-shipping-totals > th {
	display: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) tr[data-fxce-shipping-section="1"] > td,
body.fxce-premium-checkout tr.shipping > td,
body.fxce-premium-checkout tr.woocommerce-shipping-totals > td,
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-wallet-inline-row > td {
	display: table-cell !important;
	width: 100% !important;
	padding: 7px 0 !important;
	text-align: left !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-summary-disclosure,
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-wallet-inline-row .flashyn-wallet-enforcement {
	box-sizing: border-box !important;
	display: block !important;
	width: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--fxp-border, #e2e8f0) !important;
	border-radius: 14px !important;
	background: var(--fxp-surface, #fff) !important;
	overflow: hidden !important;
	text-align: left !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure,.flashyn-wallet-enforcement) > summary {
	box-sizing: border-box !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto 20px !important;
	gap: 10px !important;
	align-items: center !important;
	width: 100% !important;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 12px 14px !important;
	border: 0 !important;
	background: transparent !important;
	list-style: none !important;
	cursor: pointer !important;
	text-align: left !important;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure,.flashyn-wallet-enforcement) > summary::-webkit-details-marker {
	display: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .flashyn-wallet-enforcement > summary {
	grid-template-columns: minmax(0, 1fr) 20px !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-disclosure-title,.flashyn-wallet-summary-copy) {
	min-width: 0 !important;
	text-align: left !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-disclosure-title {
	color: var(--fxp-text, #0f172a) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-disclosure-value {
	color: var(--fxp-text, #0f172a) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: right !important;
	white-space: normal !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-disclosure-icon,.flashyn-disclosure-chevron) {
	display: block !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	color: var(--fxp-muted, #64748b) !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-disclosure-icon svg,.flashyn-disclosure-chevron) {
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
	transition: transform .1s linear !important;
	transform-origin: center !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure,.flashyn-wallet-enforcement)[open] :is(.fxce-disclosure-icon svg,.flashyn-disclosure-chevron) {
	transform: rotate(90deg) !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure,.flashyn-wallet-enforcement):not([open]) > :is(.fxce-summary-disclosure__body,.flashyn-wallet-enforcement-body) {
	display: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure__body,.flashyn-wallet-enforcement-body) {
	box-sizing: border-box !important;
	display: block !important;
	margin: 0 !important;
	padding: 11px 14px 13px !important;
	border-top: 1px solid var(--fxp-border, #e2e8f0) !important;
	background: transparent !important;
	color: var(--fxp-muted, #64748b) !important;
	font-size: 12px !important;
	line-height: 1.5 !important;
	text-align: left !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-summary-disclosure__body ul {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-summary-disclosure__body .woocommerce-shipping-destination,
body:is(.fxce-premium-cart,.fxce-premium-checkout) .fxce-delivery-address {
	margin: 8px 0 0 !important;
	color: var(--fxp-muted, #64748b) !important;
	font-size: 12px !important;
	line-height: 1.5 !important;
	text-align: left !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .flashyn-wallet-summary-copy {
	display: grid !important;
	gap: 3px !important;
}
body:is(.fxce-premium-cart,.fxce-premium-checkout) .flashyn-wallet-summary-copy > :is(strong,span),
body.fxce-premium-checkout #order_review .flashyn-wallet-enforcement * {
	text-align: left !important;
}
@media (max-width: 767px) {
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(.fxce-summary-disclosure,.flashyn-wallet-enforcement) > summary {
		padding: 12px !important;
	}
}

/*
 * v8.11.39 — configurable compact mobile commerce presentation.
 *
 * This is density/typography scaling, never page zoom. Product thumbnails,
 * gallery media, logos and other images keep their authored dimensions.
 * Inputs stay at 16px and interactive controls stay at least 44px high.
 */
@media (max-width: 767px) {
	body:is(.fxce-premium-cart,.fxce-premium-checkout) {
		--fxce-mobile-commerce-body: max(14px, calc(15px * var(--fxce-mobile-commerce-scale, .8)));
		--fxce-mobile-commerce-small: max(12px, calc(13px * var(--fxce-mobile-commerce-scale, .8)));
		--fxce-mobile-commerce-heading: max(18px, calc(23px * var(--fxce-mobile-commerce-scale, .8)));
		--fxce-mobile-commerce-section: max(16px, calc(20px * var(--fxce-mobile-commerce-scale, .8)));
		--fxce-mobile-commerce-space: max(12px, calc(16px * var(--fxce-mobile-commerce-scale, .8)));
		font-size: var(--fxce-mobile-commerce-body) !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		.woocommerce-cart-form,
		.cart-collaterals,
		form.checkout,
		#customer_details,
		#order_review,
		.fxce-address-dialog__panel,
		.fxce-order-sheet__panel
	) {
		font-size: var(--fxce-mobile-commerce-body) !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		h1,
		.entry-title,
		.page-title,
		.fxce-cart-card-heading strong,
		.fxce-checkout-header h1
	) {
		font-size: var(--fxce-mobile-commerce-heading) !important;
		font-weight: 650 !important;
		line-height: 1.2 !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		h2,
		h3,
		.woocommerce-billing-fields > h3,
		.fxce-address-heading,
		.fxce-order-products-heading,
		.fxce-payment-heading,
		.fxce-address-card__content strong,
		.fxce-mobile-order-card__heading strong
	) {
		font-size: var(--fxce-mobile-commerce-section) !important;
		font-weight: 650 !important;
		line-height: 1.25 !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		label,
		p,
		td,
		th,
		.product-name,
		.fxce-owned-field > span,
		.fxce-address-card__content > span,
		.fxce-address-card__content small
	) {
		font-size: var(--fxce-mobile-commerce-body) !important;
		line-height: 1.4 !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		small,
		.fxce-owned-field__status,
		.fxce-checkout-step small,
		.fxce-mobile-order-card__heading small
	) {
		font-size: var(--fxce-mobile-commerce-small) !important;
		line-height: 1.35 !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]):not([type="color"]):not([type="file"]),
		select,
		textarea
	) {
		min-height: 44px !important;
		font-size: 16px !important;
	}
	body:is(.fxce-premium-cart,.fxce-premium-checkout) :is(
		button,
		.button,
		a.button,
		input[type="button"],
		input[type="submit"]
	) {
		min-height: 44px;
		font-size: max(13px, calc(14px * var(--fxce-mobile-commerce-scale, .8))) !important;
		font-weight: 650 !important;
	}
	body.fxce-premium-checkout :is(
		[data-fxce-checkout-section="address"],
		.fxce-checkout-products,
		.fxce-checkout-assurance,
		.fxce-student-benefit,
		.fxce-address-dialog__editor
	) {
		padding: var(--fxce-mobile-commerce-space) !important;
	}
	body.fxce-premium-checkout .fxce-address-editor__grid {
		gap: var(--fxce-mobile-commerce-space) !important;
	}
	/* Compact sizing applies only to genuine actions. Pagination, inline policy
	   links and theme-only range controls retain their authored geometry. */
	body.fxce-premium-cart .fxce-cart-recommendation-dots button {
		display: block !important;
		width: 7px !important;
		height: 7px !important;
		min-width: 7px !important;
		min-height: 7px !important;
		padding: 0 !important;
		font-size: 0 !important;
		line-height: 0 !important;
	}
	body.fxce-premium-cart .fxce-cart-recommendation-dots button.is-active {
		width: 20px !important;
		min-width: 20px !important;
		height: 7px !important;
		min-height: 7px !important;
	}
	body.fxce-premium-checkout .fxce-policy-link {
		display: inline !important;
		width: auto !important;
		height: auto !important;
		min-width: 0 !important;
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		font-size: inherit !important;
		font-weight: 750 !important;
		line-height: inherit !important;
		vertical-align: baseline !important;
		white-space: nowrap !important;
	}
	body.fxce-premium-checkout form.checkout input[type="range"],
	body.fxce-premium-checkout form.checkout input[type="hidden"] {
		display: none !important;
		min-width: 0 !important;
		min-height: 0 !important;
		width: 0 !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
	}
}
