/* =========================================================================
   EAST TEXAS SLOTS — THEME STYLESHEET
   Theme by The Free Website Guys.
   ========================================================================= */

/* -------------------------------------------------------------------------
   TOKENS — derived/gradient/shadow tokens computed from editable colors.
   The --color-* variables themselves are injected inline by functions.php
   from the live Customizer values (Section 6/6.1).
   ------------------------------------------------------------------------- */
:root {
	--radius: 1.25rem;
	--font-display: 'Fraunces', 'Times New Roman', serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--font-mono: 'Space Mono', ui-monospace, monospace;

	--chrome-grad: linear-gradient(135deg, #e8e9ec 0%, #a2a7ae 45%, #c9cdd3 100%);
	--brass-grad: linear-gradient(135deg, color-mix(in srgb, var(--color-brass-sheen) 70%, white 10%) 0%, var(--color-primary) 45%, var(--color-brass-deep) 100%);

	--shadow-soft: 0 10px 30px -12px rgb(0 0 0 / 0.6);
	--shadow-elevated: 0 30px 80px -30px rgb(0 0 0 / 0.8), 0 0 0 1px color-mix(in srgb, var(--color-primary) 15%, transparent);
	--shadow-glow: 0 0 60px -12px color-mix(in srgb, var(--color-amber-glow) 45%, transparent);

	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 15px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--card-radius: var(--radius);
	--section-padding: 2rem;
	--header-height: 64px;
	--theme-admin-bar-height: 0px;

	/* Logo heights — defaults match Lovable; overridden by Customizer inline CSS */
	--logo-height-hero-sm: 54px;
	--logo-height-hero-md: 58px;
	--logo-height-hero-lg: 64px;
	--logo-height-solid-sm: 68px;
	--logo-height-solid-md: 76px;
	--logo-height-solid-lg: 96px;
	--logo-height-footer: 48px;
}

/* -------------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; background: var(--color-background); }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; margin: 0; }
h1, h2, h3, h4, h5, h6, .font-display {
	font-family: var(--font-display);
	font-optical-sizing: auto;
	letter-spacing: -0.015em;
	font-weight: 500;
	color: var(--color-foreground);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.theme-product-card__image):not(.hero-section__video):not(.precontact-section__video):not(.site-logo-img):not(.spotlight-section__main-image) { height: auto; }
.cover-img, .theme-product-card__image, .hero-section__video, .precontact-section__video {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
button { font-family: inherit; font-size: 15px; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 15px; color: inherit; }
section[id] { scroll-margin-top: calc(var(--header-height) + var(--theme-admin-bar-height)); }

/* Admin bar offset — sticky header sits below the WP admin bar */
body.admin-bar {
	--theme-admin-bar-height: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--theme-admin-bar-height: var(--wp-admin--admin-bar--height, 46px);
	}
}
@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed !important;
		top: 0 !important;
	}
	html.wp-toolbar {
		margin-top: 0 !important;
		padding-top: var(--wp-admin--admin-bar--height, 46px);
	}
}
body.customize-preview.admin-bar,
body.is-customizer.admin-bar {
	--theme-admin-bar-height: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.customize-preview.admin-bar,
	body.is-customizer.admin-bar {
		--theme-admin-bar-height: var(--wp-admin--admin-bar--height, 46px);
	}
}

/* Pointer cursor on interactive elements */
a[href],
button:not(:disabled),
input[type="submit"],
input[type="button"],
input[type="reset"],
select,
summary,
.theme-section-link,
.nav-link,
.theme-cat-filter,
.faq-item__question,
.spotlight-section__thumb,
.theme-product-thumb,
.add_to_cart_button,
.ajax_add_to_cart,
[data-cart-open],
[data-cart-close],
[data-faq-toggle],
.site-footer__top-btn,
.site-header__menu-toggle,
.site-header__mobile-link,
.theme-cart-item__qty-btn,
.theme-cart-item__remove,
.theme-media-select-btn {
	cursor: pointer;
}
button:disabled,
.add_to_cart_button.disabled,
.single_add_to_cart_button.disabled {
	cursor: not-allowed;
}
::selection { background: color-mix(in srgb, var(--color-primary) 60%, transparent); color: var(--color-foreground); }

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding-left: max(1.5rem, env(safe-area-inset-left, 0px)); padding-right: max(1.5rem, env(safe-area-inset-right, 0px)); }
@media (min-width: 1024px) { .container-wide { padding: 0 4rem; } }

.mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.text-brass-grad, .text-brass { color: var(--color-primary); }
.text-brass-grad {
	background: var(--brass-grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
}
.bg-panel { background-color: var(--color-panel); }
.bg-panel-alt { background-color: var(--color-panel-alt); }
.bg-well { background-color: var(--color-well); }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

.eyebrow {
	font-family: var(--font-mono);
	font-size: 15px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-primary);
	display: block;
}

.section-heading, .about-section__heading, .shop-heading, .spotlight-section__heading,
.service-section__heading, .faq-section__heading, .contact-title { line-height: 1.2; }

.em-accent { color: var(--color-primary); font-weight: 700; }
.em-bold { font-weight: 700; color: inherit; }

/* -------------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------------- */
.btn-brass, .btn-chrome {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	border-radius: var(--btn-radius); padding: var(--btn-padding); height: var(--btn-height);
	font-weight: var(--btn-font-weight); font-size: var(--btn-font-size);
	text-transform: var(--btn-text-transform); letter-spacing: var(--btn-letter-spacing);
	transition: transform 200ms ease, box-shadow 300ms ease, border-color 250ms ease, color 250ms ease, background 250ms ease, opacity 200ms ease;
	position: relative; overflow: hidden; white-space: nowrap;
}
.btn-brass {
	background: var(--brass-grad);
	color: var(--color-background);
	box-shadow: 0 6px 22px -6px color-mix(in srgb, var(--color-primary) 45%, transparent), inset 0 1px 0 color-mix(in srgb, var(--color-brass-sheen) 40%, transparent);
}
.btn-brass:hover { box-shadow: 0 10px 32px -8px color-mix(in srgb, var(--color-amber-glow) 55%, transparent), inset 0 1px 0 color-mix(in srgb, var(--color-brass-sheen) 60%, transparent); }
.btn-brass:active { transform: scale(0.97); }
.btn-chrome {
	background: transparent; color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
.btn-chrome:hover { border-color: var(--color-primary); color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 6%, transparent); }
.btn-brass svg, .btn-chrome svg { pointer-events: none; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   DECORATIVE FRAME / GLOW UTILITIES
   ------------------------------------------------------------------------- */
.offset-frame { position: relative; isolation: isolate; }
.offset-frame::before {
	content: ''; position: absolute; inset: 8px -8px -8px 8px; border-radius: inherit;
	background: var(--chrome-grad); z-index: -1; opacity: 0.55;
	transition: inset 380ms cubic-bezier(0.22,1,0.36,1), opacity 380ms ease, filter 380ms ease;
}
.offset-frame::after {
	content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
	background: var(--brass-grad);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	opacity: 0.35; transition: opacity 380ms ease, box-shadow 380ms ease; pointer-events: none;
}
.offset-frame:hover::before { inset: 0; opacity: 0.9; filter: brightness(1.05); }
.offset-frame:hover::after { opacity: 1; box-shadow: 0 0 24px color-mix(in srgb, var(--color-amber-glow) 35%, transparent); }

.amber-backlight { position: relative; }
.amber-backlight::before {
	content: ''; position: absolute; inset: -20%;
	background: radial-gradient(circle at 50% 55%, color-mix(in srgb, var(--color-amber-glow) 28%, transparent), transparent 60%);
	filter: blur(30px); opacity: 0; transition: opacity 500ms ease; z-index: -1; pointer-events: none;
}
.amber-backlight:hover::before { opacity: 1; }

/* -------------------------------------------------------------------------
   ANIMATIONS (Section 2.1)
   ------------------------------------------------------------------------- */
[data-aos] {
	opacity: 0; transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 900ms cubic-bezier(0.22,1,0.36,1), filter 900ms cubic-bezier(0.22,1,0.36,1);
	will-change: opacity, transform, filter;
}
[data-aos].is-revealed { opacity: 1; transform: translateY(0); filter: blur(0); }
body.is-customizer [data-aos] { opacity: 1 !important; transform: none !important; filter: none !important; }
@media (prefers-reduced-motion: reduce) {
	[data-aos] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

@keyframes marquee-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.marquee-track { width: max-content; animation: marquee-scroll 45s linear infinite; display: flex; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

@keyframes twinkle { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; box-shadow: 0 0 8px color-mix(in srgb, var(--color-amber-glow) 90%, transparent); } }
.twinkle { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); animation: twinkle 3s ease-in-out infinite; }

@keyframes reel-flip { 0% { transform: translateY(-60%); opacity: 0.2; filter: blur(2px); } 60% { transform: translateY(6%); opacity: 1; filter: blur(0); } 100% { transform: translateY(0); opacity: 1; } }
.reel-flip { display: inline-block; }

@keyframes payline-sweep { 0% { transform: translateX(-40%); opacity: 0; } 25% { opacity: 1; } 100% { transform: translateX(120%); opacity: 0; } }
.payline-divider { position: relative; height: 1px; background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-primary) 40%, transparent), transparent); overflow: hidden; }
.payline-divider::after {
	content: ''; position: absolute; inset: 0; width: 40%;
	background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--color-amber-glow) 85%, transparent), transparent);
	animation: payline-sweep 6s ease-in-out infinite;
}

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.skeleton-shimmer { background: linear-gradient(90deg, var(--color-panel) 0%, var(--color-panel-alt) 50%, var(--color-panel) 100%); background-size: 200% 100%; animation: shimmer 1.6s linear infinite; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: fade-in 0.7s ease-out both; }

/* -------------------------------------------------------------------------
   SCROLL PROGRESS (Credit Meter — Lovable ScrollProgress)
   ------------------------------------------------------------------------- */
.site-scroll-progress {
	position: fixed;
	top: var(--theme-admin-bar-height, 0);
	left: 0;
	right: 0;
	z-index: 70;
	pointer-events: none;
}
.site-scroll-progress__track {
	position: relative;
	height: 3px;
	width: 100%;
	background: rgb(0 0 0 / 0.4);
}
.site-scroll-progress__bar {
	position: absolute;
	inset-block: 0;
	left: 0;
	width: 100%;
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 150ms ease-out;
	background: linear-gradient(90deg, var(--color-brass-deep), var(--color-primary) 50%, var(--color-amber-glow));
	box-shadow: 0 0 12px color-mix(in srgb, var(--color-amber-glow) 60%, transparent);
}
.site-scroll-progress__credits {
	position: absolute;
	right: 0.75rem;
	top: 0.375rem;
	display: none;
	align-items: center;
	gap: 0.375rem;
	font-size: 11px;
	letter-spacing: 0.24em;
	color: color-mix(in srgb, var(--color-primary) 80%, transparent);
}
@media (min-width: 640px) {
	.site-scroll-progress__credits { display: flex; }
}
.site-scroll-progress__credits-label { opacity: 0.6; }

/* -------------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky; top: var(--theme-admin-bar-height, 0); inset-inline: 0; z-index: 50; width: 100%;
	transition: background-color 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
	background: color-mix(in srgb, var(--color-background) 10%, transparent);
	backdrop-filter: blur(2px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 5%, transparent);
}
.site-header.is-in-hero {
	overflow: hidden;
}
.site-header.is-solid,
body.theme-no-hero .site-header {
	overflow: visible;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.site-header__inner {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
	padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 64px;
	transition: height 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1024px) {
	.site-header__inner {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}
.site-header.is-in-hero .site-header__inner {
	height: 64px;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.site-header.is-in-hero .site-header__inner { height: 80px; }
}
.site-header.is-solid .site-header__inner,
body.theme-no-hero .site-header__inner {
	overflow: visible;
	height: 56px;
}
@media (min-width: 640px) {
	.site-header.is-solid .site-header__inner,
	body.theme-no-hero .site-header__inner { height: 64px; }
}
@media (min-width: 1024px) {
	.site-header.is-solid .site-header__inner,
	body.theme-no-hero .site-header__inner { height: 80px; }
}
.site-header__left { display: flex; align-items: center; gap: 0.5rem; min-width: 0; flex-shrink: 0; }
.site-header__menu-toggle {
	display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
	border-radius: 50%; color: var(--color-foreground); transition: background 200ms;
}
.site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }
.site-header__brand { display: inline-flex; align-items: center; min-width: 0; position: relative; z-index: 10; }
.site-header .site-logo-img {
	width: auto !important;
	max-width: none;
	max-height: var(--logo-height-hero-sm);
	display: block;
	object-fit: contain;
	transition: height 300ms cubic-bezier(0.22, 1, 0.36, 1), max-height 300ms cubic-bezier(0.22, 1, 0.36, 1), transform 300ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}
@media (min-width: 640px) {
	.site-header .site-logo-img { max-height: var(--logo-height-hero-md); }
}
@media (min-width: 1024px) {
	.site-header .site-logo-img { max-height: var(--logo-height-hero-lg); }
}
.site-header.is-in-hero .site-logo-img {
	height: var(--logo-height-hero-sm);
	max-height: var(--logo-height-hero-sm);
	transform: none;
	margin-left: 0;
	filter: drop-shadow(0 6px 14px rgb(0 0 0 / 0.35));
}
@media (min-width: 640px) {
	.site-header.is-in-hero .site-logo-img { height: var(--logo-height-hero-md); max-height: var(--logo-height-hero-md); }
}
@media (min-width: 1024px) {
	.site-header.is-in-hero .site-logo-img { height: var(--logo-height-hero-lg); max-height: var(--logo-height-hero-lg); }
}
.site-header.is-solid .site-logo-img,
body.theme-no-hero .site-header .site-logo-img {
	height: var(--logo-height-solid-sm);
	max-height: var(--logo-height-solid-sm);
	transform: translateY(8px);
	margin-left: 0.5rem;
	filter: drop-shadow(0 8px 22px rgb(0 0 0 / 0.55));
}
@media (min-width: 640px) {
	.site-header.is-solid .site-logo-img,
	body.theme-no-hero .site-header .site-logo-img {
		height: var(--logo-height-solid-md);
		max-height: var(--logo-height-solid-md);
		transform: translateY(12px);
		margin-left: 0.75rem;
	}
}
@media (min-width: 1024px) {
	.site-header.is-solid .site-logo-img,
	body.theme-no-hero .site-header .site-logo-img {
		height: var(--logo-height-solid-lg);
		max-height: var(--logo-height-solid-lg);
		transform: translateY(16px);
		margin-left: 0.75rem;
	}
}
.site-footer .site-logo-img {
	height: var(--logo-height-footer);
	width: auto !important;
	transform: none;
	margin-left: 0;
	filter: none;
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }

.site-header__nav { display: none; }
@media (min-width: 1024px) { .site-header__nav { display: flex; align-items: center; gap: 0.25rem; min-width: 0; } }
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-list a, .nav-link {
	position: relative; padding: 8px 12px; font-family: var(--font-mono); font-size: 13px;
	letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 200ms ease; white-space: nowrap;
}
.theme-nav-list a:hover, .nav-link:hover { color: var(--color-primary); }
.theme-nav-list a::after, .nav-link::after {
	content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px;
	background: radial-gradient(circle, var(--color-amber-glow) 40%, transparent 60%) 0 50% / 8px 8px repeat-x;
	opacity: 0; transition: opacity 260ms ease;
}
.theme-nav-list a:hover::after, .nav-link:hover::after,
.theme-nav-list a.is-active::after, .nav-link.is-active::after { opacity: 1; }
.theme-nav-list a.is-active, .nav-link.is-active { color: var(--color-primary); }

.site-header__right { display: flex; align-items: center; flex-shrink: 0; }
.site-header__cart-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	transition: border-color 200ms, background 200ms, transform 300ms cubic-bezier(0.22,1,0.36,1);
}
.site-header__cart-btn:hover { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.theme-cart-count {
	position: absolute; top: -4px; right: -4px; font-family: var(--font-mono);
	background: var(--brass-grad); color: var(--color-background); font-size: 11px; font-weight: 700;
	min-width: 20px; height: 20px; padding: 0 4px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 0 12px color-mix(in srgb, var(--color-amber-glow) 70%, transparent);
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-panel {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
	background: var(--color-background);
}
.site-header__mobile-panel.is-open {
	display: block;
	animation: fade-in 0.7s ease-out both;
}
@media (min-width: 1024px) {
	.site-header__mobile-panel,
	.site-header__mobile-panel.is-open { display: none !important; }
}
.site-header__mobile-panel-inner {
	display: flex;
	flex-direction: column;
	padding: 0.5rem 1rem;
}
@media (min-width: 640px) {
	.site-header__mobile-panel-inner { padding: 0.5rem 1.5rem; }
}
.site-header__mobile-link {
	display: block;
	width: 100%;
	text-align: left;
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	padding: 0.875rem 0;
	border: none;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	background: none;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 200ms ease;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.site-header__mobile-link:last-child { border-bottom: none; }
.site-header__mobile-link:hover,
.site-header__mobile-link.is-active { color: var(--color-primary); }
.site-header.is-in-hero.is-menu-open,
.site-header.is-menu-open {
	overflow: visible;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.site-header.is-in-hero.is-menu-open .site-header__inner,
.site-header.is-menu-open .site-header__inner {
	overflow: visible;
}

body.theme-no-hero .site-header { background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(12px); }

/* Section eyebrow spacing — Lovable mobile */
.about-section .eyebrow,
.shop-section .eyebrow,
.spotlight-section .eyebrow,
.service-section .eyebrow,
.faq-section .eyebrow,
.contact-section .eyebrow { margin-bottom: 0.75rem; }
@media (min-width: 640px) {
	.about-section .eyebrow,
	.spotlight-section .eyebrow { margin-bottom: 1.25rem; }
	.service-section .eyebrow,
	.faq-section .eyebrow,
	.contact-section .eyebrow { margin-bottom: 1rem; }
}

/* -------------------------------------------------------------------------
   HOME HERO FULL VIEWPORT (Section 22.7)
   ------------------------------------------------------------------------- */
main { display: block; }
body.theme-no-hero .theme-generic-main,
body.theme-no-hero .single-product-main,
body.theme-no-hero .shop-archive-main,
body.theme-no-hero .theme-404-main {
	padding-top: calc(var(--header-height) + var(--theme-admin-bar-height));
}

.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--color-well); }
.hero-section__media { position: absolute; inset: 0; will-change: transform; transform: scale(1.08); transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.hero-section__video { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.22) saturate(0.88); }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, color-mix(in srgb, var(--color-well) 55%, transparent) 0%, color-mix(in srgb, var(--color-well) 70%, transparent) 50%, color-mix(in srgb, var(--color-well) 92%, transparent) 100%); }
.hero-section__glow {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none;
	width: min(1100px, 90vw); height: 55vh;
	background: radial-gradient(ellipse at center, color-mix(in srgb, var(--color-amber-glow) 28%, transparent) 0%, transparent 65%);
	filter: blur(20px);
}
.hero-section__content { position: relative; z-index: 10; text-align: center; padding: 6rem 0 4rem; }
@media (min-width: 640px) { .hero-section__content { padding: 8rem 0 6rem; } }
@media (min-width: 1024px) { .hero-section__content { padding: 10rem 0 8rem; } }
.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-section__badge-row { margin-bottom: 2rem; } }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px;
	background: rgb(0 0 0 / 0.4); border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
	.hero-section__badge { gap: 0.75rem; padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.4em; }
}
.hero-section__heading { line-height: 0.98; letter-spacing: -0.02em; max-width: 64rem; margin: 0 auto; font-size: clamp(2.25rem, 8.2vw, 6.5rem); color: var(--color-foreground); }
.hero-section__subtext { margin: 1.5rem auto 0; max-width: 42rem; padding-left: 0.5rem; padding-right: 0.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; }
@media (min-width: 640px) { .hero-section__subtext { padding-left: 0; padding-right: 0; font-size: 17px; margin-top: 2rem; } }
.hero-section__actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; align-items: stretch; max-width: 24rem; margin-inline: auto; }
@media (min-width: 640px) { .hero-section__actions { margin-top: 2.5rem; flex-direction: row; align-items: center; max-width: none; gap: 1rem; } }
.hero-section__actions .btn-brass, .hero-section__actions .btn-chrome { width: 100%; }
@media (min-width: 640px) { .hero-section__actions .btn-brass, .hero-section__actions .btn-chrome { width: auto; } }
.hero-section__strip { margin-top: 3rem; display: flex; align-items: center; justify-content: center; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
@media (min-width: 640px) { .hero-section__strip { margin-top: 4rem; font-size: 11px; } }

/* -------------------------------------------------------------------------
   MARQUEE
   ------------------------------------------------------------------------- */
.mantra-marquee { position: relative; background: var(--color-well); border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); overflow: hidden; padding: 1rem 0; }
.mantra-marquee__fade { position: absolute; inset-block: 0; width: 4rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .mantra-marquee__fade { width: 6rem; } }
.mantra-marquee__fade--left { left: 0; background: linear-gradient(to right, var(--color-well), transparent); }
.mantra-marquee__fade--right { right: 0; background: linear-gradient(to left, var(--color-well), transparent); }
.mantra-marquee__track { gap: 2rem; align-items: center; white-space: nowrap; }
@media (min-width: 768px) { .mantra-marquee__track { gap: 3rem; } }
.mantra-marquee__item { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
@media (min-width: 768px) { .mantra-marquee__item { gap: 3rem; } }
.mantra-marquee__item span.mono { font-size: 12px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--color-primary); }
@media (min-width: 768px) { .mantra-marquee__item span.mono { font-size: 13px; } }

/* -------------------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------------------- */
.about-section { position: relative; background: var(--color-background); padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); }
@media (min-width: 640px) { .about-section { padding: 5rem 0; } }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 640px) { .about-section__top { gap: 3rem; } }
@media (min-width: 1024px) { .about-section__top { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__photo { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 1/1; }
.about-section__badge { position: absolute; top: 1rem; left: 1rem; }
@media (min-width: 640px) { .about-section__badge { top: 1.25rem; left: 1.25rem; } }
.about-section__badge span.mono { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 70%, transparent); backdrop-filter: blur(4px); padding: 0.375rem 0.75rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); }
.about-section__dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--color-amber-glow); box-shadow: 0 0 10px var(--color-amber-glow); }
.about-section__caption { position: absolute; inset-inline: 0; bottom: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 85%, transparent), transparent); padding: 4rem 1.25rem 1.25rem; }
@media (min-width: 640px) { .about-section__caption { padding: 4rem 1.5rem 1.5rem; } }
.about-section__caption p.mono { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 90%, transparent); }
@media (min-width: 640px) { .about-section__caption p.mono { font-size: 11px; } }
.about-section__caption-text { margin-top: 0.375rem; font-style: italic; color: var(--color-foreground); font-size: 1.125rem; }
@media (min-width: 640px) { .about-section__caption-text { font-size: 1.25rem; } }
.about-section__heading { font-size: 1.875rem; margin-top: 1rem; }
@media (min-width: 640px) { .about-section__heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.4rem; } }
.about-section__paragraphs { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.8; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 36rem; }
@media (min-width: 768px) { .about-section__paragraphs { font-size: 17px; } }
.about-section__pillars { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .about-section__pillars { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .about-section__pillars { margin-top: 5rem; } }
.about-pillar { position: relative; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); background: linear-gradient(to bottom right, var(--color-panel), var(--color-panel), var(--color-panel-alt)); padding: 1.5rem; overflow: hidden; box-shadow: 0 18px 45px -24px rgb(0 0 0 / 0.85); transition: all 500ms cubic-bezier(0.22,1,0.36,1); }
@media (min-width: 640px) { .about-pillar { padding: 2rem; } }
.about-pillar:hover { border-color: var(--color-primary); transform: translateY(-4px); box-shadow: 0 28px 60px -28px rgb(0 0 0 / 0.95), 0 0 38px -18px color-mix(in srgb, var(--color-amber-glow) 60%, transparent); }
.about-pillar__top-sheen { position: absolute; inset-inline: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--color-brass-sheen), transparent); opacity: 0.7; pointer-events: none; }
.about-pillar__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.about-pillar__icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: color-mix(in srgb, var(--color-primary) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent); display: inline-flex; align-items: center; justify-content: center; color: var(--color-primary); }
.about-pillar__index { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.about-pillar__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .about-pillar__title { font-size: 1.6rem; } }
.about-section__stat-strip { margin-top: 2rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: var(--color-panel-alt); padding: 1rem 1rem; overflow: hidden; }
@media (min-width: 640px) { .about-section__stat-strip { padding: 1rem 1.5rem; } }
.about-section__stat-strip-marquee { display: block; overflow: hidden; }
.about-section__stat-strip-track { gap: 2rem; align-items: center; animation-duration: 35s; }
.about-section__stat-strip-marquee-text {
	white-space: nowrap;
	flex-shrink: 0;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}
.about-section__stat-strip-desktop { display: none; }
@media (min-width: 640px) {
	.about-section__stat-strip-marquee { display: none; }
	.about-section__stat-strip-desktop {
		display: block;
		white-space: nowrap;
		font-size: 11px;
		letter-spacing: 0.22em;
		text-transform: uppercase;
		color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
		text-align: center;
	}
}
@media (min-width: 768px) {
	.about-section__stat-strip-desktop { font-size: 12px; letter-spacing: 0.28em; }
}

/* -------------------------------------------------------------------------
   SHOP SECTION
   ------------------------------------------------------------------------- */
.shop-section { position: relative; background: var(--color-background); padding: 4rem 0; }
@media (min-width: 640px) { .shop-section { padding: 5rem 0; } }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .shop-section__head { margin-bottom: 3rem; } }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__intro .eyebrow { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .shop-section__intro .eyebrow { margin-bottom: 1rem; } }
.shop-section__subtext { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 640px) { .shop-section__subtext { margin-top: 1.25rem; font-size: 15px; } }
.shop-heading { font-size: 1.875rem; }
@media (min-width: 640px) { .shop-heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.4rem; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 24rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-section__search-input { width: 100%; height: 48px; padding: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-panel); border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); color: var(--color-foreground); }
.shop-section__search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-amber-glow) 15%, transparent); }
.shop-section__filters-scroll {
	margin-left: -1.5rem;
	margin-right: -1.5rem;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.shop-section__filters-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .shop-section__filters-scroll { margin-bottom: 3rem; } }
@media (min-width: 1024px) {
	.shop-section__filters-scroll { margin-left: 0; margin-right: 0; overflow: visible; }
}
.shop-section__filters { display: flex; flex-wrap: nowrap; gap: 0.625rem; padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 0.25rem; }
@media (min-width: 1024px) { .shop-section__filters { flex-wrap: wrap; overflow: visible; padding-left: 0; padding-right: 0; padding-bottom: 0; } }
.theme-cat-filter { flex-shrink: 0; padding: 0 1rem; height: 44px; border-radius: 999px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: var(--color-panel); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: all 200ms; }
@media (min-width: 640px) { .theme-cat-filter { padding: 0 1.25rem; font-size: 12px; letter-spacing: 0.22em; } }
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.is-active { background: var(--brass-grad); color: var(--color-background); border-color: transparent; box-shadow: 0 0 24px color-mix(in srgb, var(--color-amber-glow) 45%, transparent); }
.shop-section__empty, .shop-section__empty-initial { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more { margin-top: 3.5rem; display: flex; justify-content: center; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3.5rem 2rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.theme-product-card { color: inherit; text-decoration: none; }
.theme-product-card__media-link,
.theme-product-card__info-link { display: block; min-width: 0; }
.theme-product-card__info-link { flex: 1; }
.theme-product-card__visual { position: relative; min-width: 0; }
.theme-product-card__frame { border-radius: 1.5rem; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background: var(--color-panel); border-radius: 1.5rem; overflow: hidden; }
.theme-product-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-well) 85%, transparent), transparent 60%); opacity: 0.7; pointer-events: none; transition: opacity 500ms; }
.theme-product-card-wrap:hover .theme-product-card__scrim { opacity: 0.9; }
.theme-product-card-wrap:hover .theme-product-card__image { transform: scale(1.05); }
.theme-product-card-wrap:hover .offset-frame::before { inset: 0; opacity: 0.9; filter: brightness(1.05); }
.theme-product-card-wrap:hover .offset-frame::after { opacity: 1; box-shadow: 0 0 24px color-mix(in srgb, var(--color-amber-glow) 35%, transparent); }
.theme-product-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.22,0.61,0.36,1); will-change: transform; }
.theme-product-card__badge { position: absolute; top: 0.75rem; z-index: 1; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 999px; }
.theme-product-card__badge--soldout { right: 0.75rem; background: color-mix(in srgb, var(--color-destructive) 90%, transparent); color: var(--color-foreground); }
.theme-product-card__actions {
	position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 2;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transform: translateY(4px); pointer-events: none;
	transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.theme-product-card-wrap:hover .theme-product-card__actions { opacity: 1; transform: translateY(0); pointer-events: auto; }
.theme-product-card__info { flex: 1; padding: 0 0.25rem; margin-top: 1.25rem; min-width: 0; }
.theme-product-card__meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; min-width: 0; }
.theme-product-card__brand { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.theme-product-card__dot { width: 4px; height: 4px; border-radius: 50%; background: color-mix(in srgb, var(--color-primary) 40%, transparent); flex-shrink: 0; }
.theme-product-card__tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__title { font-size: 1.25rem; line-height: 1.3; transition: color 300ms; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.35rem; } }
.theme-product-card-wrap:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 15px; font-weight: 700; color: var(--color-primary); overflow: hidden; }
.theme-product-card__currency { font-size: 11px; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-left: 0.5rem; letter-spacing: 0.2em; }
.theme-product-card__add {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 40px; min-width: 0; border: none; border-radius: 999px; background: var(--brass-grad); color: var(--color-background);
	font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
	cursor: pointer; transition: filter 200ms, transform 150ms;
}
.theme-product-card__add:hover { filter: brightness(1.1); }
.theme-product-card__add:active { transform: scale(0.97); }
.theme-product-card__quick {
	width: 40px; height: 40px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; background: color-mix(in srgb, var(--color-well) 80%, transparent);
	backdrop-filter: blur(4px); color: var(--color-foreground); text-decoration: none;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	transition: border-color 200ms;
}
.theme-product-card-wrap:hover .theme-product-card__quick { border-color: var(--color-primary); }

/* -------------------------------------------------------------------------
   SPOTLIGHT SECTION
   ------------------------------------------------------------------------- */
.spotlight-section { position: relative; background: var(--color-panel-alt); padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); overflow: hidden; }
@media (min-width: 640px) { .spotlight-section { padding: 5rem 0; } }
@media (min-width: 768px) { .spotlight-section { padding: 8rem 0; } }
.spotlight-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 640px) { .spotlight-section__grid { gap: 3rem; } }
@media (min-width: 1024px) { .spotlight-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.spotlight-section__heading { font-size: 1.875rem; }
@media (min-width: 640px) { .spotlight-section__heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .spotlight-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .spotlight-section__heading { font-size: 3.4rem; } }
.spotlight-section__paragraph { margin-top: 1.25rem; font-size: 14px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 28rem; }
@media (min-width: 640px) { .spotlight-section__paragraph { margin-top: 1.5rem; font-size: 15px; } }
@media (min-width: 768px) { .spotlight-section__paragraph { font-size: 16px; } }
.spotlight-section__meta { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .spotlight-section__meta { margin-top: 1.5rem; } }
.spotlight-section__brand { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); }
.spotlight-section__dot { width: 4px; height: 4px; border-radius: 50%; background: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.spotlight-section__sku { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.spotlight-section__price { margin-top: 0.75rem; font-size: 20px; color: var(--color-primary); font-weight: 700; }
@media (min-width: 640px) { .spotlight-section__price { margin-top: 1rem; font-size: 22px; } }
.spotlight-section__actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .spotlight-section__actions { margin-top: 2rem; flex-direction: row; } }
.spotlight-section__actions .btn-brass,
.spotlight-section__actions .btn-chrome { width: 100%; }
@media (min-width: 640px) {
	.spotlight-section__actions .btn-brass,
	.spotlight-section__actions .btn-chrome { width: auto; }
}
.spotlight-section__main { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4/5; background: var(--color-panel); }
.spotlight-section__main-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: var(--color-panel); transform: scale(1.06); transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.spotlight-section__main-gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-well) 40%, transparent), transparent); pointer-events: none; }
.spotlight-section__thumbs { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.75rem; }
.spotlight-section__thumb { aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; border: 2px solid color-mix(in srgb, var(--color-primary) 15%, transparent); transition: border-color 200ms; padding: 0; }
.spotlight-section__thumb.is-active { border-color: var(--color-primary); box-shadow: 0 0 20px color-mix(in srgb, var(--color-amber-glow) 40%, transparent); }
.spotlight-section__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------------------
   SERVICE SECTION
   ------------------------------------------------------------------------- */
.service-section { position: relative; background: var(--color-background); padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); }
@media (min-width: 640px) { .service-section { padding: 5rem 0; } }
@media (min-width: 768px) { .service-section { padding: 8rem 0; } }
.service-section__intro { max-width: 42rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .service-section__intro { margin-bottom: 3.5rem; } }
.service-section__paragraph { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.service-section__heading { font-size: 1.875rem; }
@media (min-width: 640px) { .service-section__heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .service-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .service-section__heading { font-size: 3.4rem; } }
.service-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .service-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; } }
@media (min-width: 1024px) { .service-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.service-card.offset-frame { border-radius: 1.5rem; height: 100%; }
.service-card.offset-frame:hover::before { inset: 0; opacity: 0.9; filter: brightness(1.05); }
.service-card.offset-frame:hover::after { opacity: 1; box-shadow: 0 0 24px color-mix(in srgb, var(--color-amber-glow) 35%, transparent); }
.service-card__inner { position: relative; height: 100%; border-radius: 1.5rem; background: var(--color-panel); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); overflow: hidden; display: flex; flex-direction: column; transition: border-color 500ms cubic-bezier(0.22,1,0.36,1), transform 500ms cubic-bezier(0.22,1,0.36,1), box-shadow 500ms cubic-bezier(0.22,1,0.36,1); }
.service-card.offset-frame:hover .service-card__inner,
.service-card__inner:hover { border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgb(0 0 0 / 0.9), 0 0 36px -18px color-mix(in srgb, var(--color-amber-glow) 55%, transparent); }
.service-card__photo { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--color-well); }
.service-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent), transparent); }
.service-card__tag { position: absolute; top: 0.875rem; left: 0.875rem; display: inline-flex; align-items: center; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 70%, transparent); backdrop-filter: blur(4px); border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent); padding: 0.25rem 0.625rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
@media (min-width: 640px) { .service-card__body { padding: 1.5rem; } }
.service-card__title { font-size: 1.2rem; line-height: 1.3; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .service-card__title { font-size: 1.3rem; } }
.service-card__tagline { font-size: 13.5px; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.25rem; flex: 1; }
.service-card__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.service-card__price-label { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 0.125rem; }
.service-card__price { color: var(--color-foreground); font-size: 15px; font-weight: 700; }
.service-card__book-btn { height: 40px; padding: 0 1rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; flex-shrink: 0; }
.service-card__book-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.service-section__footer { margin-top: 2.5rem; text-align: center; }
.service-section__footer p { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.service-section__footer-link { color: var(--color-primary); text-underline-offset: 4px; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }

/* -------------------------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------------------------- */
.faq-section { position: relative; background: var(--color-panel-alt); padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
@media (min-width: 640px) { .faq-section { padding: 5rem 0; } }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-section__intro { max-width: 42rem; margin-bottom: 2.5rem; }
.faq-section__heading { font-size: 1.875rem; }
@media (min-width: 640px) { .faq-section__heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section__heading { font-size: 3.4rem; } }
.faq-section__list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); background: color-mix(in srgb, var(--color-panel) 60%, transparent); transition: border-color 200ms, background 200ms; }
.faq-item.is-open { border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); background: var(--color-panel); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1rem 1.25rem; min-height: 56px; }
@media (min-width: 640px) { .faq-item__question { padding: 1.25rem 1.5rem; } }
.faq-item__question span.font-display { font-size: 1.05rem; line-height: 1.4; padding-right: 0.5rem; }
@media (min-width: 640px) { .faq-item__question span.font-display { font-size: 1.15rem; padding-right: 1rem; } }
@media (min-width: 768px) { .faq-item__question span.font-display { font-size: 1.25rem; } }
.faq-item__chevron { color: var(--color-primary); flex-shrink: 0; transition: transform 300ms; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer-wrap { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 500ms ease, opacity 500ms ease; }
.faq-item.is-open .faq-item__answer-wrap { max-height: 600px; opacity: 1; }
.faq-item__answer { padding: 0 1.25rem 1.25rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
@media (min-width: 640px) { .faq-item__answer { padding: 0 1.5rem 1.5rem; font-size: 15px; } }

/* -------------------------------------------------------------------------
   PRE-CONTACT CTA
   ------------------------------------------------------------------------- */
.precontact-section { position: relative; overflow: hidden; background: var(--color-well); border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); }
.precontact-section__video { position: absolute; inset: 0; transform: scale(1.08); transition: transform 600ms cubic-bezier(0.22,1,0.36,1); }
.precontact-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgb(12 10 8 / 0.92) 0%, rgb(12 10 8 / 0.86) 50%, rgb(12 10 8 / 0.96) 100%); }
.precontact-section__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none; width: min(900px,90vw); height: 90%; background: radial-gradient(ellipse at center, color-mix(in srgb, var(--color-amber-glow) 28%, transparent) 0%, transparent 65%); filter: blur(24px); }
.precontact-section__vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center, transparent 30%, rgb(12 10 8 / 0.6) 100%); }
.precontact-section__divider { position: absolute; inset-inline: 0; }
.precontact-section__divider--top { top: 0; }
.precontact-section__divider--bottom { bottom: 0; }
.precontact-section__content { position: relative; z-index: 10; padding-top: 3rem; padding-bottom: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: center; }
@media (min-width: 640px) { .precontact-section__content { gap: 2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; } }
@media (min-width: 768px) { .precontact-section__content { flex-direction: row; text-align: left; padding-top: 5rem; padding-bottom: 5rem; } }
.precontact-section__text { flex: 1; }
.precontact-section__heading { font-size: 1.5rem; line-height: 1.2; color: var(--color-foreground); max-width: 42rem; }
@media (min-width: 640px) { .precontact-section__heading { font-size: 1.875rem; } }
@media (min-width: 768px) { .precontact-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .precontact-section__heading { font-size: 2.6rem; } }
.precontact-section__btn { flex-shrink: 0; width: 100%; }
@media (min-width: 640px) { .precontact-section__btn { width: auto; } }

/* -------------------------------------------------------------------------
   CONTACT SECTION
   ------------------------------------------------------------------------- */
.contact-section { background: var(--color-background); padding: 4rem 0; }
@media (min-width: 640px) { .contact-section { padding: 5rem 0; } }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 5rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 640px) { .contact-section__grid { gap: 3rem; } }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-title { font-size: 1.875rem; }
@media (min-width: 640px) { .contact-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-section__paragraph { margin-top: 1.25rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; }
@media (min-width: 640px) { .contact-section__paragraph { margin-top: 1.5rem; font-size: 15px; } }
.contact-section__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; list-style: none; padding: 0; }
@media (min-width: 640px) { .contact-section__list { margin-top: 2.5rem; } }
.contact-section__list-link, .contact-section__list-item-static { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 200ms; }
.contact-section__list-link:hover { color: var(--color-primary); }
.contact-section__list-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-panel); border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-section__list-text { display: flex; flex-direction: column; text-align: left; }
.contact-section__list-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.contact-section__list-text span:last-child { font-size: 15px; font-weight: 500; }
.contact-section__shipping-note { margin-top: 2rem; padding-top: 2rem; display: flex; align-items: flex-start; gap: 1rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: var(--color-panel); padding: 1.5rem; }
.contact-section__shipping-icon { color: var(--color-primary); margin-top: 0.125rem; flex-shrink: 0; }
.contact-section__shipping-title { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.25rem; }
.contact-section__shipping-text { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; }

.contact-form { background: var(--color-panel); border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-elevated); height: 100%; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__field { position: relative; }
.contact-form__input {
	width: 100%; height: 48px; padding: 0 1rem; background: var(--color-panel-alt);
	border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-radius: 0.75rem; color: var(--color-foreground);
	transition: border-color 200ms, box-shadow 200ms;
}
.contact-form__input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-amber-glow) 15%, transparent); }
.contact-form__input::placeholder { color: transparent; }
.contact-form__textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.contact-form__label {
	position: absolute; left: 1rem; top: -0.6rem; padding: 0 0.375rem; background: var(--color-background);
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary);
	transition: all 200ms; pointer-events: none;
}
.contact-form__input:placeholder-shown + .contact-form__label { top: 0.875rem; font-size: 13px; letter-spacing: normal; text-transform: none; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); font-family: var(--font-body); background: transparent; }
.contact-form__input:focus + .contact-form__label { top: -0.6rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); font-family: var(--font-mono); background: var(--color-background); }
.contact-form__field--select { position: relative; }
.contact-form__select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-label { position: absolute; left: 1rem; top: -0.6rem; padding: 0 0.375rem; background: var(--color-background); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.contact-form__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.contact-form__submit-row { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__submit { width: 100%; height: 48px; }
.contact-form__note { text-align: center; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.site-footer { position: relative; background: var(--color-well); overflow: hidden; }
.site-footer .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .site-footer .container-wide { padding-left: 4rem; padding-right: 4rem; } }
.site-footer__ambient { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--color-amber-glow) 10%, transparent), transparent 60%); }
.site-footer__cta { position: relative; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.site-footer__cta-inner { padding-top: 2rem; padding-bottom: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .site-footer__cta-inner { gap: 1.5rem; padding-top: 2.5rem; padding-bottom: 2.5rem; } }
@media (min-width: 768px) { .site-footer__cta-inner { flex-direction: row; align-items: center; justify-content: space-between; padding-top: 3rem; padding-bottom: 3rem; } }
.site-footer__cta-heading { font-size: 22px; line-height: 1.1; letter-spacing: -0.01em; margin-top: 0.5rem; }
@media (min-width: 640px) { .site-footer__cta-heading { font-size: 26px; } }
@media (min-width: 768px) { .site-footer__cta-heading { font-size: 34px; } }
.site-footer__cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__cta-actions { flex-direction: row; flex-wrap: wrap; align-items: center; } }
.site-footer__cta-actions a { width: 100%; }
@media (min-width: 640px) { .site-footer__cta-actions a { width: auto; } }
.site-footer__columns { position: relative; padding-top: 3rem; padding-bottom: 2.5rem; }
@media (min-width: 640px) { .site-footer__columns { padding-top: 3.5rem; } }
@media (min-width: 1024px) { .site-footer__columns { padding-top: 5rem; } }
.site-footer__columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem; }
@media (min-width: 640px) { .site-footer__columns { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2.5rem; } }
@media (min-width: 1024px) { .site-footer__columns { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 3rem; } }
.site-footer__brand-col { grid-column: span 2; }
@media (min-width: 640px) { .site-footer__brand-col { grid-column: span 4; } }
@media (min-width: 1024px) { .site-footer__brand-col { grid-column: span 4; } }
.site-footer__brand { display: inline-flex; }
.site-footer__tagline { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 24rem; }
.site-footer__owner-card { margin-top: 1.75rem; display: inline-flex; align-items: center; gap: 0.75rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); background: color-mix(in srgb, var(--color-panel) 60%, transparent); padding: 0.75rem 1rem; backdrop-filter: blur(4px); }
.site-footer__owner-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brass-grad); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--color-background); box-shadow: 0 0 16px color-mix(in srgb, var(--color-amber-glow) 35%, transparent); }
.site-footer__owner-label { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 80%, transparent); }
.site-footer__owner-name { font-size: 14px; color: var(--color-foreground); }
.site-footer__badge { margin-top: 1.5rem; font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.site-footer__nav-col { grid-column: span 1; min-width: 0; }
@media (min-width: 1024px) { .site-footer__nav-col { grid-column: span 2; } }
.site-footer__contact-col { grid-column: span 2; min-width: 0; }
@media (min-width: 640px) { .site-footer__contact-col { grid-column: span 4; } }
@media (min-width: 1024px) { .site-footer__contact-col { grid-column: span 2; } }
.site-footer__col-title { font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.site-footer__col-title::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brass-grad); box-shadow: 0 0 8px color-mix(in srgb, var(--color-amber-glow) 70%, transparent); }
.site-footer__nav-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); min-width: 0; }
.site-footer__nav-col ul li { min-width: 0; max-width: 100%; }
.site-footer__nav-col a { display: inline-flex; align-items: flex-start; gap: 0.375rem; max-width: 100%; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; transition: color 200ms; }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; max-width: 100%; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; transition: color 200ms; }
.site-footer__contact-link--email { align-items: flex-start; }
.site-footer__contact-link--email .site-footer__contact-icon { margin-top: 0.125rem; }
.site-footer__contact-icon { width: 14px; height: 14px; flex-shrink: 0; color: color-mix(in srgb, var(--color-primary) 80%, transparent); }
.site-footer__contact-text { min-width: 0; }
.site-footer__contact-link--email .site-footer__contact-text { font-size: 13px; word-break: break-all; }
.site-footer__contact-col a[href^="tel:"] .site-footer__contact-text { font-size: 13px; }
.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__area { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.45; max-width: 100%; }
.site-footer__area .site-footer__contact-icon { margin-top: 0.125rem; }
.site-footer__nav-col a:hover { color: var(--color-primary); }
.site-footer__ticker { position: relative; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); background: rgb(0 0 0 / 0.25); padding: 0.75rem 0; overflow: hidden; }
.site-footer__ticker-track { gap: 2rem; align-items: center; white-space: nowrap; }
.site-footer__ticker-item { display: flex; align-items: center; gap: 2rem; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 80%, transparent); }
.site-footer__bottom { position: relative; padding-top: 1.5rem; padding-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__copy { font-size: 11px; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.site-footer__bottom-right { display: flex; align-items: center; gap: 1rem; }
.site-footer__location { font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 60%, transparent); }
.site-footer__top-btn { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); padding: 0.375rem 0.875rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 200ms, border-color 200ms; }
.site-footer__top-btn:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* =========================================================================
   WOOCOMMERCE
   ========================================================================= */

/* -------------------------------------------------------------------------
   SIDE CART DRAWER
   ------------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: rgb(0 0 0 / 0.5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 300ms ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 420px; z-index: 91;
	background: var(--color-panel); box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 400ms cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 50%; color: var(--color-foreground); transition: background 200ms; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 0.5rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__thumb { width: 80px; height: 96px; background: var(--color-panel-alt); border-radius: 0.5rem; overflow: hidden; flex-shrink: 0; }
.theme-cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 15px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 200ms; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background 150ms; }
.theme-cart-item__qty-btn:hover { background: var(--color-panel-alt); }
.theme-cart-item__qty { font-size: 15px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 200ms; }
.theme-cart-item__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); background: color-mix(in srgb, var(--color-panel-alt) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 15px; }
.theme-cart-drawer__checkout { width: 100%; height: 48px; }
.theme-cart-drawer__empty-btn { width: 100%; text-align: center; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); padding: 0.5rem 0; transition: color 200ms; }
.theme-cart-drawer__empty-btn:hover { color: var(--color-destructive); }

/* -------------------------------------------------------------------------
   ADD TO CART BUTTON OVERRIDE (Section 11.4.1)
   ------------------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	background-image: var(--brass-grad) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global rules for the product card variant */
.theme-product-card__add.add_to_cart_button.ajax_add_to_cart,
button.theme-product-card__add.add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: 40px;
	padding: 0 1rem !important;
	border-radius: 999px !important;
}

.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* -------------------------------------------------------------------------
   WC NOTICES (scoped — Section 14.1)
   ------------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: 0.75rem; padding: 1rem 1.25rem; margin: 0 0 1.5rem; list-style: none;
	background: var(--color-panel); color: var(--color-foreground); border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); font-size: 14px;
}
.woocommerce-error { border-color: color-mix(in srgb, var(--color-destructive) 50%, transparent); }
.woocommerce-breadcrumb { display: none; }

/* -------------------------------------------------------------------------
   SINGLE PRODUCT PAGE
   ------------------------------------------------------------------------- */
.single-product-main { padding: 6rem 0 5rem; }
.single-product__back { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: color 200ms; }
.single-product__back:hover { color: var(--color-primary); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; aspect-ratio: 1/1; width: 100%; background: var(--color-panel); border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1/1; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; transition: border-color 200ms; padding: 0; background: var(--color-panel); }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-info__cats { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; }
.theme-product-info__cats a { color: inherit; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.15; margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 600; color: var(--color-primary); margin-bottom: 1.25rem; }
.theme-product-info__price .woocommerce-Price-amount { color: var(--color-primary); }
.theme-product-info__stock { margin-bottom: 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.375rem 0.75rem; border-radius: 999px; display: inline-block; }
.theme-product-info__stock--out { background: color-mix(in srgb, var(--color-destructive) 20%, transparent); color: var(--color-destructive); }
.theme-product-info__description { margin-bottom: 1.5rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 1rem; }
.theme-add-to-cart-area { display: flex; align-items: stretch; flex-direction: column; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .theme-add-to-cart-area { flex-direction: row; } }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { width: 44px; height: 48px; display: inline-flex; align-items: center; justify-content: center; transition: color 200ms; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 3rem; height: 48px; text-align: center; background: transparent; border: none; border-left: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-right: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 0; width: 100%; }
@media (min-width: 640px) { .single-product .single_add_to_cart_button { min-width: 160px; width: auto; } }
.theme-product-info__details-title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin: 2rem 0 1rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__details-body { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-product-info__details-body ul, .theme-product-info__details-body ol { margin: 0; padding-left: 1.25rem; }
.theme-product-info__badges { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.theme-product-info__badge { text-align: center; }
.theme-product-info__badge svg { color: var(--color-primary); margin: 0 auto 0.5rem; }
.theme-product-info__badge p { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; font-family: var(--font-body); font-style: normal; color: var(--color-foreground); }
.single-product .variations tbody td.value { padding-top: 0; }

/* Variable product swatches */
.theme-variation-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.theme-variation-swatch {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
	background: var(--color-panel-alt);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 150ms ease;
}
.theme-variation-swatch:hover {
	border-color: var(--color-primary);
	color: var(--color-foreground);
	box-shadow: 0 0 14px color-mix(in srgb, var(--color-amber-glow) 18%, transparent);
}
.theme-variation-swatch.is-active {
	background: var(--brass-grad);
	border-color: transparent;
	color: var(--color-background);
	box-shadow: 0 0 18px color-mix(in srgb, var(--color-amber-glow) 30%, transparent);
}
.theme-variation-swatch:active { transform: scale(0.97); }
.theme-variation-swatch.is-unavailable {
	opacity: 0.35;
	cursor: not-allowed;
}
.theme-variation-swatch--color {
	padding: 0.45rem 0.85rem 0.45rem 0.55rem;
}
.theme-variation-swatch__dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--swatch-color, var(--color-primary));
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-background) 40%, transparent);
	flex-shrink: 0;
}
.theme-variation-swatch.is-active .theme-variation-swatch__dot {
	border-color: color-mix(in srgb, var(--color-background) 50%, transparent);
}
.theme-variable-product-form select.theme-variation-select,
.theme-variable-product-form select[name^="attribute_"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.theme-variable-product-form .single_add_to_cart_button:not(:disabled) {
	cursor: pointer;
}
.related-products-section { padding: 3rem 0 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.related-products-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__viewall { display: none; align-items: center; gap: 0.375rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 200ms; white-space: nowrap; }
@media (min-width: 640px) { .related-products-section__viewall { display: inline-flex; } }
.related-products-section__viewall:hover { color: var(--color-primary); }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* -------------------------------------------------------------------------
   SHOP ARCHIVE
   ------------------------------------------------------------------------- */
.shop-archive-main { padding: 6rem 0 5rem; }
.shop-archive__header { margin-bottom: 2.5rem; }
.shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   GENERIC / 404 PAGES
   ------------------------------------------------------------------------- */
.theme-generic-main { padding: 6rem 0 5rem; min-height: 50vh; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
.theme-404-main { min-height: 70vh; display: flex; align-items: center; }
.theme-404-content { text-align: center; padding: 5rem 0; }
.theme-404-code { font-size: 14px; letter-spacing: 0.3em; color: var(--color-primary); margin-bottom: 1rem; }
.theme-404-heading { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 2rem; }

/* -------------------------------------------------------------------------
   CHECKOUT BLOCK (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .theme-generic-main { padding-top: calc(var(--header-height) + 1rem); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding-inline: 4rem; } }

/* Parents must not compress the checkout block (container queries depend on inline width). */
body.woocommerce-checkout .container-wide.theme-generic-content,
body.woocommerce-checkout .theme-generic-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout article {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

/* Checkout block wrapper — centered 1280px column. */
body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout,
body.woocommerce-checkout .entry-content .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout {
	display: block;
	max-width: 80rem;
	width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
	container-type: inline-size;
}

/* Notices aligned with checkout content width. */
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
	max-width: 80rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Two-column layout on the real sidebar layout container. */
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	.entry-content .wc-block-components-sidebar-layout.wc-block-checkout,
	.entry-content .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: 1.5rem;
		align-items: start;
		flex-wrap: unset;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notice-banner,
	.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notices,
	.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
	.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notice-banner {
		grid-column: 1 / -1;
		order: 1;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
}

/* Form + sidebar columns — override WC flex widths. */
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-components-main,
.entry-content .wc-block-checkout__main,
.entry-content .wc-block-components-main {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0 !important;
	order: 2;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar {
	min-width: 360px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: var(--section-padding) !important;
	order: 3;
	background-color: var(--color-panel);
	border-radius: var(--card-radius);
}
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block { width: 100%; box-sizing: border-box; }

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea { width: 100% !important; max-width: none !important; padding: revert; border-radius: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); background: var(--color-panel-alt); color: var(--color-foreground); font-family: var(--font-body); }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-amber-glow) 15%, transparent); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button { background: var(--brass-grad); color: var(--color-background); border-radius: var(--btn-radius); border: none; font-weight: 600; }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout h2, body.woocommerce-checkout .wc-block-components-title { font-family: var(--font-display); color: var(--color-foreground); }
body.woocommerce-checkout .wc-block-checkout__form label { color: #000; }

/* -------------------------------------------------------------------------
   CART / ACCOUNT PAGES WIDTH PARITY (Section 13.7)
   ------------------------------------------------------------------------- */
body.woocommerce-cart .theme-generic-content,
body.woocommerce-account .theme-generic-content { max-width: 80rem; }

/* -------------------------------------------------------------------------
   THANK YOU PAGE
   ------------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .theme-generic-main { padding-top: calc(var(--header-height) + 1rem); }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0; color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; margin: 0 0 2rem; background: var(--color-panel); border-radius: var(--card-radius); }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; } }
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; background: var(--color-panel); border-radius: var(--card-radius); padding: 1.25rem; font-style: normal; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; margin-top: 1.5rem; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details table th, body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* -------------------------------------------------------------------------
   RESPONSIVE — MOBILE FLEX/TEXT SAFETY
   ------------------------------------------------------------------------- */
.min-w-0 { min-width: 0; }
