/*
 * Cart experience styles.
 * Fonts are injected from PHP only when the local files exist.
 */

.woocommerce .freyja-cart {
	--freyja-cart-bg: #fff8f5;
	--freyja-cart-surface: #fffaf7;
	--freyja-cart-surface-soft: #fff3ea;
	--freyja-cart-surface-strong: #ffe3cd;
	--freyja-cart-surface-lowest: #ffffff;
	--freyja-cart-border: #d8c5b2;
	--freyja-cart-text: #2d1d0d;
	--freyja-cart-muted: #6b5a47;
	--freyja-cart-primary: #8a5a00;
	--freyja-cart-primary-strong: #6f4700;
	--freyja-cart-secondary: #886600;
	--freyja-cart-focus: #1b6b8f;
	--freyja-cart-shadow: 0 22px 48px rgba(81, 69, 53, 0.08);
	--freyja-cart-shadow-soft: 0 10px 24px rgba(81, 69, 53, 0.06);

	background: var(--freyja-cart-bg);
	color: var(--freyja-cart-text);
	font-family: "Be Vietnam Pro", sans-serif;
	margin: 0 auto;
	max-width: 1240px;
	padding: 36px 40px 56px;
	position: relative;
	width: 100%;
}

.woocommerce .freyja-cart *,
.woocommerce .freyja-cart *::before,
.woocommerce .freyja-cart *::after {
	box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
	.woocommerce .freyja-cart *,
	.woocommerce .freyja-cart *::before,
	.woocommerce .freyja-cart *::after {
		animation-duration: 0s !important;
		scroll-behavior: auto !important;
		transition-duration: 0s !important;
	}
}

.woocommerce .freyja-cart h1,
.woocommerce .freyja-cart h2,
.woocommerce .freyja-cart h3,
.woocommerce .freyja-cart h4 {
	font-family: "Plus Jakarta Sans", sans-serif;
}

.woocommerce .freyja-cart a:focus-visible,
.woocommerce .freyja-cart button:focus-visible,
.woocommerce .freyja-cart input:focus-visible,
.woocommerce .freyja-cart select:focus-visible,
.woocommerce .freyja-cart textarea:focus-visible {
	outline: 3px solid var(--freyja-cart-focus);
	outline-offset: 3px;
}

.woocommerce .freyja-cart .text-primary {
	color: var(--freyja-cart-primary);
}

.woocommerce .freyja-cart__hero {
	margin-bottom: 24px;
}

.woocommerce .freyja-cart__title {
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
}

.woocommerce .freyja-cart-kit__header p {
	color: var(--freyja-cart-muted);
	font-size: 1.05rem;
	margin: 0;
}

.woocommerce .freyja-cart__layout {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 1024px) {
	.woocommerce .freyja-cart__layout {
		align-items: flex-start;
		display: grid;
		gap: 24px;
		grid-template-columns: minmax(0, 1fr) minmax(280px, 300px);
	}

	.woocommerce .freyja-cart__main {
		min-width: 0;
	}

	.woocommerce .freyja-cart__sidebar {
		min-width: 0;
		width: 100%;
	}
}

.woocommerce .freyja-cart__main {
	background: var(--freyja-cart-surface-soft);
	border-radius: 28px;
	box-shadow: var(--freyja-cart-shadow);
	padding: 24px;
}

@media (min-width: 768px) {
	.woocommerce .freyja-cart__main {
		padding: 36px;
	}
}

.woocommerce .freyja-cart__progress {
	border-bottom: 2px dashed rgba(138, 90, 0, 0.18);
	margin-bottom: 28px;
	padding-bottom: 24px;
}

.woocommerce .freyja-cart__progress-copy {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.woocommerce .freyja-cart__progress h2 {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin: 0;
	text-transform: none;
}

.woocommerce .freyja-cart__progress p {
	color: var(--freyja-cart-muted);
	font-size: 0.9375rem;
	margin: 8px 0 0;
}

.woocommerce .freyja-cart__progress-icon {
	align-items: center;
	background: rgba(255, 227, 205, 0.8);
	border-radius: 999px;
	color: var(--freyja-cart-secondary);
	display: inline-flex;
	flex: 0 0 auto;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.woocommerce .freyja-cart__progress-track {
	background: rgba(138, 90, 0, 0.12);
	border-radius: 999px;
	height: 14px;
	overflow: hidden;
}

.woocommerce .freyja-cart__progress-bar {
	background: linear-gradient(90deg, #8a5a00 0%, #f0c46a 100%);
	border-radius: 999px;
	display: block;
	height: 100%;
	transition: width 0.35s ease;
}

.woocommerce .freyja-cart-icon {
	display: inline-block;
	fill: none;
	height: 1.15em;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	vertical-align: middle;
	width: 1.15em;
}

.woocommerce .freyja-cart-icon--shopping_bag path:first-child {
	fill: none;
}

.woocommerce .freyja-cart__table {
	border-collapse: separate;
	border-spacing: 0 18px;
	margin: 0;
	width: 100%;
}

.woocommerce .freyja-cart__table thead th {
	border: 0;
	color: var(--freyja-cart-muted);
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 0 12px 4px;
	text-transform: uppercase;
}

.woocommerce .freyja-cart__table thead th.product-remove,
.woocommerce .freyja-cart__table thead th.product-thumbnail {
	width: 1%;
}

.woocommerce .freyja-cart__table tbody td,
.woocommerce .freyja-cart__table tbody th {
	background: var(--freyja-cart-surface-lowest);
	border-color: var(--freyja-cart-border);
	border-style: solid;
	border-width: 1px 0 1px 0;
	padding: 20px 12px;
	vertical-align: middle;
}

.woocommerce .freyja-cart__table tbody td:first-child,
.woocommerce .freyja-cart__table tbody th:first-child {
	border-left-width: 1px;
	border-radius: 20px 0 0 20px;
}

.woocommerce .freyja-cart__table tbody td:last-child,
.woocommerce .freyja-cart__table tbody th:last-child {
	border-radius: 0 20px 20px 0;
	border-right-width: 1px;
}

.woocommerce .freyja-cart-item td.product-remove {
	padding-left: 18px;
	padding-right: 8px;
	width: 56px;
}

.woocommerce .freyja-cart-item .product-remove .remove {
	align-items: center;
	background: var(--freyja-cart-surface-strong);
	border-radius: 999px;
	box-shadow: var(--freyja-cart-shadow-soft);
	color: var(--freyja-cart-muted);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: 38px;
}

.woocommerce .freyja-cart-item .product-remove .remove:hover {
	background: #ffe0db;
	color: #a3261b;
	transform: translateY(-1px);
}

.woocommerce .freyja-cart-item__media {
	align-items: center;
	background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
	border: 1px solid rgba(216, 197, 178, 0.5);
	border-radius: 16px;
	display: inline-flex;
	height: 104px;
	justify-content: center;
	overflow: hidden;
	padding: 10px;
	width: 104px;
}

.woocommerce .freyja-cart-item__media a {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.woocommerce .freyja-cart-item__media img {
	background: #ffffff;
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.woocommerce .freyja-cart-item .product-name {
	min-width: 0;
	width: 100%;
}

.woocommerce .freyja-cart-item__summary {
	align-items: flex-start;
	display: block;
}

.woocommerce .freyja-cart-item__mobile-media {
	display: none;
}

.woocommerce .freyja-cart-item__details {
	min-width: 0;
}

.woocommerce .freyja-cart-item__name,
.woocommerce .freyja-cart-item__name a {
	color: var(--freyja-cart-text);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	hyphens: auto;
	overflow-wrap: break-word;
	word-break: normal;
	text-decoration: none;
}

.woocommerce .freyja-cart-item__meta,
.woocommerce .freyja-cart-item__meta dl {
	color: var(--freyja-cart-muted);
	font-size: 0.875rem;
	margin-top: 8px;
}

.woocommerce .freyja-cart-item__meta dl {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.woocommerce .freyja-cart-cell__label {
	color: var(--freyja-cart-muted);
	display: none;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.woocommerce .freyja-cart-cell__value,
.woocommerce .freyja-cart-item .product-price,
.woocommerce .freyja-cart-item .product-subtotal {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.woocommerce .freyja-cart-item .product-price,
.woocommerce .freyja-cart-item .product-subtotal {
	white-space: nowrap;
	width: 80px;
}

.woocommerce .freyja-cart-item .product-quantity {
	width: 128px;
}

.woocommerce .freyja-cart-item__quantity {
	align-items: center;
	display: inline-flex;
}

.woocommerce .freyja-cart-item .product-quantity .quantity {
	align-items: center;
	background: var(--freyja-cart-primary);
	border-radius: 12px;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.28);
	display: inline-flex;
	gap: 4px;
	padding: 4px;
}

.woocommerce .freyja-cart-item .product-quantity .qty {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #fff;
	font-weight: 700;
	margin: 0;
	min-height: 34px;
	padding: 0;
	text-align: center;
	width: 34px;
}

.woocommerce .freyja-cart-item .product-quantity .qty-btn {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 30px;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	width: 30px;
}

.woocommerce .freyja-cart-item .product-quantity .qty-btn:hover {
	background: rgba(255, 255, 255, 0.16);
}

.woocommerce .freyja-cart-item .product-quantity .qty-btn[disabled] {
	cursor: not-allowed;
	opacity: 0.45;
}

.woocommerce .freyja-cart__actions-row td.actions {
	background: var(--freyja-cart-surface);
	border-radius: 22px;
	border-width: 1px;
	padding: 22px;
}

.woocommerce .freyja-cart__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: space-between;
}

.woocommerce .freyja-cart__coupon {
	display: flex;
	flex: 1 1 320px;
	flex-wrap: wrap;
	gap: 10px;
}

.woocommerce .freyja-cart__coupon input {
	background: var(--freyja-cart-surface-lowest);
	border: 1px solid var(--freyja-cart-border);
	border-radius: 12px;
	color: var(--freyja-cart-text);
	flex: 1 1 220px;
	font-size: 0.9375rem;
	min-height: 48px;
	padding: 12px 14px;
}

.woocommerce .freyja-cart__action-buttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	justify-content: flex-end;
}

.woocommerce .freyja-cart .button,
.woocommerce .freyja-cart .checkout-button,
.woocommerce .freyja-cart .added_to_cart {
	align-items: center;
	background: var(--freyja-cart-primary);
	border: 0;
	border-radius: 14px;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22);
	color: #fff;
	display: inline-flex;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

.woocommerce .freyja-cart .button:hover,
.woocommerce .freyja-cart .checkout-button:hover,
.woocommerce .freyja-cart .added_to_cart:hover {
	background: var(--freyja-cart-primary-strong);
	color: #fff;
}

.woocommerce .freyja-cart .button:active,
.woocommerce .freyja-cart .checkout-button:active,
.woocommerce .freyja-cart .added_to_cart:active {
	transform: translateY(1px);
}

.woocommerce .freyja-cart .button[disabled],
.woocommerce .freyja-cart .button:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.woocommerce .freyja-cart__continue {
	color: var(--freyja-cart-primary);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.woocommerce .freyja-cart-totals__card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(216, 197, 178, 0.7);
	border-radius: 28px;
	box-shadow: var(--freyja-cart-shadow);
	margin-left: 0;
	max-width: 100%;
	padding: 28px;
	width: 100%;
}

@media (min-width: 1024px) {
	.woocommerce .freyja-cart-totals__card {
		position: sticky;
		top: calc(var(--freyja-header-height, 90px) + var(--wp-admin--admin-bar--height, 0px) + 16px);
	}
}

.woocommerce .freyja-cart-totals__header {
	margin-bottom: 20px;
}

.woocommerce .freyja-cart-totals__header h2,
.woocommerce .freyja-cart-kit__header h2 {
	font-size: 1.5rem;
	margin: 0;
}

.woocommerce .freyja-cart-totals__table {
	border-collapse: collapse;
	table-layout: fixed;
	margin: 0;
	width: 100%;
}

.woocommerce .freyja-cart-totals__table th,
.woocommerce .freyja-cart-totals__table td {
	border: 0;
	border-bottom: 1px solid rgba(216, 197, 178, 0.8);
	padding: 14px 0;
	vertical-align: top;
}

.woocommerce .freyja-cart-totals__table th {
	color: var(--freyja-cart-muted);
	font-size: 0.9375rem;
	font-weight: 600;
	padding-right: 16px;
	text-align: left;
}

.woocommerce .freyja-cart-totals__table td {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	overflow-wrap: anywhere;
	text-align: right;
}

.woocommerce .freyja-cart-totals__row--total th,
.woocommerce .freyja-cart-totals__row--total td {
	border-bottom: 0;
	font-size: 1.125rem;
	padding-bottom: 0;
	padding-top: 18px;
}

.woocommerce .freyja-cart-totals__row--total td {
	color: var(--freyja-cart-primary);
	font-size: 1.4rem;
}

.woocommerce .freyja-cart-totals__table ul#shipping_method {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce .freyja-cart-totals__table ul#shipping_method li {
	align-items: start;
	column-gap: 8px;
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	margin: 0 0 12px;
	text-align: left;
}

.woocommerce .freyja-cart-totals__table ul#shipping_method input {
	grid-column: 1;
	margin: 0.35em 0 0;
}

.woocommerce .freyja-cart-totals__table ul#shipping_method label {
	display: block;
	grid-column: 2;
	line-height: 1.35;
	margin: 0;
	text-align: left;
}

.woocommerce .freyja-cart-pickup-note {
	background: #fff7ec;
	border: 1px solid rgba(216, 197, 178, 0.72);
	border-radius: 14px;
	color: var(--freyja-cart-muted);
	display: none;
	font-size: 0.85rem;
	line-height: 1.45;
	margin-top: 8px;
	padding: 10px 12px;
	text-align: left;
}

.woocommerce .freyja-cart-totals__table ul#shipping_method input:checked + label .freyja-cart-pickup-note {
	display: block;
}

.woocommerce .freyja-cart-pickup-note strong {
	color: var(--freyja-cart-text);
	display: block;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.woocommerce .freyja-cart-totals__table .shipping td {
	text-align: left;
}

.woocommerce .freyja-cart-totals__table .order-total td,
.woocommerce .freyja-cart-totals__table .cart-subtotal td,
.woocommerce .freyja-cart-totals__table .cart-discount td,
.woocommerce .freyja-cart-totals__table .fee td,
.woocommerce .freyja-cart-totals__table .tax-total td,
.woocommerce .freyja-cart-totals__table .tax-rate td {
	text-align: right;
}

.woocommerce .freyja-cart-totals__table .shipping td,
.woocommerce .freyja-cart-totals__table .shipping th,
.woocommerce .freyja-cart-totals__table .woocommerce-shipping-destination,
.woocommerce .freyja-cart-totals__table .woocommerce-shipping-calculator {
	overflow-wrap: anywhere;
	word-break: normal;
}

.woocommerce .freyja-cart__collaterals,
.woocommerce .freyja-cart__collaterals .cart_totals,
.woocommerce .freyja-cart__collaterals .cart-collaterals,
.woocommerce .cart-collaterals .cart_totals {
	float: none;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.woocommerce .freyja-cart-totals__table .woocommerce-shipping-calculator {
	margin-top: 12px;
	text-align: left;
}

.woocommerce .freyja-cart-totals__checkout {
	margin-top: 24px;
}

.woocommerce .freyja-cart-totals__checkout .checkout-button,
.woocommerce .freyja-cart-totals__checkout a.checkout-button {
	background: var(--freyja-cart-primary) !important;
	border-radius: 16px !important;
	color: #ffffff !important;
	font-size: 1rem !important;
	min-height: 54px;
	padding: 14px 18px !important;
	text-align: center;
	width: 100%;
}

.woocommerce .freyja-cart-totals__checkout .checkout-button:hover,
.woocommerce .freyja-cart-totals__checkout a.checkout-button:hover {
	background: var(--freyja-cart-primary-strong) !important;
	color: #ffffff !important;
}

.woocommerce .freyja-cart-totals__trust {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.woocommerce .freyja-cart-totals__trust li {
	align-items: center;
	color: var(--freyja-cart-muted);
	display: flex;
	gap: 10px;
	font-size: 0.9375rem;
}

.woocommerce .freyja-cart-totals__trust .freyja-cart-icon {
	color: var(--freyja-cart-primary);
	flex: 0 0 auto;
}

.woocommerce .freyja-cart-kit {
	margin-top: 48px;
}

.woocommerce .freyja-cart-kit__header {
	margin-bottom: 24px;
}

.woocommerce .freyja-cart-kit ul.products {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 640px) {
	.woocommerce .freyja-cart-kit ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.woocommerce .freyja-cart-kit ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.woocommerce .freyja-cart-kit ul.products li.product {
	background: var(--freyja-cart-surface-lowest);
	border: 1px solid rgba(216, 197, 178, 0.72);
	border-radius: 22px;
	box-shadow: var(--freyja-cart-shadow-soft);
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 18px;
	text-align: left;
}

.woocommerce .freyja-cart-kit ul.products li.product a.woocommerce-LoopProduct-link {
	color: var(--freyja-cart-text);
	display: block;
	text-decoration: none;
}

.woocommerce .freyja-cart-kit ul.products li.product img {
	border-radius: 16px;
	margin-bottom: 14px;
	width: 100%;
}

.woocommerce .freyja-cart-kit ul.products li.product .woocommerce-loop-product__title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}

.woocommerce .freyja-cart-kit ul.products li.product .price {
	color: var(--freyja-cart-primary);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	margin-bottom: 12px;
}

.woocommerce .freyja-cart-kit ul.products li.product .button,
.woocommerce .freyja-cart-kit ul.products li.product .added_to_cart {
	margin-top: auto;
	width: 100%;
}

.woocommerce .freyja-cart-empty {
	background: var(--freyja-cart-surface-lowest);
	border-radius: 28px;
	box-shadow: var(--freyja-cart-shadow);
	margin: 0 auto;
	max-width: 720px;
	padding: 48px 28px;
	text-align: center;
}

.woocommerce .freyja-cart-empty__icon {
	color: var(--freyja-cart-secondary);
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.woocommerce .freyja-cart-empty__icon .freyja-cart-icon {
	height: 1.8em;
	width: 1.8em;
}

.woocommerce .freyja-cart .woocommerce-error,
.woocommerce .freyja-cart .woocommerce-info,
.woocommerce .freyja-cart .woocommerce-message {
	background: var(--freyja-cart-surface-lowest);
	border: 1px solid rgba(216, 197, 178, 0.72);
	border-radius: 18px;
	box-shadow: var(--freyja-cart-shadow-soft);
	margin-bottom: 24px;
	padding: 16px 20px;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-message {
	background: #fffaf7;
	border: 1px solid rgba(216, 197, 178, 0.72) !important;
	border-top-color: rgba(216, 197, 178, 0.72) !important;
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(81, 69, 53, 0.06);
	color: #2d1d0d;
	line-height: 1.55;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
	outline: 0;
}

.woocommerce-cart .woocommerce-notices-wrapper {
	display: grid;
	gap: 12px;
	margin: 0 auto 24px;
	max-width: 1120px;
}

.woocommerce-cart .woocommerce-notices-wrapper:empty {
	display: none;
}

.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message {
	align-items: center;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	margin: 0;
	min-height: 0;
	padding: 14px 18px;
}

.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error::before,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message::before {
	position: static;
	transform: none;
}

.woocommerce-cart .woocommerce-notices-wrapper input[type="text"],
.woocommerce-cart .woocommerce-notices-wrapper input[type="number"] {
	min-height: 40px;
	width: min(96px, 100%);
}

.woocommerce-cart .woocommerce-notices-wrapper button,
.woocommerce-cart .woocommerce-notices-wrapper .button {
	min-height: 40px;
	padding: 10px 18px;
	white-space: nowrap;
}

.woocommerce .freyja-cart-mobile-sticky {
	display: none;
}

@media (max-width: 1023px) {
	html {
		scroll-padding-bottom: calc(154px + env(safe-area-inset-bottom));
	}

	.woocommerce .freyja-cart {
		background:
			linear-gradient(180deg, rgba(255, 248, 245, 0) 0, rgba(255, 243, 234, 0.88) 320px, rgba(255, 248, 245, 0) 100%),
			var(--freyja-cart-bg);
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: none;
		padding: 24px 14px calc(154px + env(safe-area-inset-bottom));
		width: 100vw;
	}

	.woocommerce-cart .woocommerce-notices-wrapper {
		gap: 10px;
		margin: 0 14px 16px;
		max-width: none;
	}

	.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error,
	.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info,
	.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message {
		border-radius: 18px;
		box-shadow: 0 8px 18px rgba(81, 69, 53, 0.05);
		font-size: 0.98rem;
		line-height: 1.42;
		padding: 13px 14px;
	}

	.woocommerce-cart .woocommerce-notices-wrapper input[type="text"],
	.woocommerce-cart .woocommerce-notices-wrapper input[type="number"] {
		margin: 6px 8px 0 0;
		max-width: 86px;
	}

	.woocommerce-cart .woocommerce-notices-wrapper button,
	.woocommerce-cart .woocommerce-notices-wrapper .button {
		margin-top: 8px;
		width: auto;
	}

	.woocommerce .freyja-cart__hero {
		margin-bottom: 16px;
	}

	.woocommerce .freyja-cart__title {
		font-size: 2.5rem;
		letter-spacing: 0;
	}

	.woocommerce .freyja-cart__main {
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
	}

	.woocommerce .freyja-cart__progress {
		background: rgba(255, 250, 247, 0.88);
		border: 1px solid rgba(216, 197, 178, 0.45);
		border-radius: 24px;
		box-shadow: 0 18px 38px rgba(81, 69, 53, 0.08);
		margin-bottom: 22px;
		padding: 18px;
	}

	.woocommerce .freyja-cart__progress-copy {
		gap: 12px;
		margin-bottom: 14px;
		min-width: 0;
	}

	.woocommerce .freyja-cart__progress h2 {
		font-size: 1.02rem;
		letter-spacing: 0;
		line-height: 1.38;
	}

	.woocommerce .freyja-cart__progress p {
		font-size: 0.9rem;
		line-height: 1.5;
		margin-top: 8px;
	}

	.woocommerce .freyja-cart__progress-icon {
		height: 44px;
		width: 44px;
	}

	.woocommerce .freyja-cart__progress-track {
		height: 12px;
	}

	.woocommerce .freyja-cart__table {
		border-collapse: collapse;
		border-spacing: 0;
		display: block;
	}

	.woocommerce .freyja-cart__table thead {
		clip: rect(1px, 1px, 1px, 1px);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.woocommerce .freyja-cart__table tbody {
		display: grid;
		gap: 16px;
	}

	.woocommerce .freyja-cart-item {
		background: var(--freyja-cart-surface-lowest);
		border: 1px solid var(--freyja-cart-border);
		border-radius: 24px;
		box-shadow: none;
		display: block;
		isolation: isolate;
		overflow: hidden;
		position: relative;
	}

	.woocommerce .freyja-cart__table.shop_table_responsive tr td::before,
	.woocommerce .freyja-cart__table.shop_table_responsive tr th::before {
		content: none !important;
		display: none !important;
	}

	.woocommerce .freyja-cart-item td {
		background: transparent;
		border-color: rgba(216, 197, 178, 0.72);
		border-left-width: 0;
		border-radius: 0;
		border-right-width: 0;
		border-top-width: 0;
		display: block;
		padding: 12px 16px;
		width: 100% !important;
	}

	.woocommerce .freyja-cart-item td:first-child {
		border-radius: 0;
		border-top-width: 0;
	}

	.woocommerce .freyja-cart-item td:last-child {
		border-bottom-width: 0;
		border-radius: 0;
	}

	.woocommerce .freyja-cart-item td.product-remove {
		background: transparent;
		border: 0;
		padding: 0;
		position: absolute;
		right: 14px;
		top: 14px;
		width: auto;
		z-index: 2;
	}

	.woocommerce .freyja-cart-item .product-remove .remove {
		height: 42px;
		width: 42px;
	}

	.woocommerce .freyja-cart-item td.product-thumbnail {
		display: none;
	}

	.woocommerce .freyja-cart-item__media {
		border-radius: 16px;
		height: 92px;
		padding: 10px;
		width: 92px;
	}

	.woocommerce .freyja-cart-item td.product-name {
		border-bottom-width: 0;
		min-width: 0;
		padding: 18px 58px 14px 16px;
		text-align: left;
	}

	.woocommerce .freyja-cart-item__summary {
		align-items: flex-start;
		display: grid;
		gap: 14px;
		grid-template-columns: 92px minmax(0, 1fr);
		width: 100%;
	}

	.woocommerce .freyja-cart-item__mobile-media {
		display: flex;
	}

	.woocommerce .freyja-cart-item__details {
		min-width: 0;
		padding-right: 2px;
	}

	.woocommerce .freyja-cart-item__name,
	.woocommerce .freyja-cart-item__name a {
		font-size: 1.02rem;
		line-height: 1.35;
		text-align: left;
	}

	.woocommerce .freyja-cart-item td.product-price,
	.woocommerce .freyja-cart-item td.product-quantity,
	.woocommerce .freyja-cart-item td.product-subtotal {
		align-items: center;
		display: flex;
		flex-direction: row;
		gap: 12px;
		justify-content: space-between;
	}

	.woocommerce .freyja-cart-item td.product-price,
	.woocommerce .freyja-cart-item td.product-quantity {
		border-bottom-width: 0;
	}

	.woocommerce .freyja-cart-item td.product-subtotal {
		border-top-width: 0;
		padding-bottom: 18px;
	}

	.woocommerce .freyja-cart-item .product-price,
	.woocommerce .freyja-cart-item .product-quantity,
	.woocommerce .freyja-cart-item .product-subtotal {
		width: 100%;
	}

	.woocommerce .freyja-cart-cell__label {
		display: inline-block;
		margin-bottom: 0;
	}

	.woocommerce .freyja-cart-item td.product-quantity .freyja-cart-cell__label {
		margin-top: 8px;
	}

	.woocommerce .freyja-cart-item__quantity {
		justify-content: flex-end;
		width: 100%;
	}

	.woocommerce .freyja-cart-item .product-quantity .quantity {
		border-radius: 999px;
		min-height: 44px;
		padding: 5px;
	}

	.woocommerce .freyja-cart-item .product-quantity .qty {
		min-height: 34px;
		width: 42px;
	}

	.woocommerce .freyja-cart-item .product-quantity .qty-btn {
		border-radius: 999px;
		height: 34px;
		width: 34px;
	}

	.woocommerce .freyja-cart__actions-row td.actions {
		background: rgba(255, 250, 247, 0.9);
		border: 1px solid rgba(216, 197, 178, 0.78);
		border-radius: 24px;
		box-shadow: var(--freyja-cart-shadow-soft);
		display: block;
		padding: 16px;
	}

	.woocommerce .freyja-cart__actions {
		gap: 14px;
	}

	.woocommerce .freyja-cart__coupon,
	.woocommerce .freyja-cart__action-buttons {
		width: 100%;
	}

	.woocommerce .freyja-cart__coupon input,
	.woocommerce .freyja-cart__coupon .button {
		width: 100%;
	}

	.woocommerce .freyja-cart__action-buttons .button,
	.woocommerce .freyja-cart__action-buttons .freyja-cart__continue {
		width: 100%;
	}

	.woocommerce .freyja-cart-totals__card {
		border-radius: 24px;
		padding: 22px;
	}

	.woocommerce .freyja-cart-totals__header h2 {
		letter-spacing: 0.06em;
	}

	.woocommerce .freyja-cart-totals__checkout .checkout-button {
		min-height: 54px;
	}

	.woocommerce .freyja-cart-mobile-sticky {
		bottom: max(16px, env(safe-area-inset-bottom));
		display: block;
		left: 0;
		padding: 0 76px 0 14px;
		pointer-events: none;
		position: fixed;
		right: 0;
		transform: translateY(0);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
		z-index: 100;
	}

	.woocommerce .freyja-cart-mobile-sticky.is-hidden {
		opacity: 0;
		transform: translateY(18px);
		visibility: hidden;
	}

	.woocommerce .freyja-cart-mobile-sticky__inner {
		background: rgba(255, 248, 245, 0.9);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		border: 1px solid rgba(216, 197, 178, 0.72);
		border-radius: 24px;
		box-shadow: 0 18px 36px rgba(81, 69, 53, 0.14);
		padding: 16px;
		pointer-events: auto;
	}

	.woocommerce .freyja-cart-mobile-sticky__totals {
		align-items: center;
		display: flex;
		justify-content: space-between;
		margin-bottom: 12px;
	}

	.woocommerce .freyja-cart-mobile-sticky__label {
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 1rem;
		font-weight: 700;
	}

	.woocommerce .freyja-cart-mobile-sticky__value {
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 1.3rem;
		font-weight: 800;
	}

	.woocommerce .freyja-cart-mobile-sticky__btn {
		align-items: center;
		background: var(--freyja-cart-primary);
		border: 0;
		border-radius: 18px;
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22);
		color: #fff;
		display: inline-flex;
		font-family: "Plus Jakarta Sans", sans-serif;
		font-size: 1rem;
		font-weight: 700;
		gap: 8px;
		justify-content: center;
		min-height: 54px;
		padding: 14px 16px;
		width: 100%;
	}

	.woocommerce .freyja-cart-mobile-sticky__btn:hover {
		background: var(--freyja-cart-primary-strong);
	}
}
