/* Reset + Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #333;
}

/* Header Styles */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	height: 80px;
	background-color: lightskyblue;
	border-bottom: 1px solid #ddd;
	display: flex;
	align-items: center;
	overflow: visible;
}
.container {
	width: 100%;
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 32px;
}
.site-header .container {
	display: flex;
	align-items: center;
	gap: 25px;
	overflow: visible;
}

/* Logo */
.logo {
	width: 200px;
	margin-right: 60px;
}

.logo img {
	width: 100%;
	height: auto;
	display: block;
}

/* Search Bar */
.search-bar {
	width: 100%;
	max-width: 600px;
	height: 50px;
	display: flex;
}
.search-bar input {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-right: none;
	border-radius: 4px 0 0 4px;
}
.search-bar button {
	padding: 8px 12px;
	border: 1px solid #ccc;
	border-left: none;
	background: #eee;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

/* Right Menu */
.right-menu {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	overflow: visible;
}

.icon-button {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 18px;
	font-family: inherit;
	color: #333;
	white-space: nowrap;
	cursor: pointer;
}

.cart-count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background-color: #8b1e2f;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.cart-count-badge.is-hidden {
	display: none;
}

.icon-button .icon {
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.label {
	display: inline;
}

body {
	font-family: sans-serif;
	background-color: #f7f7f7;
	color: #222;
	padding-top: 90px;
}

html:not(.age-gate-verified) body {
	overflow: hidden;
}

html:not(.age-gate-verified) body > :not(.age-gate-overlay) {
	visibility: hidden;
	pointer-events: none;
	user-select: none;
}

body.age-gate-modal-open {
	min-height: 100vh;
}

.age-gate-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: linear-gradient(rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.72)),
		url("/images/sabera_logo.svg") center 12% / min(360px, 72vw) no-repeat,
		#121212;
}

.age-gate-dialog {
	width: min(100%, 460px);
	padding: 34px;
	border: 1px solid rgba(139, 30, 47, 0.18);
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	text-align: center;
}

.age-gate-kicker {
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.age-gate-dialog h2 {
	margin-bottom: 14px;
	font-size: 32px;
	line-height: 1.15;
	color: #111;
}

.age-gate-dialog p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}

.age-gate-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px;
}

.age-gate-button {
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid #8b1e2f;
	border-radius: 8px;
	background-color: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.age-gate-button.secondary {
	background-color: #fff;
	color: #8b1e2f;
}

.age-gate-button:focus-visible {
	outline: 3px solid rgba(139, 30, 47, 0.28);
	outline-offset: 3px;
}

.age-gate-denied-dialog .age-gate-button {
	width: 100%;
	margin-top: 24px;
}

.age-gate-support,
.age-gate-close-message {
	margin-top: 10px;
}

.age-gate-close-message:empty {
	display: none;
}

.secondary-nav {
	background-color: #ffffff;
	border-bottom: 1px solid #e6e6e6;
}

.secondary-nav-container {
	min-height: 54px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.secondary-nav-container a {
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

.hero {
	width: 100%;
}

.hero-slide {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: flex-end;
	background-image: linear-gradient(
			90deg,
			rgba(8, 12, 24, 0.88) 0%,
			rgba(8, 12, 24, 0.68) 38%,
			rgba(8, 12, 24, 0.28) 65%,
			rgba(8, 12, 24, 0.18) 100%
		),
		url("../images/hero.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.36),
		rgba(0, 0, 0, 0.05)
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 96px 0 88px 24px;
	max-width: 760px;
	color: #fff;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.hero-title {
	max-width: 720px;
	margin-bottom: 20px;
	font-size: 64px;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: 0;
}

.hero-text {
	max-width: 620px;
	margin-bottom: 30px;
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 34px;
}

.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.25s ease;
}

.btn-primary:where(:not(#css-dedupe-1-1)) {
	background-color: #6f1323;
	color: #fff;
	box-shadow: 0 12px 28px rgba(111, 19, 35, 0.32);
}

.btn-primary:hover {
	background-color: #84192b;
}

.btn-secondary:where(:not(#css-dedupe-1-2)) {
	border: 1px solid rgba(255, 255, 255, 0.46);
	background-color: rgba(255, 255, 255, 0.04);
	color: #fff;
	backdrop-filter: blur(4px);
}

.btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.12);
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
}

.hero-meta span {
	position: relative;
}

.hero-meta span:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -15px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%);
}

.featured-section {
	padding: 60px 0 70px;
	background-color: #f7f7f7;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
}

.section-heading h2 {
	font-size: 34px;
	font-weight: 700;
}

.view-all-link {
	font-size: 15px;
	font-weight: 600;
	color: #6e1221;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.wine-card {
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 20px;
}

.wine-card img {
	width: 100%;
	height: 260px;
	object-fit: contain;
	background-color: #fafafa;
	border-radius: 8px;
	margin-bottom: 18px;
}

.wine-card h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.wine-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 18px;
}

.card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 18px;
	background-color: #111;
	color: #fff;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
}

.card-link:hover {
	background-color: #333;
}

.account-dropdown {
	position: relative;
	display: flex;
	align-items: center;
}

.account-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	color: #333;
	font: inherit;
}

.account-trigger .label {
	white-space: nowrap;
}

.account-caret {
	font-size: 16px;
	line-height: 1;
}

.account-dropdown-menu {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	width: 340px;
	background: linear-gradient(
		180deg,
		rgba(255, 250, 244, 0.98) 0%,
		rgba(255, 255, 255, 0.98) 100%
	);
	border: 1px solid rgba(111, 19, 35, 0.12);
	border-radius: 22px;
	box-shadow: 0 24px 55px rgba(16, 24, 40, 0.16),
		0 6px 18px rgba(16, 24, 40, 0.08);
	backdrop-filter: blur(12px);
	z-index: 9999;
	overflow: hidden;
}

.account-guest-only {
	padding: 0;
}

.account-guest-premium-top {
	padding: 24px 24px 18px;
	background: linear-gradient(
		135deg,
		rgba(111, 19, 35, 0.05) 0%,
		rgba(212, 167, 98, 0.16) 100%
	);
	border-bottom: 1px solid rgba(111, 19, 35, 0.08);
}

.account-guest-eyebrow {
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #8b1e2f;
	opacity: 0.9;
}

.account-dropdown-header {
	padding: 18px 20px 14px;
	background: #f7f9fc;
	border-bottom: 1px solid #ececec;
}

.account-dropdown-welcome {
	font-size: 14px;
	color: #666;
	margin-bottom: 4px;
}

.account-dropdown-title {
	font-size: 22px;
	font-weight: 700;
	color: #1d2a3a;
	line-height: 1.2;
}

.account-dropdown-section {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
}

.account-menu-link,
.account-menu-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	padding: 14px 20px;
	background: transparent;
	border: 0;
	text-align: left;
	font: inherit;
	font-size: 17px;
	color: #222;
	cursor: pointer;
	text-decoration: none;
}

.admin-chat-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: #8b1e2f;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.admin-chat-badge.is-hidden {
	display: none;
}

.admin-chat-bell-badge {
	position: absolute;
	top: -10px;
	right: -12px;
	box-shadow: 0 0 0 3px lightskyblue;
	animation: admin-chat-badge-pulse 1.7s ease-in-out infinite;
}

@keyframes admin-chat-badge-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}
}

.account-menu-link:hover,
.account-menu-button:hover {
	background: #f4f6f8;
}

.admin-chat-toast-container {
	position: fixed;
	right: 24px;
	bottom: 92px;
	z-index: 80;
	display: grid;
	gap: 10px;
	width: min(320px, calc(100vw - 32px));
}

.admin-chat-toast {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid #8b1e2f;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(139, 30, 47, 0.08), transparent 44%),
		#fff;
	box-shadow: 0 0 0 4px rgba(139, 30, 47, 0.08),
		0 18px 46px rgba(31, 31, 31, 0.22);
	color: #1f1f1f;
	text-decoration: none;
	animation: admin-chat-toast-enter 0.28s ease-out,
		admin-chat-toast-pulse 1.8s ease-in-out 0.3s 2;
}

.admin-chat-toast strong {
	font-size: 14px;
	line-height: 1.3;
	color: #8b1e2f;
}

.admin-chat-toast span {
	font-size: 13px;
	line-height: 1.4;
	color: #4f4a44;
}

.admin-live-chat-shortcut {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 75;
}

.admin-live-chat-shortcut-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 132px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid #8b1e2f;
	border-radius: 999px;
	background: #8b1e2f;
	box-shadow: 0 16px 40px rgb(31 31 31 / 18%);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}

.admin-live-chat-shortcut-link:hover {
	background: #741a29;
	border-color: #741a29;
}

.admin-live-chat-shortcut .admin-chat-badge {
	position: absolute;
	top: -10px;
	right: -8px;
	box-shadow: 0 0 0 3px #fff8ee;
}

@keyframes admin-chat-toast-enter {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes admin-chat-toast-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 4px rgba(139, 30, 47, 0.08),
			0 18px 46px rgba(31, 31, 31, 0.22);
	}

	50% {
		box-shadow: 0 0 0 8px rgba(139, 30, 47, 0.16),
			0 22px 54px rgba(31, 31, 31, 0.26);
	}
}

@media (prefers-reduced-motion: reduce) {
	.admin-chat-toast:where(:not(#css-dedupe-1-3)),
	.admin-chat-bell-badge:where(:not(#css-dedupe-1-4)) {
		animation: none;
	}
}

.account-menu-button:where(:not(#css-dedupe-1-5)) {
	border-top: 1px solid #ececec;
	font-weight: 600;
}

.account-guest-intro {
	padding: 6px 20px 10px;
}

.account-guest-intro h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #8a5714;
}

.account-guest-premium-top h3 {
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: 0;
	color: #3d1f14;
}

.account-guest-benefits {
	list-style: none;
	padding: 6px 0 0;
	margin: 0;
}

.account-guest-benefits li {
	position: relative;
	padding: 20px 24px 20px 62px;
	font-size: 15px;
	line-height: 1.65;
	color: #6a4420;
	border-top: 1px solid rgba(111, 19, 35, 0.08);
}

.account-guest-benefits li:first-child {
	border-top: none;
}

.account-guest-benefits li::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 22px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid rgba(139, 30, 47, 0.38);
	background: radial-gradient(circle at 30% 30%, #f8e8cf 0%, #d4a762 100%);
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.55);
}

.account-guest-benefits li::after {
	content: "✓";
	position: absolute;
	left: 30px;
	top: 23px;
	font-size: 11px;
	font-weight: 700;
	color: #7a1727;
}

.account-guest-cta-wrap {
	padding: 22px 24px 24px;
}

.account-guest-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	border-radius: 999px;
	background: linear-gradient(135deg, #c98a2f 0%, #f0af46 100%);
	color: #23170f;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(201, 138, 47, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.account-guest-cta:hover {
	transform: translateY(-1px);
	filter: saturate(1.03);
	box-shadow: 0 14px 30px rgba(201, 138, 47, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.account-dropdown-header.account-user-only.is-hidden {
	display: none;
}

/* Shared Sabera footer. Keep all footer layout/styling in this block. */
.site-footer {
	position: static;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: clamp(176px, 11vw, 190px);
	background: linear-gradient(90deg, #71071b 0%, #8f102a 50%, #71071b 100%);
	color: #fff7ec;
	overflow: hidden;
}

.footer-main {
	padding: clamp(13px, 1.05vw, 20px) 0 clamp(4px, 0.35vw, 7px);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.7fr 0.72fr 0.9fr 1.45fr;
	gap: 30px;
	align-items: start;
}

.footer-brand,
.footer-column,
.footer-newsletter {
	min-height: 96px;
	padding-right: 26px;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-newsletter {
	border-right: 0;
	padding-right: 0;
}

.footer-logo {
	display: block;
	width: clamp(160px, 10.9vw, 205px);
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}

.footer-logo img {
	display: block;
	width: 100%;
	filter: invert(1) brightness(2.4);
}

.footer-brand p,
.footer-newsletter p {
	max-width: 340px;
	color: rgba(255, 247, 236, 0.82);
	font-family: Arial, sans-serif;
	font-size: clamp(13px, 0.72vw, 15px);
	line-height: 1.32;
}

.footer-column h3,
.footer-newsletter h3 {
	margin-bottom: 4px;
	color: #fff7ec;
	font-size: clamp(14px, 0.82vw, 17px);
	font-weight: 500;
	text-transform: uppercase;
}

.footer-column a {
	color: #fff7ec;
	font-family: Arial, sans-serif;
	font-size: clamp(13px, 0.72vw, 15px);
	line-height: 1.28;
}

.footer-column a:hover,
.footer-legal a:hover {
	opacity: 0.82;
	text-decoration: underline;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: clamp(9px, 0.65vw, 13px);
	margin-top: clamp(6px, 0.45vw, 9px);
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(29px, 1.9vw, 36px);
	height: clamp(29px, 1.9vw, 36px);
	border: 1px solid rgba(255, 247, 236, 0.72);
	border-radius: 50%;
	background: rgba(255, 247, 236, 0.08);
	color: #fff7ec;
	font-family: Arial, sans-serif;
	font-size: clamp(14px, 0.92vw, 17px);
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
	background: #fff7ec;
	color: #8b1e2f;
	opacity: 1;
	text-decoration: none;
	transform: translateY(-1px);
}

.newsletter-form {
	display: flex;
	margin-top: clamp(6px, 0.5vw, 10px);
}

.newsletter-form input,
.newsletter-form button {
	height: clamp(34px, 2.25vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
	font-size: clamp(13px, 0.78vw, 16px);
}

.newsletter-form input {
	min-width: 0;
	flex: 1;
	padding: 0 14px;
	border-right: 0;
	background: #fffaf1;
	color: #241814;
}

.newsletter-form input::placeholder {
	color: rgba(36, 24, 20, 0.58);
}

.newsletter-form button {
	padding: 0 18px;
	font-weight: 700;
	cursor: pointer;
}

.newsletter-form button:disabled {
	cursor: not-allowed;
	opacity: 0.72;
}

.newsletter-status {
	min-height: 14px;
	margin: 5px 0 0;
	color: rgba(255, 247, 236, 0.82);
	font-family: Arial, sans-serif;
	font-size: 11px;
	line-height: 1.4;
}

.newsletter-status.is-success {
	color: #fff7ec;
}

.newsletter-status.is-error {
	color: #ffd6dc;
}

.footer-bottom {
	margin-top: auto;
	padding: 0 0 clamp(6px, 0.45vw, 10px);
	background: transparent;
	color: rgba(255, 247, 236, 0.74);
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: clamp(8px, 0.6vw, 12px);
}

.footer-bottom p,
.footer-legal a {
	color: rgba(255, 247, 236, 0.74);
	font-size: clamp(12px, 0.68vw, 14px);
}

.footer-legal {
	display: flex;
	gap: 22px;
}

@media (max-width: 1180px) {
	.site-footer {
		min-height: 0;
		overflow: visible;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.footer-brand,
	.footer-column,
	.footer-newsletter {
		border-right: 0;
		padding-right: 0;
	}
}

@media (max-width: 700px) {
	.footer-main {
		padding: 28px 0 18px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.footer-bottom-content,
	.footer-legal,
	.newsletter-form {
		flex-direction: column;
	}

	.footer-bottom-content {
		align-items: center;
		gap: 10px;
		text-align: center;
	}

	.newsletter-form {
		gap: 10px;
	}

	.newsletter-form input {
		border-right: 1px solid rgba(255, 255, 255, 0.5);
	}
}

.shop-page {
	background-color: #f7f7f7;
}

.shop-hero {
	padding: 46px 0 34px;
	background: linear-gradient(180deg, #f6f2ed 0%, #f7f7f7 100%);
}

.shop-breadcrumb {
	margin-bottom: 14px;
	font-size: 14px;
	color: #666;
}

.shop-breadcrumb a {
	color: #666;
}

.shop-hero h1 {
	margin-bottom: 14px;
	font-size: 46px;
	line-height: 1.08;
	color: #111;
}

.shop-hero p:last-child {
	max-width: 760px;
	font-size: 18px;
	line-height: 1.7;
	color: #555;
}

.shop-toolbar-wrap {
	padding: 0 0 26px;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 6px;
}

.shop-results {
	font-size: 15px;
	font-weight: 500;
	color: #444;
}

.shop-controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.shop-controls select {
	height: 44px;
	padding: 0 14px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	color: #333;
	outline: none;
}

.shop-grid-section {
	padding: 0 0 70px;
}

.product-tile.is-hidden {
	display: none;
}

.shop-empty-state {
	display: none;
	padding: 32px 20px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
}

.shop-empty-state.is-visible {
	display: block;
}

.shop-empty-state p {
	margin-bottom: 10px;
	font-size: 16px;
	color: #555;
}

.shop-empty-state button {
	padding: 0;
	border: none;
	background: none;
	font-size: 15px;
	font-weight: 600;
	color: #8b1e2f;
	cursor: pointer;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.product-tile {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.product-image-wrap {
	display: block;
	background: linear-gradient(180deg, #faf7f3 0%, #f7f7f7 100%);
	padding: 24px;
}

.product-image-wrap img {
	width: 100%;
	height: 300px;
	object-fit: contain;
	display: block;
}

.product-tile-body {
	padding: 22px 22px 20px;
}

.product-type {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.product-tile h3 {
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 1.2;
}

.product-tile h3 a {
	color: #111;
}

.product-copy {
	margin-bottom: 18px;
	font-size: 15px;
	line-height: 1.65;
	color: #555;
}

.product-tile-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.product-price {
	font-size: 22px;
	font-weight: 700;
	color: #111;
}

.product-page {
	background-color: #f7f7f7;
}

.product-detail-section {
	padding: 42px 0 56px;
}

.product-breadcrumb {
	margin-bottom: 22px;
	font-size: 14px;
	color: #666;
}

.product-breadcrumb a {
	color: #666;
}

.product-detail-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 42px;
	align-items: start;
}

.product-gallery {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.product-main-image {
	background: linear-gradient(180deg, #faf7f3 0%, #f7f7f7 100%);
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 30px;
}

.product-main-image img {
	width: 100%;
	height: 520px;
	object-fit: contain;
	display: block;
}

.product-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.product-thumb {
	width: 112px;
	flex: 0 0 112px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 12px;
	cursor: pointer;
}

.product-thumb.active {
	border-color: #8b1e2f;
	box-shadow: 0 0 0 2px rgba(139, 30, 47, 0.12);
}

.product-thumb:focus-visible {
	outline: 3px solid rgba(139, 30, 47, 0.28);
	outline-offset: 2px;
}

.product-thumb img {
	width: 100%;
	height: 90px;
	object-fit: contain;
	display: block;
}

.product-info {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 34px;
}

.product-detail-type {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.product-detail-title {
	margin-bottom: 12px;
	font-size: 46px;
	line-height: 1.08;
	color: #111;
}

.product-detail-price {
	margin-bottom: 20px;
	font-size: 34px;
	font-weight: 700;
	color: #111;
}

.product-detail-copy {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.product-highlights {
	margin: 0 0 28px 18px;
	color: #444;
}

.product-highlights li {
	margin-bottom: 10px;
	line-height: 1.6;
}

.product-purchase-row {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 28px;
}

.quantity-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.quantity-box label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.quantity-box input {
	width: 90px;
	height: 46px;
	padding: 0 12px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	font-size: 16px;
}

.product-action-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.product-secondary-btn {
	color: #333;
	border-color: #d7d7d7;
	background-color: #fff;
	backdrop-filter: none;
}

.product-secondary-btn:hover {
	background-color: #f3f3f3;
}

.product-meta-box {
	padding-top: 22px;
	border-top: 1px solid #ececec;
}

.product-meta-box p {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

.product-description-section {
	padding: 0 0 70px;
}

.product-description-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 34px;
}

.product-description-card h2 {
	margin-bottom: 18px;
	font-size: 28px;
	color: #111;
}

.product-description-card p {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.cart-page {
	background-color: #f7f7f7;
}

.cart-section {
	padding: 42px 0 70px;
}

.cart-breadcrumb {
	margin-bottom: 22px;
	font-size: 14px;
	color: #666;
}

.cart-breadcrumb a {
	color: #666;
}

.cart-header {
	margin-bottom: 28px;
}

.cart-header h1 {
	margin-bottom: 10px;
	font-size: 44px;
	line-height: 1.08;
	color: #111;
}

.cart-header p {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
}

.cart-layout {
	display: grid;
	grid-template-columns: 1.4fr 0.75fr;
	gap: 28px;
	align-items: start;
}

.cart-items-card,
.cart-summary-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
}

.cart-items-card:where(:not(#css-dedupe-1-7)) {
	padding: 10px 24px 24px;
}

.cart-table-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 140px 120px;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid #ececec;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #666;
}

.cart-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 140px 120px;
	gap: 18px;
	align-items: center;
	padding: 22px 0;
	border-bottom: 1px solid #ececec;
}

.cart-product {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.cart-product-image {
	width: 112px;
	height: 112px;
	flex-shrink: 0;
	background: linear-gradient(180deg, #faf7f3 0%, #f7f7f7 100%);
	border: 1px solid #ececec;
	border-radius: 14px;
	padding: 14px;
}

.cart-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.cart-product-info {
	min-width: 0;
}

.cart-product-type {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.cart-product-info h3 {
	margin-bottom: 6px;
	font-size: 24px;
	line-height: 1.2;
	color: #111;
}

.cart-product-price {
	margin-bottom: 10px;
	font-size: 15px;
	color: #555;
}

.cart-product-warning {
	margin: 10px 0 0;
	padding: 10px 12px;
	border: 1px solid rgba(122, 31, 43, 0.14);
	border-radius: 12px;
	background: rgba(122, 31, 43, 0.06);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
	color: #7a1f2b;
}

.cart-remove-btn {
	padding: 0;
	border: none;
	background: none;
	font-size: 14px;
	font-weight: 600;
	color: #8b1e2f;
	cursor: pointer;
}

.cart-qty input {
	width: 90px;
	height: 46px;
	padding: 0 12px;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	font-size: 16px;
}

.cart-line-total {
	font-size: 22px;
	font-weight: 700;
	color: #111;
}

.cart-actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 22px;
}

.cart-link-btn {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.cart-summary-card:where(:not(#css-dedupe-1-8)) {
	padding: 28px;
}

.cart-summary-card h2 {
	margin-bottom: 22px;
	font-size: 28px;
	color: #111;
}

.cart-summary-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #ececec;
	font-size: 15px;
	color: #555;
}

.cart-summary-row.total {
	padding-top: 18px;
	font-size: 18px;
	font-weight: 700;
	color: #111;
}

.cart-checkout-btn {
	width: 100%;
	margin-top: 24px;
}

.cart-note {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.saved-items-wrap {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid #ececec;
}

.saved-items-wrap.is-hidden {
	display: none;
}

.saved-items-wrap h2 {
	margin-bottom: 18px;
	font-size: 24px;
	color: #111;
}

.saved-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid #ececec;
}

.saved-item:last-child {
	border-bottom: none;
}

.saved-item-type {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.saved-item-name {
	margin-bottom: 6px;
	font-size: 20px;
	font-weight: 600;
	color: #111;
}

.saved-item-price {
	font-size: 15px;
	color: #555;
}

.saved-item-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.saved-item-btn {
	padding: 0;
	border: none;
	background: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.saved-item-btn.move {
	color: #111;
}

.saved-item-btn.remove {
	color: #8b1e2f;
}

.checkout-page {
	background-color: #f7f7f7;
}

.checkout-section {
	padding: 42px 0 70px;
}

.checkout-breadcrumb {
	margin-bottom: 22px;
	font-size: 14px;
	color: #666;
}

.checkout-breadcrumb a {
	color: #666;
}

.checkout-header {
	margin-bottom: 28px;
}

.checkout-header h1 {
	margin-bottom: 10px;
	font-size: 44px;
	line-height: 1.08;
	color: #111;
}

.checkout-header p {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
}

.checkout-layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	align-items: start;
}

.checkout-forms {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.checkout-card,
.checkout-summary-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
}

.checkout-card:where(:not(#css-dedupe-1-9)) {
	padding: 28px;
}

.checkout-card h2,
.checkout-summary-card h2 {
	margin-bottom: 18px;
	font-size: 28px;
	color: #111;
}

.checkout-helper {
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.checkout-compliance-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.checkout-compliance-field {
	gap: 8px;
}

.checkout-compliance-option {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid #e4ddd8;
	border-radius: 10px;
	background-color: #fffdfb;
	font-size: 14px;
	line-height: 1.6;
	color: #444;
}

.checkout-compliance-option input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #2f7d4f;
}

.checkout-compliance-option:has(input.input-error) {
	background-color: #fff7f7;
}

.checkout-compliance-option input.input-error {
	appearance: none;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 2px solid #b42318;
	border-radius: 3px;
	background-color: #fff7f7;
	outline: none;
}

.checkout-compliance-option a {
	font-weight: 700;
	color: #0b63ce;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.checkout-compliance-status {
	margin-top: 14px;
	padding: 12px 14px;
	border: 1px solid #e8c9cf;
	border-radius: 8px;
	background-color: #fbf1f3;
	color: #7a1f2b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.checkout-compliance-status.is-complete {
	border-color: #b9dcc2;
	background-color: #f0faf2;
	color: #236b35;
}

.checkout-compliance-note {
	margin-top: 16px;
	padding: 12px 14px;
	border-left: 4px solid #8b1e2f;
	background-color: #f9f2f4;
	font-size: 13px;
	line-height: 1.6;
	font-weight: 600;
	color: #5f1724;
}

.checkout-grid {
	display: grid;
	gap: 16px;
}

.checkout-grid.two-col {
	grid-template-columns: repeat(2, 1fr);
}

.checkout-item-warning {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 600;
	color: #7a1f2b;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-field.full {
	grid-column: 1 / -1;
}

.form-field label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0 14px;
	border: 1px solid #d7d7d7;
	border-radius: 10px;
	background-color: #fff;
	font-size: 15px;
	color: #333;
	outline: none;
}

.form-field select:invalid {
	color: #777;
}

.form-field input:where(:not(#css-dedupe-1-10)),
.form-field select:where(:not(#css-dedupe-1-11)) {
	height: 48px;
}

.form-field textarea:where(:not(#css-dedupe-1-12)) {
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

.form-field input.input-error,
.form-field select.input-error,
.form-field textarea.input-error {
	border-color: #b42318;
	background-color: #fff7f7;
}

.contact-submit {
	margin-top: 18px;
}

.form-error {
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.4;
	color: #b42318;
}

.payment-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.payment-tab {
	height: 42px;
	padding: 0 18px;
	border: 1px solid #d7d7d7;
	border-radius: 999px;
	background-color: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
}

.payment-tab.active {
	border-color: #8b1e2f;
	background-color: #f9f2f4;
	color: #8b1e2f;
}

.checkout-summary-card:where(:not(#css-dedupe-1-13)) {
	padding: 28px;
}

.checkout-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #ececec;
}

.checkout-item-name {
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.checkout-item-meta {
	font-size: 14px;
	color: #666;
}

.checkout-item-price {
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.checkout-summary-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #ececec;
	font-size: 15px;
	color: #555;
}

.checkout-discount-box {
	margin: 18px 0 6px;
	padding: 14px;
	border: 1px solid #eadfda;
	border-radius: 10px;
	background: #fffaf6;
}

.checkout-discount-box label {
	display: block;
	margin-bottom: 8px;
	color: #3a2d27;
	font-size: 13px;
	font-weight: 700;
}

.checkout-discount-form {
	display: flex;
	gap: 8px;
}

.checkout-discount-form input {
	min-width: 0;
	flex: 1;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #d8ccc6;
	border-radius: 8px;
	background: #fff;
	color: #1f1f1f;
	font-size: 14px;
	text-transform: uppercase;
}

.checkout-discount-form button {
	height: 42px;
	padding: 0 14px;
	border: 1px solid #8b1e2f;
	border-radius: 8px;
	background: #8b1e2f;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.checkout-discount-message {
	min-height: 18px;
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.4;
	color: #6b625c;
}

.checkout-discount-message.is-success,
.checkout-discount-summary {
	color: #17643a;
}

.checkout-discount-message.is-error {
	color: #8b1e2f;
}

.checkout-discount-summary.is-hidden {
	display: none;
}

.checkout-summary-row.total {
	padding-top: 18px;
	font-size: 18px;
	font-weight: 700;
	color: #111;
}

.checkout-reservation-status {
	margin-top: 18px;
	padding: 14px;
	border: 1px solid #d8c7a6;
	border-radius: 10px;
	background-color: #fffaf0;
	color: #493414;
}

.checkout-reservation-status.is-hidden {
	display: none;
}

.checkout-reservation-status > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.checkout-reservation-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #80602a;
}

#checkout-reservation-countdown {
	font-size: 20px;
	line-height: 1;
	color: #111;
}

#checkout-reservation-message {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.45;
	color: #6b4b18;
}

.checkout-reservation-status.is-expired {
	border-color: #efc2c0;
	background-color: #fff7f7;
	color: #7a1f2b;
}

.checkout-reservation-status.is-expired .checkout-reservation-label,
.checkout-reservation-status.is-expired #checkout-reservation-message {
	color: #7a1f2b;
}

.checkout-place-order {
	width: 100%;
	margin-top: 24px;
}

.checkout-place-order.is-disabled {
	cursor: not-allowed;
	pointer-events: auto;
	opacity: 0.58;
}

.checkout-action-guidance {
	margin-top: 12px;
	padding: 12px 14px;
	border: 1px solid #e6c7cd;
	border-radius: 10px;
	background: #fbf0f2;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #7a1f2b;
}

.checkout-note {
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.thank-you-page {
	background-color: #f7f7f7;
}

.auth-page {
	background-color: #f7f7f7;
}

.auth-section {
	padding: 48px 0 80px;
}

.auth-panel-title {
	margin-bottom: 10px;
	font-size: 28px;
	line-height: 1.2;
	color: #111;
}

.auth-helper-text-tight {
	margin-top: 0;
	margin-bottom: 18px;
}

.auth-form .auth-helper-text .auth-text-link {
	margin-left: 4px;
}

.auth-shell {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 32px;
	align-items: start;
}

.auth-intro {
	padding: 24px 0;
}

.auth-kicker {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.auth-intro h1 {
	margin-bottom: 14px;
	font-size: 46px;
	line-height: 1.08;
	color: #111;
}

.auth-intro p {
	max-width: 520px;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

.auth-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	padding: 28px;
}

.auth-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 22px;
}

.auth-tab {
	flex: 1;
	height: 46px;
	border: 1px solid #d7d7d7;
	border-radius: 999px;
	background-color: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
}

.auth-tab.active {
	border-color: #8b1e2f;
	background-color: #f9f2f4;
	color: #8b1e2f;
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
}

.auth-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 14px 0 22px;
}

.auth-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #555;
}

.auth-checkbox-block {
	margin: 18px 0 22px;
	line-height: 1.6;
}

.auth-text-link {
	font-size: 14px;
	font-weight: 600;
	color: #8b1e2f;
}

.auth-submit {
	width: 100%;
	margin-top: 6px;
}

.auth-helper-text {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.password-field {
	position: relative;
}

.password-field input {
	padding-right: 78px;
}

.password-toggle {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	padding: 0;
	border: none;
	background: none;
	font-size: 13px;
	font-weight: 700;
	color: #8b1e2f;
	cursor: pointer;
}

.auth-password-hint {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.5;
	color: #666;
}

.auth-password-hint.weak {
	color: #b42318;
}

.auth-password-hint.medium {
	color: #9a6700;
}

.auth-password-hint.strong {
	color: #166534;
}

.auth-form-status {
	margin-top: 14px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.6;
}

.auth-form-status.success {
	border-color: #cfe8d4;
	background-color: #f4fbf6;
	color: #166534;
}

.auth-form-status.error {
	border-color: #f0c7c2;
	background-color: #fff7f7;
	color: #b42318;
}

.is-hidden {
	display: none !important;
}

.auth-session-box {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	padding: 28px;
}

.auth-session-box h2 {
	margin-bottom: 14px;
	font-size: 32px;
	line-height: 1.2;
	color: #111;
}

.auth-session-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.auth-signout-btn,
.order-history-logout-btn {
	color: #333;
	border-color: #d7d7d7;
	background-color: #fff;
	backdrop-filter: none;
}

.auth-session-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 10px;
}

.auth-session-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 24px;
}

.auth-session-copy {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.75;
	color: #666;
}

.auth-session-copy-sm {
	margin-bottom: 18px;
}

.auth-session-security-title {
	font-size: 28px;
	line-height: 1.2;
	color: #111;
	margin-bottom: 6px;
}

.auth-change-password-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.auth-change-password-form .auth-submit {
	margin-top: 2px;
}

.auth-signout-btn:hover,
.order-history-logout-btn:hover {
	background-color: #f3f3f3;
}

.auth-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.auth-checkbox.input-error span {
	color: #b42318;
}

.order-history-page {
	background-color: #f7f7f7;
}

.order-history-section {
	padding: 42px 0 70px;
}

.order-history-breadcrumb {
	margin-bottom: 22px;
	font-size: 14px;
	color: #666;
}

.order-history-breadcrumb a {
	color: #666;
}

.order-history-header {
	margin-bottom: 22px;
}

.order-history-header-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.order-history-header h1 {
	margin-bottom: 10px;
	font-size: 44px;
	line-height: 1.08;
	color: #111;
}

.order-history-header p {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
}

.order-history-note {
	margin-bottom: 24px;
	padding: 14px 16px;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.order-history-dashboard {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-history-filters {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(220px, 1fr) auto;
	gap: 14px;
	align-items: center;
	margin: 22px 0 28px;
}

.order-history-filters select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.order-history-filters select:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.order-history-clear-filters {
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid #d8b7be;
	border-radius: 12px;
	background: #fffaf8;
	color: #8b1e2f;
	font: inherit;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.order-history-clear-filters:hover {
	background: #fff1f3;
	border-color: #8b1e2f;
}

.order-history-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.order-history-card {
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	padding: 24px;
}

.order-history-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ececec;
}

.order-history-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.order-history-action {
	height: 42px;
	padding: 0 18px;
	border: 1px solid #8b1e2f;
	border-radius: 999px;
	background-color: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.order-history-action:hover {
	background-color: #741a29;
	border-color: #741a29;
}

.order-history-action.secondary {
	border-color: #d7d7d7;
	background-color: #fff;
	color: #333;
}

.order-history-action.secondary:hover {
	background-color: #f3f3f3;
	border-color: #d7d7d7;
}

.return-request-panel {
	margin: 0 0 18px;
	padding: 18px;
	border: 1px solid #eadfda;
	border-radius: 14px;
	background: #fffaf8;
}

.return-request-form-grid,
.return-request-admin-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.return-request-wide {
	grid-column: 1 / -1;
}

.return-request-items-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.return-request-items-field p,
.return-request-kicker {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.return-request-items {
	display: grid;
	gap: 8px;
}

.return-request-item-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid #eadfda;
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.return-request-item-option input {
	margin-top: 3px;
}

.return-request-warning {
	margin: 16px 0;
	padding: 12px 14px;
	border-left: 4px solid #8b1e2f;
	background: #f9f2f4;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
	color: #5f1724;
}

.return-request-summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	margin: 0 0 16px;
	padding: 14px;
	border: 1px solid #eadfda;
	border-radius: 12px;
	background: #fffaf8;
}

.order-history-card-summary .return-request-summary {
	align-items: flex-end;
	flex-direction: column;
	min-width: 210px;
	margin: 0;
	text-align: right;
}

.return-request-summary strong {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	line-height: 1.4;
	color: #1f1f1f;
}

.return-request-summary p {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: #665b52;
}

.return-request-review-box {
	margin: 18px 0;
	padding: 18px;
	border: 1px solid #eadfda;
	border-radius: 14px;
	background: #fffaf8;
}

.return-request-review-box.muted {
	background: #fafafa;
	color: #666;
}

.return-request-review-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.return-request-review-heading h3 {
	margin: 4px 0 0;
	font-size: 20px;
	line-height: 1.3;
	color: #1f1f1f;
}

.return-request-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 18px;
}

.return-request-review-grid strong {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	text-transform: uppercase;
	color: #6b4b54;
}

.return-request-review-grid p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #4f4a44;
}

.return-request-review-items {
	display: grid;
	gap: 6px;
	margin: 0;
	padding-left: 18px;
	font-size: 15px;
	line-height: 1.6;
	color: #4f4a44;
}

.return-request-review-items span {
	color: #777;
}

.return-request-process-refund {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #2f2a26;
}

.return-request-process-refund input {
	flex: 0 0 auto;
}

.live-chat-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 70;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.live-chat-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 104px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid #8b1e2f;
	border-radius: 999px;
	background: #8b1e2f;
	box-shadow: 0 16px 40px rgb(31 31 31 / 18%);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
}

.live-chat-toggle:hover {
	background: #741a29;
	border-color: #741a29;
}

.live-chat-pulse {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #a6e3b1;
	box-shadow: 0 0 0 5px rgb(166 227 177 / 22%);
}

.live-chat-panel {
	width: min(360px, calc(100vw - 32px));
	max-height: min(680px, calc(100vh - 112px));
	overflow: auto;
	border: 1px solid #eadfda;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 20px 70px rgb(31 31 31 / 20%);
}

.live-chat-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 18px;
	border-bottom: 1px solid #eee3dc;
	background: #fffaf8;
}

.live-chat-header p {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.live-chat-header strong {
	display: block;
	font-size: 18px;
	line-height: 1.25;
	color: #1f1f1f;
}

.live-chat-close {
	width: 32px;
	height: 32px;
	border: 1px solid #eadfda;
	border-radius: 999px;
	background: #fff;
	color: #4f4a44;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
}

.live-chat-thread {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 280px;
	overflow: auto;
	padding: 16px 18px 0;
}

.live-chat-bubble {
	max-width: 88%;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 14px;
	line-height: 1.55;
}

.live-chat-bubble-agent {
	border-bottom-left-radius: 4px;
	background: #f6f3ef;
	color: #3f3732;
}

.live-chat-bubble-customer {
	border-bottom-right-radius: 4px;
	background: #8b1e2f;
	color: #fff;
}

.live-chat-message {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.live-chat-message.is-agent {
	align-items: flex-start;
}

.live-chat-message.is-customer {
	align-items: flex-end;
}

.live-chat-message-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 88%;
	font-size: 11px;
	font-weight: 700;
	color: #7b716a;
}

.live-chat-typing {
	margin: 10px 18px 0;
	color: #7b716a;
	font-size: 12px;
	font-weight: 800;
}

.live-chat-typing.is-hidden {
	display: none;
}

.live-chat-status {
	margin: 12px 18px 0;
	padding: 9px 11px;
	border-radius: 10px;
	background: #f8f6f2;
	color: #625850;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.live-chat-status.is-online,
.live-chat-status.is-connected {
	background: #f3fbf6;
	color: #27603e;
}

.live-chat-status.is-offline {
	background: #fffaf0;
	color: #7a5520;
}

.live-chat-status.is-replied {
	background: #eaf5ff;
	color: #24557a;
}

.live-chat-status.is-closed {
	background: #fff5cf;
	color: #6f4c00;
}

.live-chat-status.is-connecting {
	background: #fffaf0;
	color: #7a5520;
}

.live-chat-form {
	padding: 16px 18px 18px;
}

.live-chat-identity-fields {
	display: grid;
	gap: 10px;
	margin-bottom: 10px;
}

.live-chat-widget.is-active .live-chat-identity-fields {
	display: none;
}

.live-chat-fields {
	display: grid;
	gap: 10px;
}

.live-chat-identity-fields label,
.live-chat-fields label {
	display: grid;
	gap: 6px;
}

.live-chat-identity-fields span,
.live-chat-fields span {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: #6b4b54;
}

.live-chat-identity-fields input,
.live-chat-identity-fields select,
.live-chat-fields input,
.live-chat-fields select,
.live-chat-fields textarea {
	width: 100%;
	border: 1px solid #d9d1cb;
	border-radius: 10px;
	padding: 11px 12px;
	background: #fff;
	font: inherit;
	color: #1f1f1f;
}

.live-chat-fields textarea:where(:not(#css-dedupe-1-14)) {
	resize: vertical;
	min-height: 96px;
}

.live-chat-submit {
	width: 100%;
	height: 44px;
	margin-top: 12px;
	border: 1px solid #8b1e2f;
	border-radius: 999px;
	background: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.live-chat-submit:hover {
	background: #741a29;
	border-color: #741a29;
}

.live-chat-submit:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.order-history-items.is-collapsed {
	display: none;
}

.order-history-kicker {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.order-history-card h2 {
	font-size: 24px;
	color: #111;
}

.order-history-total {
	font-size: 24px;
	font-weight: 700;
	color: #111;
}

.order-history-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.order-history-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
}

.order-history-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.order-history-item-name {
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.order-history-item-meta {
	margin-top: 4px;
	font-size: 14px;
	color: #666;
}

.order-history-item-price {
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.order-history-track-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	padding: 10px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #7a1f2b, #9f3a49);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 10px 24px rgba(122, 31, 43, 0.18);
	transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.order-history-track-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(122, 31, 43, 0.24);
	color: #fff;
	text-decoration: none;
}

.order-history-track-button:active {
	transform: translateY(0);
}

.order-history-track-button:focus-visible {
	outline: 3px solid rgba(122, 31, 43, 0.22);
	outline-offset: 3px;
}

.order-history-timeline {
	margin: 18px 0;
	padding: 18px;
	border: 1px solid #eadfda;
	border-radius: 12px;
	background: #fffaf8;
}

.order-history-timeline h3 {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.3;
	color: #1f1f1f;
}

.order-history-timeline ol {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.order-history-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding-left: 20px;
	font-size: 14px;
	color: #4f4a44;
}

.order-history-timeline li::before {
	position: absolute;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #8b1e2f;
	content: "";
}

.order-history-timeline li.cancelled::before {
	background: #b94a59;
}

.order-history-timeline span {
	font-weight: 700;
	color: #222;
}

.order-history-timeline time {
	font-size: 13px;
	color: #6f6f6f;
	text-align: right;
}

.admin-orders-filters {
	display: grid;
	grid-template-columns:
		minmax(280px, 1.8fr) minmax(180px, 0.8fr)
		minmax(220px, 1fr) minmax(190px, 0.9fr) auto;
	gap: 14px;
	align-items: center;
	margin: 22px 0 28px;
}

.admin-orders-filters input,
.admin-orders-filters select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-orders-filters input:focus,
.admin-orders-filters select:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.admin-orders-clear-filters {
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid #d8b7be;
	border-radius: 12px;
	background: #fffaf8;
	color: #8b1e2f;
	font: inherit;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}

.admin-orders-clear-filters:hover {
	background: #fff1f3;
	border-color: #8b1e2f;
}

.admin-order-detail {
	margin-top: 28px;
}

#admin-orders-list .order-history-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

#admin-orders-list .order-history-action {
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid #8b1e2f;
	background: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: transform 0.18s ease, box-shadow 0.18s ease,
		background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	box-shadow: 0 8px 18px rgba(139, 30, 47, 0.14);
}

#admin-orders-list .order-history-action:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(139, 30, 47, 0.18);
}

#admin-orders-list .order-history-action.secondary {
	background: #fffaf8;
	color: #8b1e2f;
	border-color: #d8b7be;
	box-shadow: none;
}

#admin-orders-list .order-history-action.secondary:hover {
	background: #fff1f3;
	border-color: #8b1e2f;
}

#admin-orders-list .order-history-action.danger {
	background: #fff;
	color: #8b1e2f;
	border-color: #d8a8ae;
	box-shadow: none;
}

#admin-orders-list .order-history-action.danger:hover {
	background: #fff5f6;
	border-color: #8b1e2f;
}

#admin-orders-list .order-history-action:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.admin-order-shipping-controls {
	display: grid;
	grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr) auto;
	gap: 14px;
	align-items: end;
	margin-bottom: 16px;
}

.admin-order-carrier-field,
.admin-order-tracking-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin-order-carrier-field label,
.admin-order-tracking-field label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-order-carrier-select,
.admin-order-tracking-input {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-order-carrier-select:focus,
.admin-order-tracking-input:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.admin-order-carrier-select:disabled,
.admin-order-tracking-input:disabled {
	background: #f5f5f5;
	color: #777;
	cursor: not-allowed;
}

.admin-order-timeline {
	margin: 18px 0;
	padding: 18px;
	border: 1px solid #eadfda;
	border-radius: 12px;
	background: #fffaf8;
}

.admin-order-timeline h3 {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.3;
	color: #1f1f1f;
}

.admin-order-timeline ol {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.admin-order-timeline li {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding-left: 20px;
	font-size: 14px;
	color: #4f4a44;
}

.admin-order-timeline li::before {
	position: absolute;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #8b1e2f;
	content: "";
}

.admin-order-timeline li.cancelled::before {
	background: #b94a59;
}

.admin-order-timeline span {
	font-weight: 700;
	color: #222;
}

.admin-order-timeline time {
	font-size: 13px;
	color: #6f6f6f;
	text-align: right;
}

.admin-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0 26px;
}

.admin-dashboard-card {
	display: flex;
	min-height: 118px;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 18px;
	border: 1px solid #e5d7da;
	border-radius: 12px;
	background: #fff;
	color: #222;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.admin-dashboard-card:hover {
	color: #222;
	text-decoration: none;
}

.admin-dashboard-filter-card {
	width: 100%;
	text-align: left;
	font: inherit;
	cursor: pointer;
}

.admin-dashboard-filter-card:focus-visible {
	outline: 3px solid rgba(139, 30, 47, 0.22);
	outline-offset: 3px;
}

.admin-dashboard-card span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-dashboard-card strong {
	font-size: 34px;
	line-height: 1;
	color: #111;
}

.admin-dashboard-card small {
	font-size: 13px;
	line-height: 1.4;
	color: #6f6f6f;
}

.admin-dashboard-card.warning {
	border-color: #e4c987;
	background: #fffaf0;
}

.admin-dashboard-card.info {
	border-color: #9ecff0;
	background: #f2f9ff;
}

.admin-dashboard-card.success {
	border-color: #9fd4b4;
	background: #f3fbf6;
}

.admin-dashboard-card.attention {
	border-color: #d8a8ae;
	background: #fff5f6;
}

.admin-dashboard-card.critical {
	border-color: #d8a8ae;
	background: #fff5f6;
}

.admin-dashboard-card.muted {
	border-color: #d9d9d9;
	background: #f8f8f8;
}

.admin-messages-dashboard {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-messages-filters {
	grid-template-columns:
		minmax(280px, 1.6fr)
		minmax(160px, 0.7fr)
		minmax(180px, 0.8fr)
		minmax(190px, 0.9fr)
		minmax(170px, 0.8fr)
		minmax(160px, 0.7fr)
		auto;
}

.admin-messages-list {
	display: grid;
	gap: 18px;
}

.admin-message-card {
	padding: 20px;
	border: 1px solid #eadfda;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.admin-message-card.is-selected {
	border-color: #8b1e2f;
	box-shadow: 0 14px 34px rgba(139, 30, 47, 0.12);
}

.admin-message-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.admin-message-card-header h2 {
	margin: 4px 0;
	font-size: 22px;
	line-height: 1.25;
	color: #111;
}

.admin-message-card-header p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #5f5650;
}

.admin-chat-meta-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.admin-message-card-header .admin-chat-assignee {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: #f2eee9;
	color: #5b5048;
	font-size: 12px;
	font-weight: 800;
}

.admin-message-status-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.admin-chat-unread {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #8b1e2f;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.admin-chat-priority {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
}

.admin-chat-priority.priority-urgent {
	background: #8b1e2f;
	color: #fff;
}

.admin-chat-priority.priority-high {
	background: #fff0d8;
	color: #754000;
}

.admin-chat-priority.priority-normal {
	background: #edf7f0;
	color: #27643e;
}

.admin-chat-priority.priority-low {
	background: #eef3f7;
	color: #4d5b67;
}

.admin-chat-label {
	display: inline-flex;
	align-items: center;
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff5cf;
	color: #6f4c00;
	font-size: 12px;
	font-weight: 800;
}

.admin-chat-order-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #eef7fb;
	color: #15536a;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.admin-chat-order-link:hover {
	color: #15536a;
	text-decoration: none;
}

.admin-chat-order-link span {
	font-size: 11px;
	font-weight: 700;
	text-transform: none;
	color: #52656d;
}

.admin-message-body {
	padding: 16px;
	border: 1px solid #eee3dc;
	border-radius: 12px;
	background: #fffaf8;
}

.admin-message-body p {
	margin: 0;
	white-space: pre-wrap;
	font-size: 15px;
	line-height: 1.7;
	color: #2f2a26;
}

.admin-message-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 12px 0 18px;
	font-size: 13px;
	color: #6f6f6f;
}

.admin-message-meta a {
	color: #8b1e2f;
	font-weight: 700;
}

.admin-message-form-grid {
	display: grid;
	grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
	gap: 14px;
}

.admin-message-form-grid label {
	display: grid;
	gap: 8px;
}

.admin-message-form-grid span {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-message-form-grid select,
.admin-message-form-grid textarea {
	width: 100%;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-message-form-grid select:where(:not(#css-dedupe-1-15)) {
	min-height: 46px;
	padding: 0 14px;
}

.admin-message-form-grid textarea:where(:not(#css-dedupe-1-16)) {
	min-height: 110px;
	padding: 12px 14px;
	resize: vertical;
}

.admin-message-form-wide {
	grid-column: 1 / -1;
}

.admin-message-actions {
	margin-bottom: 0;
}

.admin-chat-quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
}

.admin-chat-quick-actions .order-history-action {
	min-height: 40px;
}

.admin-chat-thread-panel {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #eee3dc;
}

.admin-chat-context {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 16px 0;
}

.admin-chat-context-section {
	padding: 14px;
	border: 1px solid #eee3dc;
	border-radius: 12px;
	background: #fffdfb;
}

.admin-chat-context-section h3 {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.3;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-chat-context-item {
	padding: 10px 0;
	border-top: 1px solid #f1e8e4;
}

.admin-chat-context-item:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.admin-chat-context-item strong,
.admin-chat-context-item time {
	display: block;
	font-size: 13px;
	line-height: 1.45;
}

.admin-chat-context-item strong:where(:not(#css-dedupe-1-17)) {
	color: #1f1f1f;
}

.admin-chat-context-item time:where(:not(#css-dedupe-1-18)) {
	color: #7b7069;
}

.admin-chat-context-item p,
.admin-chat-context-empty {
	margin: 6px 0 0;
	white-space: pre-wrap;
	font-size: 13px;
	line-height: 1.55;
	color: #4f4a44;
}

.admin-chat-thread {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 340px;
	overflow: auto;
	padding: 14px;
	border: 1px solid #eee3dc;
	border-radius: 12px;
	background: #fffaf8;
}

.admin-chat-thread-empty {
	margin: 0;
	color: #6f6f6f;
	font-size: 14px;
	font-weight: 700;
}

.admin-chat-thread-message {
	display: grid;
	gap: 6px;
	max-width: 82%;
}

.admin-chat-thread-message.is-admin {
	justify-self: end;
}

.admin-chat-thread-message.is-customer {
	justify-self: start;
}

.admin-chat-thread-message-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	color: #786f68;
}

.admin-chat-thread-message p {
	margin: 0;
	padding: 12px 14px;
	border-radius: 13px;
	background: #f2eee9;
	font-size: 14px;
	line-height: 1.6;
	white-space: pre-wrap;
	color: #2f2a26;
}

.admin-chat-thread-message.is-admin p {
	border-bottom-right-radius: 4px;
	background: #8b1e2f;
	color: #fff;
}

.admin-chat-thread-message.is-customer p {
	border-bottom-left-radius: 4px;
}

.admin-chat-typing {
	margin: 10px 2px 0;
	color: #786f68;
	font-size: 13px;
	font-weight: 800;
}

.admin-chat-typing.is-hidden {
	display: none;
}

.admin-chat-reply-form {
	margin-top: 14px;
}

.admin-chat-template-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.admin-chat-template-button {
	min-height: 36px;
	border: 1px solid #eadfda;
	border-radius: 8px;
	padding: 0 12px;
	background: #fff;
	color: #6b2534;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.admin-chat-template-button:hover,
.admin-chat-template-button:focus-visible {
	border-color: #8b1e2f;
	background: #fff5f6;
	color: #8b1e2f;
	outline: none;
}

.admin-chat-reply-form label {
	display: grid;
	gap: 8px;
}

.admin-chat-reply-form span {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-chat-reply-form textarea {
	width: 100%;
	min-height: 96px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	padding: 12px 14px;
	background: #fff;
	font: inherit;
	color: #222;
	resize: vertical;
}

.order-history-status.chat-new {
	background: #fff5cf;
	color: #6f4c00;
}

.order-history-status.chat-open {
	background: #eaf5ff;
	color: #24557a;
}

.order-history-status.chat-replied {
	background: #e7f7ed;
	color: #27603e;
}

.order-history-status.chat-closed {
	background: #efefef;
	color: #555;
}

.admin-inventory-filters {
	grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 0.7fr);
}

.admin-add-product-form {
	margin: 22px 0 26px;
	padding: 22px;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.admin-add-product-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.admin-add-product-heading h2 {
	margin: 4px 0 0;
	font-size: 24px;
	line-height: 1.2;
}

#admin-add-product-status {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #6f6f6f;
	text-align: right;
}

#admin-add-product-status.success {
	color: #277047;
}

#admin-add-product-status.error {
	color: #8b1e2f;
}

.admin-add-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.admin-add-product-grid label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin-add-product-grid span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-add-product-grid input:not([type="radio"]),
.admin-add-product-grid textarea {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-add-product-grid textarea:where(:not(#css-dedupe-1-19)) {
	min-height: 92px;
	padding-top: 12px;
	resize: vertical;
}

.admin-add-product-grid input:not([type="radio"]):focus,
.admin-add-product-grid textarea:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.admin-add-product-wide {
	grid-column: span 2;
}

.admin-add-product-options {
	display: flex;
	align-items: end;
	gap: 12px;
}

.admin-product-image-preview {
	display: flex;
	min-height: 126px;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border: 1px solid #e1d6d8;
	border-radius: 12px;
	background: #fffaf8;
}

.admin-product-image-preview img {
	width: 100%;
	max-width: 160px;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
}

.admin-product-image-empty {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #7b6a6a;
	text-align: center;
}

.admin-image-upload {
	display: flex;
	align-items: center;
	gap: 12px;
}

.admin-image-upload-button {
	position: relative;
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border: 1px solid #8b1e2f;
	border-radius: 8px;
	background: #fff;
	color: #8b1e2f;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.admin-image-upload-button:hover {
	background: #fff3f4;
}

.admin-image-upload-button input {
	position: absolute;
	width: 1px;
	height: 1px;
	min-height: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.admin-image-upload p {
	margin: 0;
	color: #6d6466;
	font-size: 13px;
}

.admin-gallery-image-preview {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
	gap: 10px;
}

.admin-gallery-image-preview img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	border: 1px solid #e1d6d8;
	border-radius: 8px;
	background: #fff;
}

.admin-gallery-image-preview p {
	grid-column: 1 / -1;
	margin: 0;
	color: #6d6466;
	font-size: 13px;
}

.admin-add-product-button {
	min-height: 46px;
	margin-top: 18px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid #8b1e2f;
	background: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.admin-add-product-button:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.admin-inventory-list {
	display: grid;
	gap: 16px;
}

.admin-inventory-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
	gap: 18px;
	align-items: center;
	padding: 22px;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.admin-inventory-card.is-archived {
	border-color: #d9d9d9;
	background: #fbfbfb;
}

.admin-inventory-product {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.admin-inventory-product-thumb {
	width: 92px;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	flex: 0 0 auto;
	border: 1px solid #eadcde;
	border-radius: 10px;
	background: #fffaf8;
}

.admin-inventory-product h2 {
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 1.2;
}

.admin-inventory-product .product-status {
	display: inline-block;
	margin: 14px 0 0;
}

.admin-inventory-archive-note {
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 700;
	color: #6f6f6f;
}

.admin-inventory-product-link {
	display: inline-flex;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 800;
	color: #8b1e2f;
	text-decoration: none;
}

.admin-inventory-product-link:hover {
	text-decoration: underline;
}

.admin-inventory-controls {
	display: grid;
	grid-template-columns: minmax(120px, 0.8fr) minmax(120px, 0.6fr) minmax(
			150px,
			0.8fr
		);
	gap: 14px;
	align-items: end;
}

.admin-inventory-stock-breakdown {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.admin-inventory-stock-breakdown div {
	min-height: 70px;
	padding: 12px;
	border: 1px solid #eadcde;
	border-radius: 10px;
	background: #fffaf8;
}

.admin-inventory-stock-breakdown span {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-inventory-stock-breakdown strong {
	display: block;
	font-size: 22px;
	line-height: 1;
	color: #111;
}

.admin-inventory-stock-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin-inventory-stock-field span,
.admin-inventory-toggle span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-inventory-stock-field input {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-inventory-stock-field input:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.admin-inventory-toggle {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	justify-content: flex-start;
	padding: 0 14px;
	border: 1px solid #e1d6d8;
	border-radius: 12px;
	background: #fffaf8;
	cursor: pointer;
}

.admin-inventory-toggle input[type="radio"] {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	accent-color: #8b1e2f;
}

.admin-inventory-toggle:has(input[type="radio"]:checked) {
	border-color: #8b1e2f;
	background: #fff4f6;
	box-shadow: inset 0 0 0 1px rgba(139, 30, 47, 0.08);
}

.admin-inventory-availability {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-self: end;
}

.admin-inventory-actions {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.admin-inventory-actions .order-history-action {
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid #8b1e2f;
	background: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.admin-inventory-actions .order-history-action.secondary {
	border-color: #cfc7c9;
	background: #fff;
	color: #6b4b54;
}

.admin-inventory-actions .order-history-action:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.admin-inventory-action-status,
.admin-inventory-save-status {
	font-size: 14px;
	font-weight: 700;
	color: #6f6f6f;
}

.admin-inventory-action-status.success,
.admin-inventory-save-status.success {
	color: #277047;
}

.admin-inventory-action-status.error,
.admin-inventory-save-status.error {
	color: #8b1e2f;
}

.admin-inventory-detail-editor {
	grid-column: 1 / -1;
	padding-top: 16px;
	border-top: 1px solid #eee0e3;
}

.admin-inventory-detail-editor summary {
	width: fit-content;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.admin-inventory-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.admin-inventory-detail-grid label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin-inventory-detail-grid span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b4b54;
}

.admin-inventory-detail-grid input:not([type="radio"]),
.admin-inventory-detail-grid textarea {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid #d8d8d8;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: #222;
}

.admin-inventory-detail-grid textarea:where(:not(#css-dedupe-1-20)) {
	min-height: 92px;
	padding-top: 12px;
	resize: vertical;
}

.admin-inventory-detail-grid input:not([type="radio"]):focus,
.admin-inventory-detail-grid textarea:focus {
	outline: none;
	border-color: #9ecff0;
	box-shadow: 0 0 0 3px rgba(126, 188, 230, 0.18);
}

.admin-inventory-detail-wide {
	grid-column: span 2;
}

.admin-inventory-detail-grid .admin-inventory-availability {
	grid-column: span 2;
}

.admin-inventory-detail-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.admin-inventory-detail-actions .order-history-action {
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid #8b1e2f;
	background: #8b1e2f;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.admin-inventory-detail-actions .order-history-action.secondary {
	border-color: #d6c8bc;
	background: #fffaf3;
	color: #5f4b43;
}

.admin-inventory-cancel-button {
	position: relative;
	box-shadow: inset 0 0 0 1px rgba(139, 30, 47, 0.05);
	transition: border-color 0.18s ease, background-color 0.18s ease,
		color 0.18s ease, transform 0.18s ease;
}

.admin-inventory-cancel-button::before {
	content: "×";
	margin-right: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.admin-inventory-cancel-button:hover {
	border-color: #8b1e2f;
	background: #fff3f1;
	color: #8b1e2f;
	transform: translateY(-1px);
}

.admin-inventory-detail-actions .order-history-action:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.admin-inventory-toast-container {
	position: fixed;
	top: 96px;
	right: 24px;
	z-index: 3000;
	display: grid;
	gap: 10px;
	width: min(340px, calc(100vw - 32px));
	pointer-events: none;
}

.admin-inventory-toast {
	padding: 14px 16px;
	border: 1px solid #d8c4c8;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
	color: #2d2528;
	font-size: 14px;
	font-weight: 800;
}

.admin-inventory-toast.success {
	border-color: #b7d8c1;
	color: #1e6b3f;
}

.admin-inventory-toast.error {
	border-color: #e2bdc5;
	color: #8b1e2f;
}

.thank-you-section {
	padding: 52px 0 80px;
}

.thank-you-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 42px 38px;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 22px;
	text-align: center;
}

.thank-you-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #f3e8eb;
	color: #8b1e2f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	font-weight: 700;
}

.thank-you-kicker {
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.thank-you-card h1 {
	margin-bottom: 14px;
	font-size: 46px;
	line-height: 1.08;
	color: #111;
}

.thank-you-text {
	max-width: 560px;
	margin: 0 auto 28px;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

.thank-you-order-box {
	margin: 0 auto 22px;
	padding: 10px 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}

.thank-you-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 15px;
	color: #555;
}

.thank-you-item-name {
	text-align: left;
}

.thank-you-item-price {
	font-weight: 700;
	color: #111;
}

.thank-you-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-size: 15px;
	color: #555;
	border-bottom: 1px solid #f0f0f0;
}

.thank-you-row:last-child {
	border-bottom: none;
}

.thank-you-row span:last-child {
	font-weight: 700;
	color: #111;
}

.thank-you-note {
	margin-bottom: 28px;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.thank-you-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.thank-you-secondary-btn {
	color: #333;
	border-color: #d7d7d7;
	background-color: #fff;
	backdrop-filter: none;
}

.thank-you-secondary-btn:hover {
	background-color: #f3f3f3;
}

.cart-empty {
	padding: 28px 0;
	text-align: center;
}

.cart-empty p {
	margin-bottom: 10px;
	font-size: 16px;
	color: #555;
}

.cart-empty a {
	font-size: 15px;
	font-weight: 600;
	color: #8b1e2f;
}

.is-disabled {
	pointer-events: none;
	opacity: 0.5;
}

.product-status {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-status.coming-soon {
	color: #8b1e2f;
}

.product-status.out-of-stock {
	color: #777;
}

.product-status.low-stock {
	color: #9a5b00;
}

.product-status.in-stock {
	color: #277047;
}

.product-status.inactive,
.product-status.archived,
.product-status.max-in-cart {
	color: #6f6f6f;
}

.card-link.disabled {
	background-color: #d8d8d8;
	color: #353535;
	border: 1px solid #b8b8b8;
	cursor: default;
	pointer-events: none;
}

button.card-link:disabled {
	background-color: #d8d8d8;
	color: #353535;
	border: 1px solid #b8b8b8;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.legal-page {
	background: #f6f3ef;
	color: #2c2c2c;
}

.legal-section {
	padding: 56px 0 88px;
}

.legal-container {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 20px;
}

.legal-breadcrumb {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #7a746c;
}

.legal-breadcrumb a {
	color: #7a746c;
	text-decoration: none;
}

.legal-breadcrumb a:hover {
	color: #8b1e2f;
}

.legal-card {
	background: #fffdf9;
	border: 1px solid #e8dfd3;
	border-radius: 24px;
	padding: 48px 52px;
	box-shadow: 0 10px 30px rgba(45, 28, 12, 0.06);
}

.legal-kicker {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8b1e2f;
}

.legal-card h1 {
	margin: 0 0 12px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: 0;
	color: #1f1f1f;
}

.legal-meta {
	margin: 0 0 36px;
	font-size: 14px;
	line-height: 1.8;
	color: #7a746c;
}

.legal-block {
	margin-top: 0;
	margin-bottom: 34px;
}

.legal-block:last-child {
	margin-bottom: 0;
}

.legal-block h2 {
	margin: 0 0 14px;
	font-size: 26px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 0;
	color: #1f1f1f;
}

.legal-block p {
	margin: 0 0 16px;
	font-size: 17px;
	line-height: 1.85;
	color: #4f4a44;
}

.legal-block p:last-child {
	margin-bottom: 0;
}

.legal-block ul,
.legal-block ol {
	margin: 12px 0 18px;
	padding-left: 22px;
}

.legal-block li {
	margin-bottom: 10px;
	padding-left: 4px;
	font-size: 17px;
	line-height: 1.8;
	color: #4f4a44;
}

.legal-block strong {
	color: #1f1f1f;
	font-weight: 600;
}

.legal-block a {
	color: #8b1e2f;
	text-decoration: none;
}

.legal-block a:hover {
	text-decoration: underline;
}

.legal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.legal-actions a {
	min-width: 150px;
	text-align: center;
	text-decoration: none;
}

.legal-actions a:hover {
	text-decoration: none;
}

.legal-note {
	margin-top: 18px;
	padding: 14px 16px;
	border-left: 4px solid #8b1e2f;
	background-color: #f9f2f4;
	font-size: 15px;
	line-height: 1.7;
	color: #5f1724;
}

.product-tile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.product-tile-actions .card-link,
.product-tile-actions button.card-link {
	height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
}

.product-tile-actions button.card-link:where(:not(#css-dedupe-1-21)) {
	border: none;
	cursor: pointer;
}

.card-link-secondary {
	background-color: #fff;
	color: #111;
	border: 1px solid #d7d7d7;
}

.card-link-secondary:hover {
	background-color: #f3f3f3;
}

.payment-element-shell {
	margin-top: 10px;
	padding: 18px;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	background-color: #fff;
}

#payment-element {
	min-height: 44px;
}

#payment-element-message.is-hidden {
	display: none;
}

.order-history-card-summary {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.order-history-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.order-history-status.paid {
	background-color: rgba(34, 139, 34, 0.12);
	color: #1f6f2a;
}

.order-history-status.pending {
	background-color: rgba(184, 134, 11, 0.14);
	color: #8a6110;
}

.order-history-status.failed {
	background-color: rgba(178, 34, 34, 0.12);
	color: #9f1f1f;
}

.order-history-status.unfulfilled {
	background-color: rgba(184, 134, 11, 0.14);
	color: #8a6110;
}

.order-history-status.fulfilled {
	background-color: rgba(34, 139, 34, 0.12);
	color: #1f6f2a;
}

.order-history-status.shipped {
	background-color: rgba(30, 64, 175, 0.12);
	color: #1d4ed8;
}

.order-history-status.delivered {
	background-color: rgba(83, 53, 140, 0.12);
	color: #5b21b6;
}

.order-history-status.cancelled {
	background-color: rgba(107, 114, 128, 0.14);
	color: #4b5563;
}

.order-history-status.return-submitted,
.order-history-status.return-in-review {
	background-color: rgba(184, 134, 11, 0.14);
	color: #8a6110;
}

.order-history-status.return-approved {
	background-color: rgba(30, 64, 175, 0.12);
	color: #1d4ed8;
}

.order-history-status.return-resolved {
	background-color: rgba(34, 139, 34, 0.12);
	color: #1f6f2a;
}

.order-history-status.return-rejected,
.order-history-status.return-closed {
	background-color: rgba(107, 114, 128, 0.14);
	color: #4b5563;
}

#shipping-method {
	min-height: 48px;
}

.checkout-summary-row span:last-child {
	text-align: right;
}

.thank-you-hero-card {
	padding: 32px;
	border: 1px solid rgba(122, 23, 44, 0.08);
	box-shadow: 0 18px 50px rgba(20, 20, 20, 0.06);
}

.thank-you-hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(122, 23, 44, 0.08);
	color: #7a172c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.thank-you-hero-card h1 {
	margin-bottom: 12px;
}

.thank-you-hero-copy {
	margin: 0;
	max-width: 620px;
	line-height: 1.7;
	color: rgba(34, 34, 34, 0.8);
}

.thank-you-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}

.thank-you-meta-item {
	padding: 16px 18px;
	border-radius: 16px;
	background: #faf7f4;
	border: 1px solid rgba(122, 23, 44, 0.06);
}

.thank-you-meta-label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(34, 34, 34, 0.55);
}

.thank-you-summary-card {
	border: 1px solid rgba(122, 23, 44, 0.08);
	box-shadow: 0 18px 50px rgba(20, 20, 20, 0.06);
}

.thank-you-summary-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
}

.thank-you-summary-kicker {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(34, 34, 34, 0.55);
}

.checkout-summary-divider {
	height: 1px;
	background: rgba(34, 34, 34, 0.08);
	margin: 16px 0;
}

.thank-you-summary-note {
	margin-top: 16px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(34, 34, 34, 0.68);
}

.thank-you-actions-card h2 {
	margin-bottom: 18px;
}

@media (max-width: 1100px) {
	.hero-content h1 {
		font-size: 44px;
	}

	.featured-grid:where(:not(#css-dedupe-1-22)) {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
	body:where(:not(#css-dedupe-1-23)) {
		padding-top: 155px;
	}

	.container:where(:not(#css-dedupe-1-24)) {
		padding: 0 20px;
		max-width: 100%;
	}

	.site-header:where(:not(#css-dedupe-1-25)) {
		height: auto;
		padding: 14px 0;
	}

	.site-header .container:where(:not(#css-dedupe-2-26)) {
		flex-wrap: wrap;
		gap: 16px;
	}

	.logo {
		width: 170px;
		margin-right: 20px;
	}

	.search-bar {
		width: 100%;
		max-width: 100%;
		height: 46px;
		order: 3;
	}

	.right-menu:where(:not(#css-dedupe-1-27)) {
		flex: 1 1 auto;
		justify-content: flex-end;
		gap: 16px;
		flex-wrap: wrap;
	}

	.icon-button:where(:not(#css-dedupe-1-28)) {
		font-size: 16px;
	}

	.icon-button .icon:where(:not(#css-dedupe-1-29)) {
		font-size: 18px;
	}

	.secondary-nav-container:where(:not(#css-dedupe-1-30)) {
		min-height: 54px;
		padding: 12px 0;
		flex-wrap: wrap;
		gap: 18px;
	}

	.hero-slide:where(:not(#css-dedupe-1-31)) {
		min-height: 540px;
	}

	.hero-content:where(:not(#css-dedupe-1-32)) {
		padding: 72px 0 68px 20px;
		max-width: 640px;
	}

	.hero-title:where(:not(#css-dedupe-1-33)) {
		font-size: 50px;
	}

	.hero-text:where(:not(#css-dedupe-1-34)) {
		font-size: 18px;
		max-width: 560px;
	}

	.featured-grid:where(:not(#css-dedupe-2-35)) {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.account-label {
		display: none;
	}

	.returns-label {
		display: none;
	}

	.cart-label {
		display: inline;
	}

	.shop-hero h1:where(:not(#css-dedupe-1-38)) {
		font-size: 38px;
	}

	.shop-toolbar:where(:not(#css-dedupe-1-39)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.shop-controls:where(:not(#css-dedupe-1-40)) {
		flex-wrap: wrap;
	}

	.shop-grid:where(:not(#css-dedupe-1-41)) {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-detail-grid:where(:not(#css-dedupe-1-42)) {
		grid-template-columns: 1fr;
	}

	.product-main-image img:where(:not(#css-dedupe-1-43)) {
		height: 420px;
	}

	.product-detail-title:where(:not(#css-dedupe-1-44)) {
		font-size: 38px;
	}

	.cart-layout:where(:not(#css-dedupe-1-45)) {
		grid-template-columns: 1fr;
	}

	.cart-summary-card:where(:not(#css-dedupe-2-46)) {
		padding: 24px;
	}

	.checkout-layout:where(:not(#css-dedupe-1-47)) {
		grid-template-columns: 1fr;
	}

	.checkout-summary-card:where(:not(#css-dedupe-2-48)) {
		padding: 24px;
	}

	.auth-shell:where(:not(#css-dedupe-1-49)) {
		grid-template-columns: 1fr;
	}

	.auth-session-layout:where(:not(#css-dedupe-1-50)) {
		grid-template-columns: 1fr;
	}

	.auth-intro h1:where(:not(#css-dedupe-1-51)) {
		font-size: 38px;
	}

	.account-dropdown-menu:where(:not(#css-dedupe-1-52)) {
		width: 320px;
	}
}

/* =========================
   PHONE
========================= */
@media (max-width: 768px) {
	body:where(:not(#css-dedupe-2-53)) {
		padding-top: 140px;
		padding-bottom: 0;
	}

	.site-header:where(:not(#css-dedupe-2-54)) {
		position: fixed;
		height: auto;
		padding: 12px 0;
	}

	.site-header .container:where(:not(#css-dedupe-3-55)) {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.logo:where(:not(#css-dedupe-1-56)) {
		width: 150px;
		margin-right: 0;
		margin-bottom: 4px;
	}

	.search-bar:where(:not(#css-dedupe-1-57)) {
		width: 100%;
		max-width: 100%;
		height: 44px;
	}

	.search-bar input:where(:not(#css-dedupe-1-58)) {
		font-size: 16px;
	}

	.right-menu:where(:not(#css-dedupe-2-59)) {
		width: 100%;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 8px;
	}

	.icon-button:where(:not(#css-dedupe-2-60)) {
		font-size: 14px;
		gap: 0;
	}

	.icon-button .icon:where(:not(#css-dedupe-2-61)) {
		font-size: 18px;
	}

	.right-menu .icon-button[title="Returns & Orders"] {
		display: none;
	}

	.secondary-nav-container:where(:not(#css-dedupe-2-62)) {
		justify-content: center;
		flex-wrap: wrap;
		gap: 14px;
		padding: 10px 0;
	}

	.secondary-nav-container a:where(:not(#css-dedupe-1-63)) {
		font-size: 14px;
	}

	.hero-slide:where(:not(#css-dedupe-2-64)) {
		min-height: 460px;
		background-position: center center;
	}

	.hero-content:where(:not(#css-dedupe-2-65)) {
		padding: 56px 0 52px 0;
		max-width: 100%;
	}

	.hero-badge:where(:not(#css-dedupe-1-66)) {
		font-size: 11px;
		padding: 7px 12px;
		margin-bottom: 16px;
	}

	.hero-title:where(:not(#css-dedupe-2-67)) {
		font-size: 34px;
		line-height: 1.12;
		margin-bottom: 16px;
	}

	.hero-text:where(:not(#css-dedupe-2-68)) {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 24px;
		max-width: 100%;
	}

	.hero-actions:where(:not(#css-dedupe-1-69)) {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 24px;
	}

	.btn-primary:where(:not(#css-dedupe-2-70)),
	.btn-secondary:where(:not(#css-dedupe-2-71)) {
		width: 100%;
		max-width: 230px;
		height: 46px;
	}

	.hero-meta:where(:not(#css-dedupe-1-72)) {
		gap: 10px 18px;
		font-size: 13px;
	}

	.featured-section:where(:not(#css-dedupe-1-73)) {
		padding: 40px 0 50px;
	}

	.section-heading:where(:not(#css-dedupe-1-74)) {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 20px;
	}

	.section-heading h2:where(:not(#css-dedupe-1-75)) {
		font-size: 28px;
	}

	.featured-grid:where(:not(#css-dedupe-3-76)) {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.wine-card:where(:not(#css-dedupe-1-77)) {
		padding: 16px;
	}

	.wine-card img:where(:not(#css-dedupe-1-78)) {
		height: 220px;
	}

	.account-label:where(:not(#css-dedupe-1-83)),
	.returns-label:where(:not(#css-dedupe-1-84)),
	.cart-label:where(:not(#css-dedupe-1-85)) {
		display: none;
	}

	.shop-hero:where(:not(#css-dedupe-1-86)) {
		padding: 34px 0 26px;
	}

	.shop-hero h1:where(:not(#css-dedupe-2-87)) {
		font-size: 32px;
	}

	.shop-hero p:last-child:where(:not(#css-dedupe-1-88)) {
		font-size: 16px;
	}

	.shop-controls:where(:not(#css-dedupe-2-89)) {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.shop-controls select:where(:not(#css-dedupe-1-90)) {
		width: 100%;
	}

	.shop-grid:where(:not(#css-dedupe-2-91)) {
		grid-template-columns: 1fr;
	}

	.product-image-wrap img:where(:not(#css-dedupe-1-92)) {
		height: 240px;
	}

	.product-tile-footer:where(:not(#css-dedupe-1-93)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.product-detail-section:where(:not(#css-dedupe-1-94)) {
		padding: 30px 0 44px;
	}

	.product-main-image:where(:not(#css-dedupe-1-95)) {
		padding: 20px;
	}

	.product-main-image img:where(:not(#css-dedupe-2-96)) {
		height: 320px;
	}

	.product-thumbs:where(:not(#css-dedupe-1-97)) {
		gap: 10px;
	}

	.product-thumb img:where(:not(#css-dedupe-1-98)) {
		height: 70px;
	}

	.product-info:where(:not(#css-dedupe-1-99)) {
		padding: 24px 20px;
	}

	.product-detail-title:where(:not(#css-dedupe-2-100)) {
		font-size: 32px;
	}

	.product-detail-price:where(:not(#css-dedupe-1-101)) {
		font-size: 28px;
	}

	.product-purchase-row:where(:not(#css-dedupe-1-102)) {
		flex-direction: column;
		align-items: stretch;
	}

	.product-action-buttons:where(:not(#css-dedupe-1-103)) {
		flex-direction: column;
	}

	.product-action-buttons .btn-primary,
	.product-action-buttons .btn-secondary {
		width: 100%;
		max-width: 100%;
	}

	.product-description-card:where(:not(#css-dedupe-1-104)) {
		padding: 24px 20px;
	}

	.cart-section:where(:not(#css-dedupe-1-105)) {
		padding: 30px 0 50px;
	}

	.cart-header h1:where(:not(#css-dedupe-1-106)) {
		font-size: 34px;
	}

	.cart-items-card:where(:not(#css-dedupe-2-107)) {
		padding: 8px 18px 18px;
	}

	.cart-table-head:where(:not(#css-dedupe-1-108)) {
		display: none;
	}

	.cart-item:where(:not(#css-dedupe-1-109)) {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px 0;
	}

	.cart-product:where(:not(#css-dedupe-1-110)) {
		align-items: flex-start;
	}

	.cart-product-image:where(:not(#css-dedupe-1-111)) {
		width: 96px;
		height: 96px;
	}

	.cart-qty,
	.cart-line-total:where(:not(#css-dedupe-1-112)) {
		padding-left: 114px;
	}

	.cart-actions:where(:not(#css-dedupe-1-113)) {
		flex-direction: column;
		align-items: stretch;
	}

	.cart-summary-card h2:where(:not(#css-dedupe-1-114)) {
		font-size: 24px;
	}

	.cart-checkout-btn:where(:not(#css-dedupe-1-115)) {
		max-width: 100%;
	}

	.checkout-section:where(:not(#css-dedupe-1-116)) {
		padding: 30px 0 50px;
	}

	.checkout-header h1:where(:not(#css-dedupe-1-117)) {
		font-size: 34px;
	}

	.checkout-card:where(:not(#css-dedupe-2-118)),
	.checkout-summary-card:where(:not(#css-dedupe-3-119)) {
		padding: 22px 18px;
	}

	.checkout-card h2:where(:not(#css-dedupe-1-120)),
	.checkout-summary-card h2:where(:not(#css-dedupe-1-121)) {
		font-size: 24px;
	}

	.checkout-grid.two-col:where(:not(#css-dedupe-1-122)) {
		grid-template-columns: 1fr;
	}

	.payment-tabs:where(:not(#css-dedupe-1-123)) {
		flex-direction: column;
		align-items: stretch;
	}

	.payment-tab:where(:not(#css-dedupe-1-124)) {
		width: 100%;
	}

	.checkout-place-order:where(:not(#css-dedupe-1-125)) {
		max-width: 100%;
	}

	.thank-you-section:where(:not(#css-dedupe-1-126)) {
		padding: 36px 0 56px;
	}

	.thank-you-card:where(:not(#css-dedupe-1-127)) {
		padding: 30px 20px;
	}

	.thank-you-card h1:where(:not(#css-dedupe-1-128)) {
		font-size: 34px;
	}

	.thank-you-text:where(:not(#css-dedupe-1-129)) {
		font-size: 16px;
	}

	.thank-you-row:where(:not(#css-dedupe-1-130)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.thank-you-actions:where(:not(#css-dedupe-1-131)) {
		flex-direction: column;
		align-items: stretch;
	}

	.thank-you-actions .btn-primary,
	.thank-you-actions .btn-secondary {
		width: 100%;
		max-width: 100%;
	}

	.thank-you-item:where(:not(#css-dedupe-1-132)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.saved-item:where(:not(#css-dedupe-1-133)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.auth-section:where(:not(#css-dedupe-1-134)) {
		padding: 34px 0 56px;
	}

	.auth-card:where(:not(#css-dedupe-1-135)) {
		padding: 22px 18px;
	}

	.auth-tabs:where(:not(#css-dedupe-1-136)) {
		flex-direction: column;
	}

	.auth-tab:where(:not(#css-dedupe-1-137)) {
		width: 100%;
	}

	.auth-row:where(:not(#css-dedupe-1-138)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.auth-intro h1:where(:not(#css-dedupe-2-139)) {
		font-size: 34px;
	}

	.auth-session-card:where(:not(#css-dedupe-1-140)) {
		padding: 22px 18px;
	}

	.auth-session-security-title:where(:not(#css-dedupe-1-141)) {
		font-size: 24px;
	}

	.order-history-section:where(:not(#css-dedupe-1-142)) {
		padding: 30px 0 50px;
	}

	.order-history-header h1:where(:not(#css-dedupe-1-143)) {
		font-size: 34px;
	}

	.order-history-card:where(:not(#css-dedupe-1-144)) {
		padding: 20px 18px;
	}

	.order-history-card-header:where(:not(#css-dedupe-1-145)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.order-history-total:where(:not(#css-dedupe-1-146)) {
		font-size: 20px;
	}

	.order-history-item:where(:not(#css-dedupe-1-147)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.order-history-actions:where(:not(#css-dedupe-1-148)) {
		flex-direction: column;
		align-items: stretch;
	}

	.order-history-action:where(:not(#css-dedupe-1-149)) {
		width: 100%;
	}

	.return-request-form-grid:where(:not(#css-dedupe-1-150)),
	.return-request-admin-grid:where(:not(#css-dedupe-1-151)),
	.return-request-review-grid:where(:not(#css-dedupe-1-152)) {
		grid-template-columns: 1fr;
	}

	.return-request-summary:where(:not(#css-dedupe-1-153)),
	.return-request-review-heading:where(:not(#css-dedupe-1-154)) {
		flex-direction: column;
		align-items: stretch;
	}

	.order-history-card-summary
		.return-request-summary:where(:not(#css-dedupe-1-155)) {
		align-items: stretch;
		min-width: 0;
		text-align: left;
	}

	.order-history-dashboard:where(:not(#css-dedupe-1-156)),
	.order-history-filters:where(:not(#css-dedupe-1-157)) {
		grid-template-columns: 1fr;
	}

	.order-history-clear-filters:where(:not(#css-dedupe-1-158)) {
		width: 100%;
	}

	.order-history-timeline li:where(:not(#css-dedupe-1-159)) {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.order-history-timeline time:where(:not(#css-dedupe-1-160)) {
		text-align: left;
	}

	.auth-session-actions:where(:not(#css-dedupe-1-161)) {
		flex-direction: column;
		align-items: stretch;
	}

	.auth-session-actions .btn-primary,
	.auth-session-actions .btn-secondary,
	.order-history-logout-btn:where(:not(#css-dedupe-1-162)) {
		width: 100%;
		max-width: 100%;
	}

	.order-history-header-top:where(:not(#css-dedupe-1-163)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.account-dropdown-menu:where(:not(#css-dedupe-2-164)) {
		width: 290px;
		right: -14px;
	}

	.account-guest-premium-top h3:where(:not(#css-dedupe-1-165)) {
		font-size: 24px;
	}

	.account-guest-benefits li:where(:not(#css-dedupe-1-166)) {
		padding: 18px 20px 18px 56px;
	}

	.account-guest-benefits li:where(:not(#css-dedupe-1-167))::before {
		left: 20px;
	}

	.account-guest-benefits li:where(:not(#css-dedupe-1-168))::after {
		left: 26px;
	}

	.legal-section:where(:not(#css-dedupe-1-169)) {
		padding: 36px 0 60px;
	}

	.legal-container:where(:not(#css-dedupe-1-170)) {
		padding: 0 16px;
	}

	.legal-card:where(:not(#css-dedupe-1-171)) {
		padding: 28px 22px;
		border-radius: 18px;
	}

	.legal-card h1:where(:not(#css-dedupe-1-172)) {
		font-size: 34px;
	}

	.legal-block:where(:not(#css-dedupe-1-173)) {
		margin-bottom: 28px;
	}

	.legal-block h2:where(:not(#css-dedupe-1-174)) {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.legal-block p:where(:not(#css-dedupe-1-175)),
	.legal-block li:where(:not(#css-dedupe-1-176)) {
		font-size: 16px;
		line-height: 1.75;
	}

	.legal-block ul:where(:not(#css-dedupe-1-177)),
	.legal-block ol:where(:not(#css-dedupe-1-178)) {
		padding-left: 20px;
	}

	.legal-actions:where(:not(#css-dedupe-1-179)) {
		flex-direction: column;
		align-items: stretch;
	}

	.legal-actions a:where(:not(#css-dedupe-1-180)) {
		width: 100%;
	}

	.product-tile-actions:where(:not(#css-dedupe-1-181)) {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.product-tile-actions .card-link:where(:not(#css-dedupe-1-182)),
	.product-tile-actions button.card-link:where(:not(#css-dedupe-2-183)) {
		width: 100%;
		justify-content: center;
	}

	.order-history-card-summary:where(:not(#css-dedupe-1-184)) {
		align-items: flex-start;
	}

	.thank-you-meta-grid:where(:not(#css-dedupe-1-185)) {
		grid-template-columns: 1fr;
	}

	.thank-you-hero-card:where(:not(#css-dedupe-1-186)),
	.thank-you-summary-card:where(:not(#css-dedupe-1-187)) {
		padding: 24px;
	}

	#admin-orders-list .order-history-actions:where(:not(#css-dedupe-1-188)) {
		flex-direction: column;
	}

	#admin-orders-list .order-history-action:where(:not(#css-dedupe-1-189)) {
		width: 100%;
		justify-content: center;
	}

	.admin-order-shipping-controls:where(:not(#css-dedupe-1-190)) {
		grid-template-columns: 1fr;
	}

	.admin-order-shipping-controls .order-history-action {
		width: 100%;
		justify-content: center;
	}

	.admin-dashboard-grid:where(:not(#css-dedupe-1-191)),
	.admin-orders-dashboard {
		grid-template-columns: 1fr;
	}

	.admin-orders-filters:where(:not(#css-dedupe-1-192)) {
		grid-template-columns: 1fr;
	}

	.admin-messages-dashboard:where(:not(#css-dedupe-1-193)),
	.admin-messages-filters:where(:not(#css-dedupe-1-194)),
	.admin-message-form-grid:where(:not(#css-dedupe-1-195)) {
		grid-template-columns: 1fr;
	}

	.admin-message-card-header:where(:not(#css-dedupe-1-196)) {
		flex-direction: column;
	}

	.admin-message-status-stack:where(:not(#css-dedupe-1-197)) {
		align-items: flex-start;
	}

	.admin-chat-context:where(:not(#css-dedupe-1-198)) {
		grid-template-columns: 1fr;
	}

	.admin-chat-thread-message:where(:not(#css-dedupe-1-199)) {
		max-width: 100%;
	}

	.admin-chat-quick-actions:where(:not(#css-dedupe-1-200)) {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-chat-quick-actions
		.order-history-action:where(:not(#css-dedupe-1-201)) {
		width: 100%;
		justify-content: center;
	}

	.admin-chat-template-row:where(:not(#css-dedupe-1-202)) {
		flex-direction: column;
	}

	.admin-chat-template-button:where(:not(#css-dedupe-1-203)) {
		width: 100%;
	}

	.admin-orders-clear-filters:where(:not(#css-dedupe-1-204)) {
		width: 100%;
	}

	.admin-order-timeline li:where(:not(#css-dedupe-1-205)) {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.admin-order-timeline time:where(:not(#css-dedupe-1-206)) {
		text-align: left;
	}

	.admin-inventory-filters:where(:not(#css-dedupe-1-207)) {
		grid-template-columns: 1fr;
	}

	.admin-add-product-heading:where(:not(#css-dedupe-1-208)) {
		flex-direction: column;
	}

	#admin-add-product-status:where(:not(#css-dedupe-1-209)) {
		text-align: left;
	}

	.admin-add-product-grid:where(:not(#css-dedupe-1-210)) {
		grid-template-columns: 1fr;
	}

	.admin-add-product-wide:where(:not(#css-dedupe-1-211)) {
		grid-column: auto;
	}

	.admin-add-product-options:where(:not(#css-dedupe-1-212)) {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-inventory-availability {
		grid-template-columns: 1fr;
	}

	.admin-add-product-button:where(:not(#css-dedupe-1-213)) {
		width: 100%;
	}

	.admin-inventory-card:where(:not(#css-dedupe-1-214)) {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.admin-inventory-product:where(:not(#css-dedupe-1-215)) {
		gap: 12px;
	}

	.admin-inventory-product-thumb:where(:not(#css-dedupe-1-216)) {
		width: 76px;
	}

	.admin-inventory-controls:where(:not(#css-dedupe-1-217)) {
		grid-template-columns: 1fr;
	}

	.admin-inventory-stock-breakdown:where(:not(#css-dedupe-1-218)) {
		grid-template-columns: 1fr;
	}

	.admin-inventory-actions:where(:not(#css-dedupe-1-219)) {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-inventory-actions
		.order-history-action:where(:not(#css-dedupe-1-220)) {
		width: 100%;
	}

	.admin-inventory-detail-grid:where(:not(#css-dedupe-1-221)) {
		grid-template-columns: 1fr;
	}

	.admin-inventory-detail-wide:where(:not(#css-dedupe-1-222)) {
		grid-column: auto;
	}

	.admin-inventory-detail-actions:where(:not(#css-dedupe-1-223)) {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-inventory-detail-actions
		.order-history-action:where(:not(#css-dedupe-1-224)) {
		width: 100%;
	}

	.admin-inventory-toast-container:where(:not(#css-dedupe-1-225)) {
		top: 74px;
		right: 16px;
		left: 16px;
		width: auto;
	}
}

/* =========================
   SMALL PHONE
========================= */
@media (max-width: 480px) {
	body:where(:not(#css-dedupe-3-226)) {
		padding-top: 155px;
	}

	.live-chat-widget:where(:not(#css-dedupe-1-227)) {
		right: 14px;
		bottom: 14px;
		left: 14px;
		align-items: stretch;
	}

	.live-chat-toggle:where(:not(#css-dedupe-1-228)) {
		align-self: flex-end;
		min-width: 96px;
	}

	.admin-live-chat-shortcut:where(:not(#admin-chat-shortcut-1)) {
		right: 14px;
		bottom: 14px;
	}

	.admin-live-chat-shortcut-link:where(:not(#admin-chat-shortcut-2)) {
		min-width: 118px;
		height: 46px;
	}

	.live-chat-panel:where(:not(#css-dedupe-1-229)) {
		width: 100%;
		max-height: calc(100vh - 190px);
	}

	.admin-chat-toast-container:where(:not(#css-dedupe-1-230)) {
		right: 14px;
		bottom: 86px;
		left: 14px;
		width: auto;
	}

	.container:where(:not(#css-dedupe-2-231)) {
		padding: 0 14px;
	}

	.logo:where(:not(#css-dedupe-2-232)) {
		width: 130px;
	}

	.right-menu:where(:not(#css-dedupe-3-233)) {
		justify-content: space-between;
	}

	.hero-content:where(:not(#css-dedupe-3-234)) {
		padding: 48px 0 44px 0;
	}

	.hero-title:where(:not(#css-dedupe-3-235)) {
		font-size: 28px;
	}

	.hero-text:where(:not(#css-dedupe-3-236)) {
		font-size: 15px;
	}

	.hero-meta:where(:not(#css-dedupe-2-237)) {
		flex-direction: column;
		gap: 8px;
	}

	.hero-meta span:not(:last-child):where(:not(#css-dedupe-1-238))::after {
		display: none;
	}

	.section-heading h2:where(:not(#css-dedupe-2-239)) {
		font-size: 24px;
	}

	.wine-card h3:where(:not(#css-dedupe-1-240)) {
		font-size: 20px;
	}

	.shop-hero h1:where(:not(#css-dedupe-3-243)) {
		font-size: 28px;
	}

	.product-tile-body:where(:not(#css-dedupe-1-244)) {
		padding: 18px;
	}

	.product-price:where(:not(#css-dedupe-1-245)) {
		font-size: 20px;
	}

	.product-detail-title:where(:not(#css-dedupe-3-246)) {
		font-size: 28px;
	}

	.product-detail-copy:where(:not(#css-dedupe-1-247)),
	.product-description-card p:where(:not(#css-dedupe-1-248)) {
		font-size: 15px;
	}

	.product-main-image img:where(:not(#css-dedupe-3-249)) {
		height: 260px;
	}

	.cart-header h1:where(:not(#css-dedupe-2-250)) {
		font-size: 28px;
	}

	.cart-product:where(:not(#css-dedupe-2-251)) {
		flex-direction: column;
		align-items: flex-start;
	}

	.cart-qty:where(:not(#css-dedupe-1-252)),
	.cart-line-total:where(:not(#css-dedupe-2-253)) {
		padding-left: 0;
	}

	.cart-line-total:where(:not(#css-dedupe-3-254)) {
		font-size: 20px;
	}

	.checkout-header h1:where(:not(#css-dedupe-2-255)) {
		font-size: 28px;
	}

	.checkout-header p:where(:not(#css-dedupe-1-256)),
	.checkout-note:where(:not(#css-dedupe-1-257)),
	.checkout-helper:where(:not(#css-dedupe-1-258)) {
		font-size: 15px;
	}

	.thank-you-card h1:where(:not(#css-dedupe-2-259)) {
		font-size: 28px;
	}

	.thank-you-text:where(:not(#css-dedupe-2-260)),
	.thank-you-note:where(:not(#css-dedupe-1-261)) {
		font-size: 15px;
	}

	.order-history-header h1:where(:not(#css-dedupe-2-262)) {
		font-size: 28px;
	}

	.legal-card h1:where(:not(#css-dedupe-2-263)) {
		font-size: 30px;
	}

	.legal-meta:where(:not(#css-dedupe-1-264)) {
		margin-bottom: 28px;
	}

	.legal-block h2:where(:not(#css-dedupe-2-265)) {
		font-size: 20px;
	}
}

/* =========================
   DARK THEME
========================= */
:root {
	color-scheme: light;
	--sabera-burgundy: #7f0920;
	--sabera-burgundy-deep: #5f0718;
	--sabera-wine: #8f102a;
	--sabera-cream: #fbf4e8;
	--sabera-cream-strong: #fffaf1;
	--sabera-ink: #211512;
	--sabera-muted: #6d5146;
	--sabera-line: #dcc7ae;
	--sabera-gold: #b8752b;
}

/* =========================
   SABERA EDITORIAL REDESIGN
========================= */
body:where(:not(#css-dedupe-4-270)) {
	padding-top: 154px;
	background: radial-gradient(
			circle at 25% 0%,
			rgba(255, 246, 228, 0.86),
			transparent 32%
		),
		linear-gradient(180deg, #fffaf1 0%, #f6ead8 100%);
	color: var(--sabera-ink);
	font-family: Georgia, "Times New Roman", serif;
}

.container:where(:not(#css-dedupe-3-271)) {
	max-width: 1500px;
	padding: 0 36px;
}

.site-topbar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1100;
	width: 100%;
	height: 36px;
	background: linear-gradient(90deg, #71071b 0%, #9a122d 50%, #71071b 100%);
	color: #fff9ee;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	overflow: hidden;
}

.site-topbar-inner {
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	overflow: hidden;
	white-space: nowrap;
}

.site-topbar-marquee:where(:not(#site-topbar-marquee-1)) {
	width: 100%;
	overflow: hidden;
}

.site-topbar-track:where(:not(#site-topbar-marquee-2)) {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	min-width: max-content;
	padding-left: 100%;
	padding-right: 100%;
	animation: site-topbar-marquee 32s linear infinite;
}

.site-topbar-track span:where(:not(#site-topbar-marquee-3)) {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	white-space: nowrap;
}

.site-topbar-marquee:hover
	.site-topbar-track:where(:not(#site-topbar-marquee-4)) {
	animation-play-state: paused;
}

@keyframes site-topbar-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-topbar-track:where(:not(#site-topbar-marquee-5)) {
		animation: none;
		padding-left: 0;
	}
}

.site-header:where(:not(#css-dedupe-3-272)) {
	top: 36px;
	height: 118px;
	background: rgba(255, 250, 241, 0.84);
	border-bottom: 1px solid rgba(126, 91, 62, 0.18);
	box-shadow: 0 10px 30px rgba(56, 21, 13, 0.06);
	backdrop-filter: blur(12px);
}

.site-header .container:where(:not(#css-dedupe-4-273)) {
	gap: 34px;
	justify-content: space-between;
}

.logo:where(:not(#css-dedupe-3-274)) {
	width: 220px;
	margin: 0;
	flex: 0 0 auto;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 3vw, 54px);
	flex: 1 1 auto;
}

.primary-nav a {
	position: relative;
	padding: 10px 0;
	color: var(--sabera-ink);
	font-size: 15px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-nav a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 1px;
	background: var(--sabera-burgundy);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.primary-nav a:hover::before {
	transform: scaleX(1);
}

.right-menu:where(:not(#css-dedupe-4-275)) {
	flex: 0 0 auto;
	gap: 18px;
}

.right-menu .search-bar {
	width: 44px;
	height: 44px;
	max-width: none;
	order: 0;
}

.right-menu .search-bar input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.right-menu .search-bar button,
.icon-button:where(:not(#css-dedupe-3-276)) {
	width: auto;
	height: 44px;
	min-width: 36px;
	border: 0;
	background: transparent;
	color: var(--sabera-ink);
	font-size: 15px;
}

.right-menu .search-bar button:where(:not(#css-dedupe-1-277)) {
	width: 44px;
	border: 0;
	padding: 0;
	font-size: 30px;
	line-height: 1;
}

.admin-notifications-button {
	display: none;
}

.account-trigger:where(:not(#css-dedupe-1-278)) {
	gap: 10px;
	font-size: 15px;
}

.account-trigger .icon,
.icon-button .icon:where(:not(#css-dedupe-3-279)) {
	font-size: 25px;
}

.right-menu .header-svg-icon:where(:not(#header-svg-render-1)) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	color: var(--sabera-ink);
	line-height: 1;
}

.right-menu
	.search-bar
	button
	.header-svg-icon:where(:not(#header-svg-render-2)) {
	width: 23px;
	height: 23px;
}

.right-menu .header-svg-icon svg:where(:not(#header-svg-render-3)) {
	display: block;
	width: 100%;
	height: 100%;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.account-caret:where(:not(#css-dedupe-1-280)) {
	display: none;
}

.cart-count-badge:where(:not(#css-dedupe-1-281)) {
	position: absolute;
	top: -3px;
	right: -13px;
	background: var(--sabera-burgundy);
	color: #fff;
}

.home-page .secondary-nav,
.shop-page .secondary-nav {
	display: none;
}

.home-body {
	padding-top: 154px;
}

.home-body .site-header {
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

@media (min-width: 769px) {
	.home-body .site-header .container:where(:not(#css-dedupe-1-510)) {
		position: relative;
		padding-right: clamp(96px, 13vw, 230px);
	}

	.home-body .site-header .right-menu:where(:not(#css-dedupe-1-511)) {
		position: absolute;
		top: 50%;
		right: clamp(4px, 0.7vw, 12px);
		transform: translateY(-50%);
		flex: 0 0 auto;
		margin-left: 0;
		justify-content: flex-end;
	}
}

@media (max-width: 1600px) {
	.home-body .site-header .right-menu:where(:not(#css-dedupe-1-507)) {
		flex: 0 0 auto;
		margin-left: auto;
		justify-content: flex-end;
	}

	.home-body .site-header .account-label:where(:not(#css-dedupe-1-508)),
	.home-body .site-header .cart-label:where(:not(#css-dedupe-1-509)) {
		display: none;
	}
}

.home-page .hero {
	margin-top: -154px;
	border-bottom: 1px solid rgba(126, 91, 62, 0.2);
	background: #f5e6d0;
}

.hero-slide:where(:not(#css-dedupe-3-282)) {
	min-height: clamp(436px, 34.064vw, 932px);
	align-items: center;
	background: linear-gradient(
			90deg,
			#fff8ee 0%,
			#fff8ee 35%,
			rgba(255, 248, 238, 0.9) 47%,
			rgba(255, 248, 238, 0.18) 62%,
			rgba(255, 248, 238, 0) 74%
		),
		url("/images/sabera-hero-full-clean-v2.png"),
		linear-gradient(180deg, #fff5e7 0%, #ebd8bf 100%);
	background-repeat: no-repeat;
	background-position: left center, center 34px, center;
	background-size: 100% 100%, 100% auto, cover;
	overflow: hidden;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 68% 16%,
		rgba(255, 225, 176, 0.2),
		transparent 24%
	);
	opacity: 0.55;
}

.hero-slide::after {
	display: none;
}

.hero-content:where(:not(#css-dedupe-4-283)) {
	padding: clamp(150px, 13.3vw, 365px) 0 clamp(28px, 4.2vw, 96px) 8.5%;
	max-width: 1500px;
	width: 100%;
	color: var(--sabera-ink);
}

.hero-badge:where(:not(#css-dedupe-2-284)) {
	position: relative;
	gap: 18px;
	padding: 0;
	margin-bottom: 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
	backdrop-filter: none;
	color: var(--sabera-burgundy-deep);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.hero-badge::before,
.hero-badge::after {
	content: "";
	display: inline-block;
	width: 48px;
	height: 1px;
	background: rgba(105, 49, 33, 0.5);
	vertical-align: middle;
}

.hero-title:where(:not(#css-dedupe-4-285)) {
	max-width: 450px;
	margin-bottom: clamp(10px, 1.2vw, 24px);
	color: var(--sabera-ink);
	font-size: clamp(38px, 3.35vw, 92px);
	font-weight: 500;
	line-height: 1.04;
}

.hero-text:where(:not(#css-dedupe-4-286)) {
	max-width: 540px;
	margin-bottom: clamp(18px, 2vw, 34px);
	color: #2e201b;
	font-family: Arial, sans-serif;
	font-size: clamp(14px, 1.05vw, 26px);
	line-height: 1.55;
}

.hero-actions:where(:not(#css-dedupe-2-287)) {
	margin: 0;
	gap: 22px;
}

.btn-primary:where(:not(#css-dedupe-3-288)),
.btn-secondary:where(:not(#css-dedupe-3-289)) {
	height: clamp(40px, 3.2vw, 64px);
	min-width: clamp(132px, 10.6vw, 230px);
	border-radius: 6px;
	font-family: Arial, sans-serif;
	font-size: clamp(13px, 0.86vw, 18px);
	font-weight: 600;
}

.btn-primary:where(:not(#css-dedupe-4-290)) {
	background: var(--sabera-burgundy);
	box-shadow: none;
}

.btn-secondary:where(:not(#css-dedupe-4-291)) {
	border: 1px solid rgba(73, 32, 24, 0.55);
	background: rgba(255, 250, 241, 0.68);
	color: var(--sabera-ink);
	backdrop-filter: none;
}

.hero-product-cluster {
	display: none;
}

.hero-bottle {
	position: absolute;
	right: 13%;
	bottom: 58px;
	height: 430px;
	max-width: 240px;
	object-fit: contain;
	filter: drop-shadow(0 24px 22px rgba(32, 12, 8, 0.38));
}

.hero-wine-glass {
	position: absolute;
	right: 47%;
	bottom: 72px;
	width: 120px;
	height: 260px;
	border: 3px solid rgba(255, 255, 255, 0.74);
	border-bottom: 0;
	border-radius: 48% 48% 24% 24%;
	background: linear-gradient(
		180deg,
		transparent 0 48%,
		rgba(111, 7, 30, 0.88) 49% 71%,
		rgba(255, 255, 255, 0.18) 72% 100%
	);
	box-shadow: inset 12px 0 16px rgba(255, 255, 255, 0.18);
}

.hero-wine-glass::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -112px;
	width: 4px;
	height: 112px;
	background: rgba(255, 255, 255, 0.76);
	transform: translateX(-50%);
}

.hero-wine-glass::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -128px;
	width: 102px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.62);
	transform: translateX(-50%);
}

.hero-grapes {
	position: absolute;
	right: -3%;
	bottom: 42px;
	width: 190px;
	height: 145px;
	background: radial-gradient(
			circle at 20% 40%,
			#6e173a 0 13px,
			transparent 14px
		),
		radial-gradient(circle at 35% 30%, #7c1d44 0 15px, transparent 16px),
		radial-gradient(circle at 50% 42%, #651338 0 16px, transparent 17px),
		radial-gradient(circle at 65% 35%, #83224a 0 14px, transparent 15px),
		radial-gradient(circle at 34% 56%, #5f1235 0 15px, transparent 16px),
		radial-gradient(circle at 52% 62%, #7f1d46 0 17px, transparent 18px),
		radial-gradient(circle at 72% 58%, #67173b 0 16px, transparent 17px),
		radial-gradient(circle at 47% 78%, #5a1233 0 15px, transparent 16px),
		radial-gradient(circle at 68% 80%, #7c2149 0 14px, transparent 15px);
	filter: drop-shadow(0 12px 10px rgba(42, 13, 8, 0.32));
}

.hero-cork {
	position: absolute;
	right: 3%;
	bottom: 35px;
	padding: 7px 22px;
	border-radius: 999px;
	background: #c99a62;
	color: #5f2d18;
	font-size: 13px;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transform: rotate(-7deg);
}

.featured-section:where(:not(#css-dedupe-2-292)) {
	padding: 22px 0 0;
	background: linear-gradient(180deg, #fff7ec 0%, #f8ead7 100%);
}

.section-heading.centered {
	justify-content: center;
	margin-bottom: 16px;
}

.section-heading.centered h2 {
	position: relative;
	color: var(--sabera-ink);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-heading.centered h2::before,
.section-heading.centered h2::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 82px;
	height: 1px;
	background: var(--sabera-line);
}

.section-heading.centered h2:where(:not(#css-dedupe-1-293))::before {
	right: calc(100% + 18px);
}

.section-heading.centered h2:where(:not(#css-dedupe-1-294))::after {
	left: calc(100% + 18px);
}

.featured-grid:where(:not(#css-dedupe-4-295)) {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.wine-card:where(:not(#css-dedupe-2-296)),
.product-tile:where(:not(#css-dedupe-1-297)) {
	position: relative;
	display: grid;
	grid-template-columns: minmax(98px, 34%) 1fr;
	min-height: 190px;
	padding: 0;
	border: 1px solid var(--sabera-line);
	border-radius: 8px;
	background: linear-gradient(
		138deg,
		rgba(255, 252, 245, 0.96) 0%,
		rgba(255, 248, 236, 0.76) 100%
	);
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(82, 44, 20, 0.06);
}

.wine-card > a:first-child,
.product-image-wrap:where(:not(#css-dedupe-1-298)) {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 190px;
	padding: 12px 10px 14px;
	background: rgba(255, 255, 255, 0.4);
}

.wine-card img:where(:not(#css-dedupe-2-299)),
.product-image-wrap img:where(:not(#css-dedupe-2-300)) {
	width: 100%;
	height: 168px;
	margin: 0;
	object-fit: contain;
	object-position: center bottom;
	background: transparent;
	border-radius: 0;
}

.wine-card h3:where(:not(#css-dedupe-2-301)),
.wine-card p:where(:not(#css-dedupe-1-302)),
.wine-card .card-link {
	grid-column: 2;
}

.wine-card h3:where(:not(#css-dedupe-3-303)) {
	align-self: end;
	margin: 22px 20px 4px 0;
	color: var(--sabera-burgundy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.wine-card p:where(:not(#css-dedupe-2-304)) {
	margin: 0 20px 10px 0;
	color: #2e201b;
	font-family: Arial, sans-serif;
	font-size: 13px;
	line-height: 1.55;
}

.wine-card .card-link:where(:not(#css-dedupe-1-305)),
.product-tile .card-link {
	justify-self: start;
	width: auto;
	height: auto;
	min-width: 0;
	margin: 0 0 16px;
	padding: 0 0 4px;
	border: 0;
	border-bottom: 1px solid currentColor;
	border-radius: 0;
	background: transparent;
	color: var(--sabera-burgundy);
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	box-shadow: none;
}

.wine-card .card-link::after,
.product-tile .card-link-secondary::after {
	content: " →";
	margin-left: 8px;
}

.home-page .wine-card {
	display: block;
	aspect-ratio: 1.7 / 1;
	width: 100%;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
	box-shadow: none;
}

.home-page .wine-card::after {
	display: none;
}

.home-page .wine-card > a:first-child {
	display: block;
	min-height: 0;
	height: 100%;
	padding: 0;
	background: transparent;
}

.home-page .wine-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-page .sabera-promise-strip {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: transparent;
}

.home-page .sabera-promise-strip img {
	display: block;
	width: 100%;
	height: auto;
}

.product-tile:where(:not(#css-dedupe-2-306)) {
	display: block;
	min-height: 0;
}

.shop-grid:where(:not(#css-dedupe-3-307)) {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.shop-page .product-tile {
	display: grid;
}

.product-tile-body:where(:not(#css-dedupe-2-308)) {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px 18px 16px 0;
}

.product-type:where(:not(#css-dedupe-1-309)) {
	color: var(--sabera-burgundy);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: none;
}

.product-tile h3:where(:not(#css-dedupe-1-310)),
.product-tile h3 a:where(:not(#css-dedupe-1-311)) {
	color: var(--sabera-burgundy);
	font-size: clamp(18px, 1.05vw, 22px);
	line-height: 1.1;
	text-transform: uppercase;
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: normal;
}

.product-tile h3.is-long-product-title,
.product-tile h3.is-long-product-title a {
	font-size: clamp(16px, 0.92vw, 20px);
}

.product-copy:where(:not(#css-dedupe-1-312)) {
	color: #2e201b;
	font-family: Arial, sans-serif;
	font-size: 13px;
	line-height: 1.55;
}

.product-tile-footer:where(:not(#css-dedupe-2-313)) {
	margin-top: auto;
	display: block;
}

.product-price:where(:not(#css-dedupe-2-314)) {
	display: block;
	margin-bottom: 10px;
	color: var(--sabera-ink);
	font-size: 24px;
}

.product-tile-actions:where(:not(#css-dedupe-2-315)) {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(10px, 1vw, 16px);
}

.product-tile-actions button.card-link:where(:not(#css-dedupe-3-316)) {
	flex: 0 0 auto;
	width: auto;
	padding: 0 clamp(10px, 0.9vw, 16px);
	border: 1px solid var(--sabera-burgundy);
	border-radius: 6px;
	background: var(--sabera-burgundy);
	color: #fff;
	height: 42px;
	font-size: clamp(13px, 0.9vw, 14px);
	white-space: nowrap;
}

.product-tile-actions .card-link-secondary {
	flex: 0 0 auto;
	width: auto;
	color: #0b63ce;
	font-size: clamp(13px, 0.9vw, 14px);
	white-space: nowrap;
}

@media (max-width: 520px) {
	.shop-page .product-tile-actions:where(:not(#css-dedupe-1-500)) {
		gap: 8px;
	}

	.shop-page
		.product-tile-actions
		button.card-link:where(:not(#css-dedupe-1-501)) {
		height: 36px;
		padding: 0 9px;
		border-radius: 5px;
		font-size: 12px;
	}

	.shop-page
		.product-tile-actions
		.card-link-secondary:where(:not(#css-dedupe-1-502)) {
		font-size: 12px;
	}
}

.sabera-promise-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 12px;
	border: 1px solid var(--sabera-line);
	border-radius: 8px 8px 0 0;
	background: rgba(255, 252, 246, 0.78);
}

.sabera-promise-strip > div {
	position: relative;
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 10px;
	padding: 18px 24px;
}

.sabera-promise-strip > div:not(:last-child) {
	border-right: 1px solid var(--sabera-line);
}

.promise-icon {
	grid-row: span 2;
	color: #8b4a2b;
	font-size: 42px;
	line-height: 1;
}

.sabera-promise-strip strong {
	color: var(--sabera-ink);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.sabera-promise-strip p {
	color: #3d2b24;
	font-family: Arial, sans-serif;
	font-size: 12px;
	line-height: 1.45;
}

@media (min-width: 1181px) {
	.home-root {
		height: 100dvh;
		overflow: hidden;
	}

	.home-body:where(:not(#css-dedupe-1-333)) {
		height: 100dvh;
		min-height: 720px;
		padding-top: calc(
			clamp(26px, 3.5dvh, 36px) + clamp(78px, 11.5dvh, 118px)
		);
		overflow: hidden;
	}

	.home-body .site-topbar {
		height: clamp(26px, 3.5dvh, 36px);
	}

	.home-body .site-topbar-inner {
		min-height: clamp(26px, 3.5dvh, 36px);
		font-size: clamp(10px, 1.2dvh, 13px);
	}

	.home-body .site-header:where(:not(#css-dedupe-1-334)) {
		top: clamp(26px, 3.5dvh, 36px);
		height: clamp(78px, 11.5dvh, 118px);
	}

	.home-body .logo {
		width: clamp(150px, 14.4vw, 220px);
	}

	.home-body .primary-nav {
		gap: clamp(18px, 2.8vw, 54px);
	}

	.home-body .primary-nav a {
		font-size: clamp(12px, 1.45dvh, 15px);
	}

	.home-body .right-menu {
		gap: clamp(14px, 1.55vw, 24px);
	}

	.home-page .hero:where(:not(#css-dedupe-1-335)) {
		margin-top: calc(
			(clamp(26px, 3.5dvh, 36px) + clamp(78px, 11.5dvh, 118px)) * -1
		);
	}

	.home-page .hero-slide {
		height: 54.7dvh;
		min-height: 390px;
		max-height: 560px;
	}

	.home-page .hero-content {
		padding-top: clamp(160px, 20.8dvh, 300px);
		padding-bottom: 20px;
	}

	.home-page .hero-badge {
		margin-bottom: clamp(8px, 1.7dvh, 18px);
		font-size: clamp(13px, 1.45dvh, 15px);
	}

	.home-page .hero-title {
		max-width: clamp(430px, 34vw, 620px);
		margin-bottom: clamp(8px, 1.4dvh, 14px);
		font-size: clamp(38px, 5.3dvh, 62px);
		line-height: 1.04;
	}

	.home-page .hero-text {
		max-width: clamp(420px, 38vw, 610px);
		margin-bottom: clamp(12px, 2dvh, 24px);
		font-size: clamp(13px, 1.65dvh, 17px);
		line-height: 1.45;
	}

	.home-page .hero-actions {
		gap: clamp(16px, 2vw, 22px);
	}

	.home-page .btn-primary,
	.home-page .btn-secondary {
		height: clamp(36px, 4.7dvh, 48px);
		min-width: clamp(132px, 10.7vw, 164px);
		font-size: clamp(12px, 1.45dvh, 15px);
	}

	.home-page .featured-section {
		height: 29.8dvh;
		min-height: 214px;
		max-height: 305px;
		padding: clamp(8px, 1.2dvh, 12px) 0 0;
		overflow: hidden;
	}

	.home-page .section-heading.centered {
		margin-bottom: clamp(8px, 1.2dvh, 14px);
	}

	.home-page .section-heading.centered h2 {
		font-size: clamp(14px, 1.7dvh, 18px);
	}

	.home-page .featured-grid {
		gap: clamp(12px, 1.2vw, 18px);
	}

	.home-page .wine-card:where(:not(#css-dedupe-1-336)) {
		grid-template-columns: minmax(76px, 34%) 1fr;
		width: 100%;
		aspect-ratio: 1.7 / 1;
		height: clamp(112px, 14.8dvh, 190px);
		min-height: 0;
	}

	.home-page .wine-card > a:first-child:where(:not(#css-dedupe-1-337)) {
		min-height: 100%;
		height: 100%;
		padding: 0;
	}

	.home-page .wine-card img:where(:not(#css-dedupe-1-338)) {
		height: 100%;
	}

	.home-page .wine-card h3 {
		margin: clamp(7px, 1dvh, 18px) 12px 2px 0;
		font-size: clamp(12px, 1.65dvh, 20px);
	}

	.home-page .wine-card p {
		display: -webkit-box;
		margin: 0 12px clamp(3px, 0.5dvh, 8px) 0;
		overflow: hidden;
		font-size: clamp(9px, 1.08dvh, 13px);
		line-height: 1.22;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.home-page .wine-card .card-link {
		margin-bottom: clamp(5px, 0.8dvh, 14px);
		padding-bottom: 2px;
		font-size: clamp(10px, 1.2dvh, 14px);
	}

	.home-page .sabera-promise-strip:where(:not(#css-dedupe-1-339)) {
		margin-top: clamp(8px, 1.2dvh, 12px);
	}

	.home-page .sabera-promise-strip > div {
		grid-template-columns: clamp(24px, 2.8vw, 54px) 1fr;
		gap: clamp(4px, 0.65vw, 10px);
		padding: clamp(5px, 1dvh, 18px) clamp(10px, 1.4vw, 24px);
	}

	.home-page .promise-icon {
		font-size: clamp(20px, 3dvh, 42px);
	}

	.home-page .sabera-promise-strip strong {
		font-size: clamp(9px, 1.18dvh, 14px);
	}

	.home-page .sabera-promise-strip p {
		font-size: clamp(8px, 1dvh, 12px);
		line-height: 1.18;
	}

}

@media (max-width: 1320px) {
	.site-header .container:where(:not(#css-dedupe-5-341)) {
		gap: 20px;
	}

	.logo:where(:not(#css-dedupe-4-342)) {
		width: 190px;
	}

	.primary-nav:where(:not(#css-dedupe-1-343)) {
		gap: 20px;
	}

	.primary-nav a:where(:not(#css-dedupe-1-344)) {
		font-size: 13px;
	}

	.right-menu:where(:not(#css-dedupe-5-345)) {
		margin-left: auto;
		gap: 10px;
	}

	.account-label:where(:not(#css-dedupe-2-346)) {
		display: none;
	}

	.cart-label:where(:not(#css-dedupe-1-503)) {
		display: none;
	}

	.featured-grid:where(:not(#css-dedupe-5-347)),
	.shop-grid:where(:not(#css-dedupe-4-348)) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1181px) {
	.home-page .featured-grid:where(:not(#css-dedupe-1-349)) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-page .sabera-promise-strip:where(:not(#css-dedupe-2-350)) {
		grid-template-columns: repeat(4, 1fr);
	}

	.home-page .featured-section:where(:not(#css-dedupe-1-351)) {
		box-sizing: border-box;
	}

	.home-page .hero-slide:where(:not(#css-dedupe-1-353)) {
		height: 54.4dvh;
		min-height: 388px;
	}

	.home-page .featured-section:where(:not(#css-dedupe-2-354)) {
		height: 29.5dvh;
		min-height: 210px;
	}

}

@media (max-width: 1180px) {
	body:where(:not(#css-dedupe-5-356)) {
		padding-top: 176px;
	}

	.site-header:where(:not(#css-dedupe-4-357)) {
		height: auto;
		padding: 14px 0;
	}

	.site-header .container:where(:not(#css-dedupe-6-358)) {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.primary-nav:where(:not(#css-dedupe-2-359)) {
		order: 3;
		width: 100%;
		gap: 22px;
		justify-content: center;
	}

	.right-menu:where(:not(#css-dedupe-1-504)) {
		margin-left: auto;
		justify-content: flex-end;
	}

	.account-label:where(:not(#css-dedupe-1-505)),
	.cart-label:where(:not(#css-dedupe-1-506)) {
		display: none;
	}

	.hero-product-cluster:where(:not(#css-dedupe-1-360)) {
		right: 1%;
		width: 48vw;
	}

	.sabera-promise-strip:where(:not(#css-dedupe-1-361)) {
		grid-template-columns: repeat(2, 1fr);
	}

	.sabera-promise-strip > div:nth-child(2) {
		border-right: 0;
	}

	.sabera-promise-strip > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--sabera-line);
	}

}

@media (max-width: 768px) {
	body:where(:not(#css-dedupe-6-366)) {
		padding-top: 190px;
	}

	.site-topbar-inner:where(:not(#css-dedupe-1-367)) {
		gap: 8px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.site-header .container:where(:not(#css-dedupe-7-368)) {
		align-items: center;
	}

	.logo:where(:not(#css-dedupe-5-369)) {
		width: 168px;
	}

	.right-menu:where(:not(#css-dedupe-6-370)) {
		width: auto;
		gap: 10px;
	}

	.account-label:where(:not(#css-dedupe-3-371)) {
		display: none;
	}

	.primary-nav:where(:not(#css-dedupe-3-372)) {
		justify-content: flex-start;
		gap: 18px;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.primary-nav a:where(:not(#css-dedupe-2-373)) {
		font-size: 12px;
	}

	.hero-slide:where(:not(#css-dedupe-4-374)) {
		min-height: 680px;
		align-items: flex-start;
		background: linear-gradient(
				180deg,
				rgba(255, 250, 241, 0.98) 0%,
				rgba(255, 250, 241, 0.92) 44%,
				rgba(255, 250, 241, 0.12) 70%
			),
			linear-gradient(
				178deg,
				rgba(245, 162, 92, 0.48) 0%,
				rgba(255, 214, 162, 0.24) 24%,
				rgba(86, 126, 70, 0.42) 38%,
				rgba(60, 101, 55, 0.7) 56%,
				rgba(50, 69, 35, 0.86) 100%
			);
	}

	.hero-content:where(:not(#css-dedupe-5-375)) {
		padding: 46px 24px 0;
	}

	.hero-badge:where(:not(#css-dedupe-1-376))::before,
	.hero-badge:where(:not(#css-dedupe-1-377))::after {
		width: 28px;
	}

	.hero-title:where(:not(#css-dedupe-5-378)) {
		font-size: 40px;
	}

	.hero-text:where(:not(#css-dedupe-5-379)) {
		font-size: 16px;
	}

	.hero-actions:where(:not(#css-dedupe-3-380)) {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.btn-primary:where(:not(#css-dedupe-5-381)),
	.btn-secondary:where(:not(#css-dedupe-5-382)) {
		width: auto;
		min-width: 142px;
	}

	.hero-product-cluster:where(:not(#css-dedupe-2-383)) {
		left: 8%;
		right: auto;
		width: 86vw;
		height: 360px;
	}

	.hero-bottle:where(:not(#css-dedupe-1-384)) {
		right: 27%;
		height: 310px;
	}

	.hero-wine-glass:where(:not(#css-dedupe-1-385)) {
		right: 56%;
		width: 82px;
		height: 180px;
	}

	.hero-grapes:where(:not(#css-dedupe-1-386)),
	.hero-cork:where(:not(#css-dedupe-1-387)) {
		display: none;
	}

	.featured-grid:where(:not(#css-dedupe-6-388)),
	.shop-grid:where(:not(#css-dedupe-5-389)),
	.sabera-promise-strip:where(:not(#css-dedupe-2-390)) {
		grid-template-columns: 1fr;
	}

	.wine-card:where(:not(#css-dedupe-3-391)),
	.shop-page .product-tile:where(:not(#css-dedupe-1-392)) {
		grid-template-columns: 38% 1fr;
	}

	.sabera-promise-strip > div:where(:not(#css-dedupe-1-393)) {
		border-right: 0;
		border-bottom: 1px solid var(--sabera-line);
	}

	.sabera-promise-strip > div:last-child {
		border-bottom: 0;
	}

}

/* Home header/hero responsive stabilization */
@media (max-width: 1180px) {
	body.home-body:where(:not(#home-responsive-fix-1)) {
		padding-top: 154px;
	}

	body.home-body .site-header:where(:not(#home-responsive-fix-2)) {
		top: 36px;
		height: auto;
		min-height: 118px;
		padding: 12px 0;
		background: rgba(255, 250, 241, 0.97);
		border-bottom: 1px solid rgba(126, 91, 62, 0.18);
		box-shadow: 0 10px 30px rgba(56, 21, 13, 0.08);
		backdrop-filter: blur(10px);
	}

	body.home-body .site-header .container:where(:not(#home-responsive-fix-3)) {
		position: static;
		display: grid;
		grid-template-columns: minmax(130px, auto) auto;
		grid-template-areas:
			"logo actions"
			"nav nav";
		align-items: center;
		gap: 10px 16px;
		padding: 0 22px;
	}

	body.home-body .logo:where(:not(#home-responsive-fix-4)) {
		grid-area: logo;
		justify-self: start;
		width: clamp(150px, 22vw, 190px);
		margin: 0;
	}

	body.home-body
		.site-header
		.right-menu:where(:not(#home-responsive-fix-5)) {
		position: static;
		grid-area: actions;
		justify-self: end;
		width: auto;
		margin-left: 0;
		transform: none;
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		gap: clamp(8px, 1.5vw, 14px);
	}

	body.home-body .primary-nav:where(:not(#home-responsive-fix-6)) {
		grid-area: nav;
		order: initial;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: clamp(16px, 3vw, 32px);
		overflow: visible;
		padding: 0;
	}

	body.home-body .primary-nav a:where(:not(#home-responsive-fix-7)) {
		font-size: 13px;
	}

	body.home-body
		.site-header
		.account-label:where(:not(#home-responsive-fix-8)),
	body.home-body .site-header .cart-label:where(:not(#home-responsive-fix-9)),
	body.home-body
		.site-header
		.account-caret:where(:not(#home-responsive-fix-10)) {
		display: none;
	}

	.home-page .hero:where(:not(#home-responsive-fix-11)) {
		margin-top: 0;
	}

	.home-page .hero-slide:where(:not(#home-responsive-fix-12)) {
		min-height: clamp(500px, 56vw, 620px);
		align-items: flex-start;
		background: linear-gradient(
				90deg,
				#fff8ee 0%,
				#fff8ee 43%,
				rgba(255, 248, 238, 0.92) 55%,
				rgba(255, 248, 238, 0.22) 76%,
				rgba(255, 248, 238, 0) 100%
			),
			url("/images/sabera-hero-full-clean-v2.png"),
			linear-gradient(180deg, #fff5e7 0%, #ebd8bf 100%);
		background-repeat: no-repeat;
		background-position: left center, center bottom, center;
		background-size: 100% 100%, auto 96%, cover;
	}

	.home-page .hero-content:where(:not(#home-responsive-fix-13)) {
		width: auto;
		max-width: min(570px, 58vw);
		margin-right: auto;
		margin-left: clamp(44px, 10vw, 156px);
		padding: clamp(62px, 7vw, 84px) 0 clamp(40px, 5vw, 64px);
	}

	.home-page .hero-title:where(:not(#home-responsive-fix-14)) {
		max-width: 100%;
		font-size: clamp(42px, 5.6vw, 60px);
		line-height: 1.04;
	}
}

@media (max-width: 768px) {
	body.home-body:where(:not(#home-responsive-fix-15)) {
		padding-top: 166px;
	}

	body.home-body .site-header:where(:not(#home-responsive-fix-16)) {
		min-height: 130px;
		padding: 10px 0 12px;
	}

	body.home-body
		.site-header
		.container:where(:not(#home-responsive-fix-17)) {
		grid-template-columns: 1fr auto;
		gap: 10px 12px;
		padding: 0 16px;
	}

	body.home-body .logo:where(:not(#home-responsive-fix-18)) {
		width: clamp(130px, 36vw, 168px);
	}

	body.home-body
		.site-header
		.right-menu:where(:not(#home-responsive-fix-19)) {
		gap: 8px;
	}

	body.home-body .primary-nav:where(:not(#home-responsive-fix-20)) {
		justify-content: center;
		gap: 14px 18px;
	}

	body.home-body .primary-nav a:where(:not(#home-responsive-fix-21)) {
		font-size: 12px;
	}

	.home-page .hero-slide:where(:not(#home-responsive-fix-22)) {
		min-height: auto;
		background: linear-gradient(
				180deg,
				rgba(255, 250, 241, 0.98) 0%,
				rgba(255, 250, 241, 0.97) 50%,
				rgba(255, 250, 241, 0.72) 100%
			),
			url("/images/sabera-hero-full-clean-v2.png"),
			linear-gradient(180deg, #fff5e7 0%, #ead7bd 100%);
		background-repeat: no-repeat;
		background-position: left center, right bottom, center;
		background-size: 100% 100%, auto 58%, cover;
	}

	.home-page .hero-content:where(:not(#home-responsive-fix-23)) {
		width: auto;
		max-width: none;
		margin-left: 0;
		padding: 42px 20px 58px;
	}

	.home-page .hero-badge:where(:not(#home-responsive-fix-24)) {
		gap: 10px;
		font-size: 12px;
		line-height: 1.4;
	}

	.home-page .hero-badge:where(:not(#home-responsive-fix-25))::before,
	.home-page .hero-badge:where(:not(#home-responsive-fix-26))::after {
		width: 24px;
	}

	.home-page .hero-title:where(:not(#home-responsive-fix-27)) {
		font-size: clamp(36px, 9.4vw, 48px);
	}

	.home-page .hero-text:where(:not(#home-responsive-fix-28)) {
		max-width: 680px;
		font-size: 16px;
		line-height: 1.6;
	}
}

@media (max-width: 520px) {
	body.home-body:where(:not(#home-responsive-fix-29)) {
		padding-top: 178px;
	}

	body.home-body
		.site-header
		.container:where(:not(#home-responsive-fix-30)) {
		padding: 0 12px;
	}

	body.home-body .primary-nav:where(:not(#home-responsive-fix-31)) {
		gap: 10px 14px;
	}

	.home-page .hero-content:where(:not(#home-responsive-fix-32)) {
		padding: 34px 18px 52px;
	}

	.home-page .hero-title:where(:not(#home-responsive-fix-33)) {
		font-size: clamp(34px, 10vw, 42px);
	}
}

/* Home hero should blend into the page without separator rules. */
.home-body .site-header:where(:not(#home-hero-lines-fix-1)) {
	border-bottom: 0;
}

.home-page .hero:where(:not(#home-hero-lines-fix-2)) {
	border-top: 0;
	border-bottom: 0;
}

@media (min-width: 1181px) {
	.home-root:where(:not(#home-scroll-restore-1)) {
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.home-body:where(:not(#home-scroll-restore-2)) {
		height: auto;
		min-height: 100dvh;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.home-page .hero-slide:where(:not(#home-hero-crop-fix-1)) {
		height: clamp(520px, 40.5vw, 620px);
		min-height: 0;
		max-height: none;
		background-image: url("/images/sabera-hero-full-clean-v2.png"),
			linear-gradient(180deg, #fff5e7 0%, #ebd8bf 100%);
		background-position: center bottom, center;
		background-size: 100% auto, cover;
	}

	.home-page .hero-badge:where(:not(#home-hero-baked-text-fix-1)),
	.home-page .hero-title:where(:not(#home-hero-baked-text-fix-2)),
	.home-page .hero-text:where(:not(#home-hero-baked-text-fix-3)) {
		display: none;
	}

	.home-page .hero-content:where(:not(#home-hero-baked-text-fix-4)) {
		padding-top: clamp(425px, 33vw, 505px);
	}

	.home-body
		.site-header
		.right-menu:where(:not(#home-header-artifact-fix-1)) {
		position: absolute;
		top: 50%;
		right: clamp(14px, 1.35vw, 22px);
		transform: translateY(-50%);
		isolation: isolate;
		padding-inline: 0;
	}

	.home-body
		.site-header
		.icon-button[title="Shopping Cart"]
		.cart-count-badge:where(:not(#home-header-artifact-fix-4)) {
		top: -8px;
		right: 0;
	}
}

@media (min-width: 1500px) {
	.home-body
		.site-header
		.right-menu:where(:not(#home-header-artifact-fix-5)) {
		transform: translate(
			clamp(8px, calc((100vw - 1500px) * 0.08), 24px),
			-50%
		);
	}
}

/* Legal pages use compact content buttons, not homepage hero buttons. */
.legal-card:where(:not(#legal-page-fix-1)) {
	overflow: hidden;
}

.legal-block p:where(:not(#legal-page-fix-2)),
.legal-block li:where(:not(#legal-page-fix-3)) {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.legal-actions:where(:not(#legal-page-fix-4)) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.legal-actions .btn-primary:where(:not(#legal-page-fix-5)),
.legal-actions .btn-secondary:where(:not(#legal-page-fix-6)) {
	width: auto;
	min-width: 180px;
	height: 50px;
	padding: 0 26px;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	white-space: nowrap;
}

.legal-actions .btn-primary:where(:not(#legal-page-fix-7)) {
	background: var(--sabera-burgundy);
	color: #fff;
	border: 1px solid var(--sabera-burgundy);
	box-shadow: none;
}

.legal-actions .btn-secondary:where(:not(#legal-page-fix-8)) {
	background: #fffdf9;
	color: var(--sabera-burgundy);
	border: 1px solid rgba(73, 32, 24, 0.55);
}

@media (max-width: 768px) {
	.legal-actions:where(:not(#legal-page-fix-9)) {
		align-items: stretch;
	}

	.legal-actions .btn-primary:where(:not(#legal-page-fix-10)),
	.legal-actions .btn-secondary:where(:not(#legal-page-fix-11)) {
		width: 100%;
		min-width: 0;
	}
}

/* Keep the standard header horizontally centered on tablet widths. */
@media (min-width: 769px) and (max-width: 1180px) {
	body:not(.home-body):where(:not(#header-tablet-align-fix-1)) {
		padding-top: 154px;
	}

	body:not(.home-body) .site-header:where(:not(#header-tablet-align-fix-2)) {
		height: 118px;
		padding: 0;
	}

	body:not(.home-body)
		.site-header
		.container:where(:not(#header-tablet-align-fix-3)) {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: clamp(14px, 2vw, 24px);
	}

	body:not(.home-body) .logo:where(:not(#header-tablet-align-fix-4)) {
		width: clamp(154px, 18vw, 190px);
		margin: 0;
		flex: 0 0 auto;
	}

	body:not(.home-body) .primary-nav:where(:not(#header-tablet-align-fix-5)) {
		order: initial;
		width: auto;
		flex: 1 1 auto;
		justify-content: center;
		gap: clamp(14px, 2vw, 24px);
		overflow: visible;
		padding: 0;
	}

	body:not(.home-body)
		.primary-nav
		a:where(:not(#header-tablet-align-fix-6)) {
		font-size: clamp(11px, 1.35vw, 13px);
		padding: 10px 0;
	}

	body:not(.home-body)
		.site-header
		.right-menu:where(:not(#header-tablet-align-fix-7)) {
		width: auto;
		flex: 0 0 auto;
		margin-left: 0;
		justify-content: flex-end;
		flex-wrap: nowrap;
		gap: clamp(6px, 1vw, 10px);
	}

	body:not(.home-body)
		.site-header
		.search-bar:where(:not(#header-tablet-align-fix-8)) {
		width: 36px;
		height: 44px;
		max-width: none;
		order: initial;
	}
}

/* Mobile header: center each row and keep navigation on one line. */
@media (max-width: 768px) {
	body:not(.home-body):where(:not(#header-mobile-align-fix-1)) {
		padding-top: 212px;
	}

	body:not(.home-body) .site-header:where(:not(#header-mobile-align-fix-2)) {
		min-height: 176px;
		padding: 12px 0 14px;
	}

	body:not(.home-body)
		.site-header
		.container:where(:not(#header-mobile-align-fix-3)) {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas:
			"logo"
			"actions"
			"nav";
		justify-items: center;
		align-items: center;
		gap: 10px;
	}

	body:not(.home-body) .logo:where(:not(#header-mobile-align-fix-4)) {
		grid-area: logo;
		width: clamp(150px, 47vw, 188px);
		margin: 0;
	}

	body:not(.home-body)
		.site-header
		.right-menu:where(:not(#header-mobile-align-fix-5)) {
		grid-area: actions;
		width: auto;
		margin-left: 0;
		justify-self: center;
		justify-content: center;
		flex-wrap: nowrap;
		gap: clamp(14px, 5vw, 24px);
	}

	body:not(.home-body) .primary-nav:where(:not(#header-mobile-align-fix-6)) {
		grid-area: nav;
		width: 100%;
		justify-content: center;
		flex-wrap: nowrap;
		gap: clamp(13px, 4vw, 22px);
		overflow: visible;
		padding: 0;
	}

	body:not(.home-body)
		.primary-nav
		a:where(:not(#header-mobile-align-fix-7)) {
		font-size: clamp(11px, 3.1vw, 13px);
		padding: 6px 0;
	}
}

/* Case product sale treatment. */
.product-image-wrap:where(:not(#case-sale-ui-1)),
.product-main-image:where(:not(#case-sale-ui-2)) {
	position: relative;
}

.case-sale-badge:where(:not(#case-sale-ui-3)) {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 2px;
	background: #d7271f;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 8px 18px rgba(139, 30, 47, 0.18);
}

.price-stack:where(:not(#case-sale-ui-4)),
.cart-price-stack:where(:not(#case-sale-ui-5)) {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
}

.product-price .price-stack:where(:not(#case-sale-ui-6)),
.product-detail-price .price-stack:where(:not(#case-sale-ui-7)),
.cart-product-price .cart-price-stack:where(:not(#case-sale-ui-8)),
.cart-line-total .price-stack:where(:not(#case-sale-ui-9)),
.checkout-item-price .price-stack:where(:not(#case-sale-ui-10)) {
	display: flex;
}

.price-was:where(:not(#case-sale-ui-11)) {
	color: #8d837c;
	font-size: 0.72em;
	font-weight: 700;
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: #8b1e2f;
}

.price-now:where(:not(#case-sale-ui-12)),
.sale-price:where(:not(#case-sale-ui-13)) {
	color: #8b1e2f;
	font-weight: 800;
}

.product-detail-price .price-now:where(:not(#case-sale-ui-14)) {
	font-size: 1em;
}

.cart-product-price .price-now:where(:not(#case-sale-ui-15)),
.checkout-item-price .price-now:where(:not(#case-sale-ui-16)) {
	color: #111;
}

.product-tile h3.is-case-product-title:where(:not(#case-title-fix-1)),
.product-tile h3.is-case-product-title a:where(:not(#case-title-fix-2)) {
	white-space: normal;
	overflow: visible;
	word-break: normal;
}

.product-tile h3.is-case-product-title:where(:not(#case-title-fix-8)) {
	width: 100%;
	max-width: 100%;
}

.product-title-link:where(:not(#case-title-fix-3)),
.product-title-main:where(:not(#case-title-fix-4)),
.product-title-sub:where(:not(#case-title-fix-5)) {
	display: block;
}

.product-tile h3.is-case-product-title:where(:not(#case-title-fix-6)) {
	font-size: clamp(14px, 0.72vw, 16px);
	line-height: 1.08;
}

.product-tile
	h3.is-case-product-title
	.product-title-link:where(:not(#case-title-fix-9)) {
	font-size: inherit;
	line-height: inherit;
}

.product-title-sub:where(:not(#case-title-fix-7)) {
	margin-top: 2px;
	font-size: 0.78em;
	line-height: 1.05;
	letter-spacing: 0.02em;
}

/* Product detail pages should share the warm Sabera editorial palette. */
.product-page:where(:not(#product-style-refresh-1)) {
	background: radial-gradient(
			circle at 18% 0%,
			rgba(255, 246, 228, 0.88),
			transparent 34%
		),
		linear-gradient(180deg, var(--sabera-cream-strong) 0%, #f6ead8 100%);
	color: var(--sabera-ink);
}

.product-page .secondary-nav:where(:not(#product-style-refresh-2)) {
	background: rgba(255, 250, 241, 0.74);
	border-color: rgba(126, 91, 62, 0.16);
}

.product-detail-section:where(:not(#product-style-refresh-3)),
.product-description-section:where(:not(#product-style-refresh-4)) {
	background: transparent;
}

.product-breadcrumb:where(:not(#product-style-refresh-5)),
.product-breadcrumb a:where(:not(#product-style-refresh-6)) {
	color: var(--sabera-muted);
}

.product-breadcrumb a:hover:where(:not(#product-style-refresh-7)) {
	color: var(--sabera-burgundy);
}

.product-main-image:where(:not(#product-style-refresh-8)),
.product-info:where(:not(#product-style-refresh-9)),
.product-description-card:where(:not(#product-style-refresh-10)) {
	border: 1px solid var(--sabera-line);
	background: linear-gradient(
		138deg,
		rgba(255, 252, 245, 0.96) 0%,
		rgba(255, 248, 236, 0.78) 100%
	);
	box-shadow: 0 16px 36px rgba(82, 44, 20, 0.08);
}

.product-main-image:where(:not(#product-style-refresh-11)) {
	position: relative;
	overflow: hidden;
}

.product-main-image img:where(:not(#product-style-refresh-12)) {
	background: transparent;
}

.product-thumb:where(:not(#product-style-refresh-13)) {
	border-color: var(--sabera-line);
	background: rgba(255, 250, 241, 0.82);
	box-shadow: 0 8px 18px rgba(82, 44, 20, 0.05);
}

.product-thumb.active:where(:not(#product-style-refresh-14)) {
	border-color: var(--sabera-burgundy);
	box-shadow: 0 0 0 2px rgba(127, 9, 32, 0.12),
		0 10px 20px rgba(82, 44, 20, 0.08);
}

.product-detail-type:where(:not(#product-style-refresh-15)) {
	color: var(--sabera-burgundy);
	letter-spacing: 0.08em;
}

.product-detail-title:where(:not(#product-style-refresh-16)),
.product-description-card h2:where(:not(#product-style-refresh-17)) {
	color: var(--sabera-ink);
}

.product-detail-price:where(:not(#product-style-refresh-18)) {
	color: var(--sabera-ink);
}

.product-detail-copy:where(:not(#product-style-refresh-19)),
.product-highlights:where(:not(#product-style-refresh-20)),
.product-description-card p:where(:not(#product-style-refresh-21)),
.product-meta-box p:where(:not(#product-style-refresh-22)) {
	color: #3a2a24;
}

.product-meta-box:where(:not(#product-style-refresh-23)) {
	border-top-color: rgba(126, 91, 62, 0.22);
}

.quantity-box label:where(:not(#product-style-refresh-24)) {
	color: #5f2d18;
}

.quantity-box input:where(:not(#product-style-refresh-25)) {
	border-color: var(--sabera-line);
	background: rgba(255, 252, 245, 0.9);
	color: var(--sabera-ink);
}

.product-secondary-btn:where(:not(#product-style-refresh-26)) {
	border-color: rgba(127, 9, 32, 0.45);
	background: rgba(255, 250, 241, 0.64);
	color: var(--sabera-burgundy);
}

.product-secondary-btn:hover:where(:not(#product-style-refresh-27)) {
	background: rgba(127, 9, 32, 0.08);
}

.right-menu .search-bar:where(:not(#header-search-refresh-1)) {
	position: relative;
	flex: 0 0 44px;
	overflow: visible;
	transition: width 0.2s ease, background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.right-menu .search-bar.is-open:where(:not(#header-search-refresh-2)) {
	flex: 0 1 min(280px, 32vw);
	width: min(280px, 32vw);
	max-width: 280px;
	border: 1px solid rgba(126, 91, 62, 0.26);
	border-radius: 999px;
	background: rgba(255, 250, 241, 0.86);
	box-shadow: 0 10px 22px rgba(82, 44, 20, 0.08);
}

body:not(.home-body)
	.site-header
	.right-menu
	.search-bar.is-open:where(:not(#header-search-refresh-6)) {
	flex: 0 1 min(280px, 32vw);
	width: min(280px, 32vw);
	max-width: 280px;
}

.right-menu .search-bar.is-open input:where(:not(#header-search-refresh-3)) {
	position: static;
	width: 100%;
	height: 42px;
	min-width: 0;
	padding: 0 4px 0 16px;
	border: 0;
	background: transparent;
	opacity: 1;
	pointer-events: auto;
	color: var(--sabera-ink);
	font-family: Arial, sans-serif;
	font-size: 14px;
}

.right-menu .search-bar.is-open button:where(:not(#header-search-refresh-4)) {
	flex: 0 0 42px;
	width: 42px;
	min-width: 42px;
}

@media (max-width: 720px) {
	.right-menu .search-bar.is-open:where(:not(#header-search-refresh-5)) {
		position: absolute;
		right: 0;
		top: calc(100% + 8px);
		z-index: 10;
		flex-basis: min(280px, calc(100vw - 32px));
		width: min(280px, calc(100vw - 32px));
		max-width: calc(100vw - 32px);
	}
}

@media (max-width: 1024px) {
	.right-menu .search-bar.is-open input:where(:not(#header-search-tablet-1)) {
		top: calc(100% + 58px);
	}

	.right-menu
		.search-bar.is-open
		.search-suggestions:where(:not(#header-search-tablet-2)) {
		top: calc(100% + 110px);
	}
}

.right-menu:where(:not(#header-search-popover-1)) {
	position: relative;
}

.right-menu .search-bar.is-open:where(:not(#header-search-popover-2)) {
	position: relative;
	flex: 0 0 44px;
	width: 44px;
	max-width: 44px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

body:not(.home-body)
	.site-header
	.right-menu
	.search-bar.is-open:where(:not(#header-search-popover-3)) {
	flex: 0 0 44px;
	width: 44px;
	max-width: 44px;
}

.right-menu .search-bar.is-open input:where(:not(#header-search-popover-4)) {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 20;
	width: min(280px, calc(100vw - 32px));
	height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(126, 91, 62, 0.26);
	border-radius: 999px;
	background: rgba(255, 250, 241, 0.96);
	box-shadow: 0 12px 26px rgba(82, 44, 20, 0.12);
	opacity: 1;
	outline: 0;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}

.right-menu
	.search-bar.is-open
	input:focus:where(:not(#header-search-popover-7)) {
	border-color: rgba(127, 9, 32, 0.42);
	box-shadow: 0 0 0 3px rgba(127, 9, 32, 0.1),
		0 12px 26px rgba(82, 44, 20, 0.12);
}

.right-menu .search-bar input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.right-menu .search-bar.is-open button:where(:not(#header-search-popover-5)) {
	position: relative;
	z-index: 21;
}

.search-suggestions:where(:not(#header-search-suggestions-1)) {
	position: absolute;
	top: calc(100% + 62px);
	right: 0;
	z-index: 22;
	width: min(320px, calc(100vw - 32px));
	padding: 8px;
	border: 1px solid rgba(126, 91, 62, 0.24);
	border-radius: 12px;
	background: rgba(255, 250, 241, 0.98);
	box-shadow: 0 16px 34px rgba(82, 44, 20, 0.14);
}

.search-suggestions.is-hidden:where(:not(#header-search-suggestions-2)) {
	display: none;
}

.search-suggestion-option:where(:not(#header-search-suggestions-3)) {
	display: block;
	width: 100%;
	min-width: 0;
	height: auto;
	padding: 10px 12px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--sabera-ink);
	font-size: 15px;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
}

.right-menu
	.search-bar
	.search-suggestion-option:where(:not(#header-search-suggestions-11)) {
	position: static;
	z-index: auto;
	display: block;
	flex: none;
	width: 100%;
	min-width: 0;
	height: auto;
	padding: 10px 12px;
	font-size: 15px;
	line-height: 1.25;
}

.right-menu
	.search-bar.is-open
	button.search-suggestion-option:where(:not(#header-search-suggestions-12)) {
	position: static;
	z-index: auto;
	display: block;
	flex: none;
	width: 100%;
	min-width: 0;
	height: auto;
	padding: 10px 12px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	font-size: 15px;
	line-height: 1.25;
	text-align: left;
}

.search-suggestion-option:hover:where(:not(#header-search-suggestions-4)),
.search-suggestion-option.is-active:where(:not(#header-search-suggestions-5)) {
	background: rgba(127, 9, 32, 0.08);
}

.search-suggestion-name:where(:not(#header-search-suggestions-6)),
.search-suggestion-meta:where(:not(#header-search-suggestions-7)) {
	display: block;
}

.search-suggestion-name:where(:not(#header-search-suggestions-8)) {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--sabera-burgundy);
}

.search-suggestion-meta:where(:not(#header-search-suggestions-9)) {
	margin-top: 2px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	color: var(--sabera-muted);
}

.search-suggestion-empty:where(:not(#header-search-suggestions-10)) {
	padding: 10px 12px;
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: var(--sabera-muted);
}

.shop-search-bridge:where(:not(#header-search-popover-6)) {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 1024px) {
	.right-menu
		.search-bar.is-open
		input:where(:not(#header-search-tablet-final-1)) {
		top: calc(100% + 58px);
	}

	.right-menu
		.search-bar.is-open
		.search-suggestions:where(:not(#header-search-tablet-final-2)) {
		top: calc(100% + 110px);
	}
}

/* Home fit correction: preserve the original no-scroll composition without shrinking wine cards. */
@media (min-width: 1181px) {
	.home-body:where(:not(#home-fit-correction-1)) {
		min-height: 0;
	}

	.home-page:where(:not(#home-fit-correction-6)) {
		margin-top: clamp(
			0px,
			calc((100dvh - 720px) * 0.28 + max(0px, 100dvh - 900px) * 0.9),
			200px
		);
	}

	.home-page .hero-slide:where(:not(#home-fit-correction-2)) {
		height: clamp(386px, 54dvh, 470px);
		min-height: 0;
		background-position: left center, left top, center;
		background-size: 100% 100%, auto 100%, cover;
	}

	.home-page .hero-content:where(:not(#home-fit-correction-3)) {
		padding-top: clamp(250px, 38dvh, 330px);
	}

	.home-page .featured-section:where(:not(#home-fit-correction-4)) {
		height: clamp(220px, 31dvh, 292px);
		min-height: 0;
	}

	.home-page .sabera-promise-strip:where(:not(#home-fit-correction-24)) {
		margin-top: clamp(18px, 2dvh, 24px);
	}

}

/* Desktop home reference lock: match the provided 1536 x 1024 composition. */
@media (min-width: 1181px) {
	.home-body:where(:not(#home-reference-lock-1)) {
		--home-reference-topbar: 2.34375vw;
		--home-reference-header: 9.114583vw;
		--home-reference-hero: 34.114583vw;
		--home-reference-featured: 20.3125vw;
		--home-reference-footer: 9.895833vw;
		height: auto;
		min-height: 0;
		padding-top: calc(
			var(--home-reference-topbar) + var(--home-reference-header)
		);
		overflow-x: hidden;
		overflow-y: auto;
	}

	.home-root:where(:not(#home-reference-lock-2)) {
		height: auto;
		min-height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.home-body .site-topbar:where(:not(#home-reference-lock-3)) {
		height: var(--home-reference-topbar);
	}

	.home-body .site-topbar-inner:where(:not(#home-reference-lock-4)) {
		min-height: var(--home-reference-topbar);
	}

	.home-body .site-header:where(:not(#home-reference-lock-5)) {
		top: var(--home-reference-topbar);
		height: var(--home-reference-header);
	}

	.home-body .site-header .container:where(:not(#home-reference-lock-6)) {
		height: 100%;
		padding-left: clamp(54px, 4.4vw, 68px);
		padding-right: clamp(36px, 3.6vw, 56px);
	}

	.home-page:where(:not(#home-reference-lock-7)) {
		margin-top: calc(var(--home-reference-header) * -1);
	}

	.home-page .hero:where(:not(#home-reference-lock-8)) {
		margin-top: 0;
	}

	.home-page .hero-slide:where(:not(#home-reference-lock-9)) {
		height: var(--home-reference-hero);
		min-height: 0;
		max-height: none;
		background-image: url("/images/sabera-hero-full-clean-v2.png"),
			linear-gradient(180deg, #fff5e7 0%, #ebd8bf 100%);
		background-position: center top, center;
		background-size: 100% auto, cover;
	}

	.home-page .hero-content:where(:not(#home-reference-lock-10)) {
		padding-top: 29.166667vw;
		padding-left: clamp(140px, 11.45vw, 176px);
		padding-bottom: 0;
	}

	.home-page .featured-section:where(:not(#home-reference-lock-11)) {
		height: var(--home-reference-featured);
		min-height: 0;
		max-height: none;
		padding: clamp(12px, 1.45dvh, 15px) 0 0;
		overflow: hidden;
	}

	.home-page .featured-section .container:where(:not(#home-reference-lock-12)) {
		max-width: 1536px;
		padding-left: clamp(28px, 2.35vw, 36px);
		padding-right: clamp(28px, 2.35vw, 36px);
	}

	.home-page .section-heading.centered:where(:not(#home-reference-lock-13)) {
		margin-bottom: clamp(3px, 0.3dvh, 4px);
	}

	.home-page .featured-grid:where(:not(#home-reference-lock-14)) {
		gap: clamp(18px, 1.25vw, 20px);
	}

	.home-page .wine-card:where(:not(#home-reference-lock-15)) {
		height: 12.5vw;
	}

	.home-page .sabera-promise-strip:where(:not(#home-reference-lock-16)) {
		height: 4.427083vw;
		margin-top: 0.78125vw;
	}

	.home-page .sabera-promise-strip img:where(:not(#home-reference-lock-18)) {
		height: 100%;
		object-fit: fill;
	}

}

@media (min-width: 1181px) {
	.home-body .primary-nav:where(:not(#home-header-bottle-clearance-1)) {
		transform: translateX(clamp(-96px, -5vw, -58px));
	}
}

@media (min-width: 1700px) {
	.home-body
		.site-header
		.right-menu:where(:not(#home-header-bottle-clearance-2)) {
		transform: translateY(-50%) translateX(clamp(92px, 6vw, 170px));
	}
}

/* Feedback testing flow */
.primary-nav .feedback-nav-link:where(:not(#feedback-nav-button-1)) {
	padding: 10px 18px;
	border: 1px solid rgba(139, 30, 47, 0.42);
	border-radius: 999px;
	background: #8b1e2f;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 10px 22px rgba(139, 30, 47, 0.14);
	transition: transform 0.18s ease, box-shadow 0.18s ease,
		background-color 0.18s ease;
}

.primary-nav .feedback-nav-link:where(:not(#feedback-nav-button-2))::before {
	display: none;
}

.primary-nav .feedback-nav-link:where(:not(#feedback-nav-button-3)):hover {
	background: #9f2438;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(139, 30, 47, 0.2);
}

.feedback-page:where(:not(#feedback-page-1)) {
	background: linear-gradient(180deg, #fff7ec 0%, #f8ead7 100%);
}

.feedback-card:where(:not(#feedback-card-1)) {
	border-color: #ead7c2;
	background: rgba(255, 251, 244, 0.96);
}

.feedback-form:where(:not(#feedback-form-1)) {
	margin-top: 10px;
}

.admin-feedback-filters:where(:not(#admin-feedback-1)) {
	grid-template-columns:
		minmax(260px, 1fr) minmax(150px, 210px)
		minmax(160px, 220px) minmax(170px, 230px) auto;
}

.admin-feedback-list:where(:not(#admin-feedback-2)) {
	display: grid;
	gap: 18px;
}

.admin-feedback-list-view:where(:not(#admin-feedback-list-view-1)) {
	display: grid;
	gap: 12px;
}

.admin-feedback-row:where(:not(#admin-feedback-row-1)) {
	display: grid;
	grid-template-columns:
		52px minmax(190px, 1.2fr) minmax(130px, 0.8fr)
		minmax(140px, 0.8fr) minmax(260px, auto);
	align-items: center;
	gap: 18px;
	padding: 18px 20px;
	border: 1px solid #eadfda;
	border-radius: 16px;
	background: #fffdf9;
	box-shadow: 0 10px 22px rgba(68, 31, 20, 0.045);
}

.admin-feedback-row-number:where(:not(#admin-feedback-row-2)) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #8b1e2f;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.admin-feedback-row-main:where(:not(#admin-feedback-row-3)),
.admin-feedback-row-field:where(:not(#admin-feedback-row-4)) {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.admin-feedback-row-main strong:where(:not(#admin-feedback-row-5)),
.admin-feedback-row-field strong:where(:not(#admin-feedback-row-6)) {
	overflow: hidden;
	color: var(--sabera-ink);
	font-size: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-feedback-row-main span:where(:not(#admin-feedback-row-7)),
.admin-feedback-row-field span:where(:not(#admin-feedback-row-8)) {
	color: #766a63;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.admin-feedback-row-actions:where(:not(#admin-feedback-row-9)) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: wrap;
}

.admin-feedback-detail-button:where(:not(#admin-feedback-row-10)),
.admin-feedback-back-button:where(:not(#admin-feedback-row-11)) {
	border: 1px solid #8b1e2f;
	border-radius: 999px;
	background: #fffaf4;
	color: #8b1e2f;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	padding: 10px 16px;
	white-space: nowrap;
}

.admin-feedback-detail-button:hover:where(:not(#admin-feedback-row-12)),
.admin-feedback-back-button:hover:where(:not(#admin-feedback-row-13)) {
	background: #8b1e2f;
	color: #fff;
}

.admin-feedback-back-button:where(:not(#admin-feedback-row-14)) {
	margin-bottom: 18px;
}

.admin-feedback-card:where(:not(#admin-feedback-3)) {
	padding: 24px;
	border: 1px solid #eadfda;
	border-radius: 18px;
	background: #fffdf9;
	box-shadow: 0 12px 28px rgba(68, 31, 20, 0.06);
}

.admin-feedback-card.fixed:where(:not(#admin-feedback-4)) {
	border-color: rgba(46, 125, 80, 0.32);
	background: linear-gradient(180deg, #fbfff9 0%, #fffdf9 100%);
}

.admin-feedback-card-header:where(:not(#admin-feedback-5)) {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
}

.admin-feedback-card-badges:where(:not(#admin-feedback-priority-1)) {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.admin-feedback-card h2:where(:not(#admin-feedback-6)) {
	margin: 0 0 6px;
	color: var(--sabera-ink);
	font-size: 28px;
	line-height: 1.1;
}

.admin-feedback-card p:where(:not(#admin-feedback-7)) {
	margin: 0;
}

.admin-feedback-message:where(:not(#admin-feedback-8)) {
	margin-top: 18px !important;
	color: #2a221e;
	font-size: 18px;
	line-height: 1.55;
	white-space: pre-wrap;
}

.admin-feedback-meta:where(:not(#admin-feedback-9)) {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
	color: #6b625d;
	font-size: 14px;
}

.admin-feedback-meta a:where(:not(#admin-feedback-10)),
.admin-feedback-card a:where(:not(#admin-feedback-11)) {
	color: #0b64c0;
	font-weight: 700;
}

.admin-feedback-status:where(:not(#admin-feedback-12)) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #ffe5e7;
	color: #a1111f;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.admin-feedback-priority:where(:not(#admin-feedback-priority-2)) {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff3c4;
	color: #865600;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.admin-feedback-priority.priority-high:where(:not(#admin-feedback-priority-3)) {
	background: #ffe5e7;
	color: #a1111f;
}

.admin-feedback-priority.priority-medium:where(:not(#admin-feedback-priority-4)) {
	background: #fff3c4;
	color: #865600;
}

.admin-feedback-priority.priority-low:where(:not(#admin-feedback-priority-5)) {
	background: #dff5e7;
	color: #17663a;
}

.admin-feedback-status.fixed:where(:not(#admin-feedback-13)) {
	background: #dff5e7;
	color: #17663a;
}

.admin-feedback-status.in-progress:where(:not(#admin-feedback-14)) {
	background: #fff3c4;
	color: #865600;
}

.admin-feedback-status.wont-fix:where(:not(#admin-feedback-15)) {
	background: #f4f1ef;
	color: #675a55;
}

.admin-feedback-form:where(:not(#admin-feedback-16)) {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #f0e5df;
}

@media (max-width: 980px) {
	.primary-nav .feedback-nav-link:where(:not(#feedback-nav-button-4)) {
		padding: 9px 14px;
	}

	.admin-feedback-filters:where(:not(#admin-feedback-17)) {
		grid-template-columns: 1fr;
	}

	.admin-feedback-card-header:where(:not(#admin-feedback-18)) {
		flex-direction: column;
	}

	.admin-feedback-card-badges:where(:not(#admin-feedback-priority-6)) {
		justify-content: flex-start;
	}

	.admin-feedback-row:where(:not(#admin-feedback-row-15)) {
		grid-template-columns: 44px 1fr;
		align-items: flex-start;
	}

	.admin-feedback-row-actions:where(:not(#admin-feedback-row-16)) {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
}

/* Keep the full header in the normal document flow. */
body:where(:not(#non-sticky-header-1)),
body.home-body:where(:not(#non-sticky-header-2)) {
	padding-top: 0;
}

.site-topbar:where(:not(#non-sticky-header-3)),
.site-header:where(:not(#non-sticky-header-4)),
.home-body .site-topbar:where(:not(#non-sticky-header-5)),
.home-body .site-header:where(:not(#non-sticky-header-6)) {
	position: static;
	top: auto;
	left: auto;
}

.home-page:where(:not(#non-sticky-header-7)),
.home-page .hero:where(:not(#non-sticky-header-8)) {
	margin-top: 0;
}
