/*
 * United Warriors theme stylesheet.
 * Color tokens are emitted as raw "H S% L%" channel triples by PHP
 * (wp_add_inline_style in functions.php) so every rule below can keep
 * wrapping them as hsl(var(--token)) — matching the original design.s
 * Tailwind v4 HSL-channel token system (Section 6.1).
 */

[hidden] { display: none !important; }

/* ------------------------------------------------------------------ */
/* Design tokens (fallback values — overridden by inline Customizer CSS) */
/* ------------------------------------------------------------------ */
:root {
	--background: 40 44% 97%;
	--foreground: 282 40% 12%;
	--primary: 275 58% 40%;
	--primary-foreground: 40 44% 98%;
	--secondary: 40 34% 92%;
	--muted: 40 26% 90%;
	--muted-foreground: 282 16% 34%;
	--accent: 22 94% 38%;
	--highlight: 38 88% 34%;
	--border: 282 16% 82%;
	--on-media: 40 44% 98%;
	--on-media-muted: 40 24% 88%;
	--on-media-accent: 42 92% 70%;

	--card: 0 0% 100%;
	--destructive: 0 72% 42%;

	--surface-oat: 40 40% 95%;
	--surface-blush: 24 60% 93%;
	--surface-sage: 275 40% 94%;
	--surface-sky: 262 44% 95%;
	--surface-butter: 38 70% 93%;

	--radius: 0.125rem;
	--logo-height: 72px;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;
	--font-script: 'Great Vibes', cursive;

	--shadow-soft: 0 6px 24px -8px hsl(282 40% 20% / 0.18);
	--shadow-elevated: 0 14px 40px -12px hsl(282 40% 20% / 0.24);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
	--gradient-gold: linear-gradient(90deg, hsl(38 88% 34% / 0), hsl(38 88% 44% / 0.85), hsl(42 92% 58%), hsl(38 88% 44% / 0.85), hsl(38 88% 34% / 0));

	--header-height: 88px;

	--btn-radius: 9999px;
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0;
	--color-primary: hsl(var(--primary));
	--color-button-text: hsl(var(--primary-foreground));
	--card-radius: 0.375rem;
}

html.dark, body.dark, .dark {
	--card: 282 30% 12%;
	--surface-oat: 282 34% 11%;
	--surface-blush: 24 40% 15%;
	--surface-sage: 275 40% 16%;
	--surface-sky: 262 34% 18%;
	--surface-butter: 30 44% 18%;
	--shadow-soft: 0 6px 24px -8px hsl(282 60% 5% / 0.55);
	--shadow-elevated: 0 14px 40px -12px hsl(282 60% 4% / 0.7);
	--gradient-gold: linear-gradient(90deg, hsl(42 88% 62% / 0), hsl(42 88% 62% / 0.7), hsl(46 96% 74%), hsl(42 88% 62% / 0.7), hsl(42 88% 62% / 0));
}

/* ------------------------------------------------------------------ */
/* Reset / base                                                        */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	transition: background-color 0.35s var(--transition-smooth), color 0.35s var(--transition-smooth);
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-slide-img):not(.product-card-img):not(.category-tile-img):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-slide-img, .product-card-img, .category-tile-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Heading reset — Tailwind preflight parity (Section 2.2.4) */
h1, h2, h3, h4, h5, h6, .font-display {
	font-weight: 400;
	font-size: inherit;
	font-family: var(--font-display);
	letter-spacing: -0.015em;
	text-transform: none;
	margin: 0;
}

.font-condensed,
.eyebrow,
.label-eyebrow,
.neon-chip,
.btn-uw-gradient,
.btn-uw-solid,
.btn-uw-primary,
.btn-uw-outline,
.theme-nav-list .menu-item a,
.theme-anchor-link,
.theme-nav-trigger,
.trust-item-title,
.category-tile-name,
.category-tile-cta,
.hero-contact-link,
.hero-carousel-counter,
.shop-price-filter-value,
.theme-mega-menu__col-title,
.theme-mega-menu__shop-all,
.theme-mega-menu__feature-eyebrow,
.theme-mega-menu__feature-cta,
.theme-product-cats a,
.theme-product-badge,
.footer-copyright,
.footer-credit,
.theme-modal-step-label,
.theme-search-categories button,
.theme-search-hit__name {
	font-family: var(--font-body);
}

:focus-visible { outline: 2px solid hsl(var(--primary)); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.eyebrow, .label-eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
}
.eyebrow { color: hsl(var(--foreground) / 0.65); }
.label-eyebrow { color: hsl(var(--muted-foreground)); }

.drop-cap::first-letter {
	font-family: var(--font-display);
	float: left;
	margin-right: 0.75rem;
	margin-top: 0.25rem;
	font-size: 4.5rem;
	line-height: 0.85;
	color: hsl(var(--foreground));
}

.heading-accent-rule {
	display: inline-block;
	width: 48px;
	height: 3px;
	border-radius: 9999px;
	background-color: hsl(var(--primary));
	margin-top: 1.25rem;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding-inline: 1.5rem; }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) {
	.container-wide, .container-editorial { padding-inline: 2.5rem; }
}
.scroll-mt { scroll-margin-top: 96px; }

.surface-oat, .surface-oat-solid { background-color: hsl(var(--surface-oat)); }
.surface-blush, .surface-blush-solid { background-color: hsl(var(--surface-blush)); }
.surface-sage, .surface-sage-solid { background-color: hsl(var(--surface-sage)); }
.surface-sky, .surface-sky-solid { background-color: hsl(var(--surface-sky)); }
.surface-butter, .surface-butter-solid { background-color: hsl(var(--surface-butter)); }
.bg-aurora { background-color: hsl(var(--surface-oat)); }

.hairline-gold { position: relative; }
.hairline-gold::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
	background-image: var(--gradient-gold); pointer-events: none;
}
.hairline-gold-top { position: relative; }
.hairline-gold-top::before {
	content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
	background-image: var(--gradient-gold); pointer-events: none;
}

.theme-link-underline { position: relative; display: inline-flex; align-items: center; gap: 0.4rem; }
.theme-link-underline::after {
	content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.theme-link-underline:hover::after { transform: scaleX(1); }

/* Buttons ------------------------------------------------------------ */
.btn-uw-gradient, .btn-uw-solid, .btn-uw-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	border-radius: 9999px;
	font-family: var(--font-body);
	color: hsl(var(--primary-foreground)); background-color: hsl(var(--primary));
	border: 1px solid hsl(var(--primary)); transition: background-color 0.3s var(--transition-smooth);
}
.btn-uw-solid, .btn-uw-primary {
	height: 48px; padding: 0 2rem; font-size: 12px; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.28em;
}
.btn-uw-gradient {
	height: auto; min-height: 48px; padding: 0.875rem 2rem; font-size: 13px; font-weight: 400;
	text-transform: none; letter-spacing: 0.04em;
}
.hero-slide-actions .btn-uw-gradient { letter-spacing: 0.04em; }
.btn-uw-gradient:hover, .btn-uw-solid:hover, .btn-uw-primary:hover { background-color: hsl(var(--primary) / 0.88); }
.btn-uw-outline {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 48px; padding: 0 2rem; border-radius: 9999px; background: transparent;
	border: 1px solid hsl(var(--border)); color: hsl(var(--foreground));
	font-family: var(--font-body); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
	transition: color 0.25s var(--transition-smooth), border-color 0.25s var(--transition-smooth);
}
.btn-uw-outline:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.btn-uw-outline-media {
	display: inline-flex; align-items: center; justify-content: center;
	height: 48px; padding: 0 2rem; border-radius: 9999px; background: transparent;
	border: 1px solid hsl(var(--border)); color: hsl(var(--on-media));
	font-family: var(--font-body); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
}
.theme-icon-circle-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 9999px;
	background-color: hsl(var(--background) / 0.9); border: 1px solid hsl(var(--border));
	color: hsl(var(--foreground)); transition: border-color 0.3s ease, color 0.3s ease;
}
.theme-icon-circle-btn:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.neon-chip {
	display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 1rem; border-radius: 9999px;
	border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); background: transparent;
	font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
	transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.neon-chip:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.neon-chip.is-active { color: hsl(var(--primary-foreground)); border-color: hsl(var(--primary)); background-color: hsl(var(--primary)); }
.neon-stepper-btn {
	width: 32px; height: 32px; border-radius: 9999px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); background: transparent;
	transition: border-color 0.3s, color 0.3s;
}
.neon-stepper-btn:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }

/* ------------------------------------------------------------------ */
/* Header                                                              */
/* ------------------------------------------------------------------ */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	background-color: hsl(var(--background) / 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid hsl(var(--border));
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 88px; }
@media (min-width: 1024px) { .site-nav { height: 104px; } }

.nav-mobile-toggle { display: flex; align-items: center; flex: 1; }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }
.hamburger-btn { padding: 0.5rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
.hamburger-bar { display: block; height: 2.5px; width: 20px; background: hsl(var(--foreground)); border-radius: 1px; transition: width 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out; }
.hamburger-bar--3 { width: 14px; }
.hamburger-btn:hover .hamburger-bar--3 { width: 20px; }
.hamburger-btn.is-open .hamburger-bar--1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.is-open .hamburger-bar--2 { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open .hamburger-bar--3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }

.site-header .site-logo-link { display: inline-flex; align-items: center; gap: 0.6rem; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 1024px) { .site-header .site-logo-link { position: static; flex: 1; justify-content: flex-start; transform: none; left: auto; } }
.footer-col--brand .site-logo-link,
.mobile-menu-header .site-logo-link { position: static; transform: none; left: auto; }
.site-logo-img {
	height: var(--logo-height) !important;
	max-height: var(--logo-height) !important;
	width: auto !important;
	display: block;
}
.site-logo-img--dark { display: none; }
html.dark .site-logo-img--light { display: none; }
html.dark .site-logo-img--dark { display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; }

.nav-desktop-center { display: none; align-items: center; gap: 2.25rem; justify-content: center; }
@media (min-width: 1024px) { .nav-desktop-center { display: flex; flex: 2; } }
.theme-nav-list { display: flex; align-items: center; gap: 2.25rem; }
.theme-nav-list .menu-item a, .theme-anchor-link {
	font-family: var(--font-body); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	color: hsl(var(--foreground)); transition: color 0.3s;
}
.theme-nav-list .menu-item a:hover, .theme-anchor-link:hover { color: hsl(var(--primary)); }

.nav-actions { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
.nav-icon-btn { position: relative; padding: 0.5rem; color: hsl(var(--foreground)); transition: opacity 0.3s; display: inline-flex; }
.nav-icon-btn:hover { opacity: 0.7; }
.theme-theme-toggle .theme-icon-moon { display: none; }
html.dark .theme-theme-toggle .theme-icon-sun { display: none; }
html.dark .theme-theme-toggle .theme-icon-moon { display: inline-flex; }
.theme-cart-toggle .theme-cart-count {
	position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; border-radius: 9999px;
	background: hsl(var(--accent)); color: #fff; font-size: 10px; font-weight: 600;
	display: flex; align-items: center; justify-content: center; font-family: var(--font-body);
}
.theme-cart-count:empty { display: none; }

/* Desktop mega menu */
.theme-nav-trigger {
	display: inline-flex; align-items: center; gap: 0.25rem;
	font-family: var(--font-body); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	color: hsl(var(--foreground)); background: none; border: none; cursor: pointer; transition: color 0.3s;
}
.theme-nav-trigger:hover, .theme-nav-trigger.is-active { color: hsl(var(--primary)); }
.theme-nav-chevron { width: 12px; height: 12px; }
.theme-mega-menu {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	width: 100vw; z-index: 40; background: hsl(var(--background));
	border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border));
	box-shadow: var(--shadow-elevated);
}
.theme-mega-menu__inner { padding: 3rem 0; }
.theme-mega-menu__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
	.theme-mega-menu__grid.has-feature { grid-template-columns: 2fr 1fr; }
}
.theme-mega-menu__columns {
	display: grid; gap: 2.5rem;
	grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr));
}
.theme-mega-menu__col-title {
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	color: hsl(var(--foreground) / 0.6); margin: 0 0 1.5rem; padding-bottom: 0.75rem;
	border-bottom: 1px solid hsl(var(--border));
}
.theme-mega-menu__col-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-menu__link {
	font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
	color: hsl(var(--foreground)); background: none; border: none; padding: 0; cursor: pointer; text-align: left;
	transition: color 0.3s;
}
.theme-mega-menu__link:hover { color: hsl(var(--primary)); }
.theme-mega-menu__shop-all {
	display: inline-block; margin-top: 2rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
	font-weight: 600; color: hsl(var(--foreground)); border-bottom: 1px solid hsl(var(--foreground)); padding-bottom: 0.25rem;
	background: none; cursor: pointer; transition: color 0.3s, border-color 0.3s;
}
.theme-mega-menu__shop-all:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary)); }
.theme-mega-menu__feature { display: block; text-align: left; background: none; border: none; padding: 0; cursor: pointer; }
.theme-mega-menu__feature-media { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; }
.theme-mega-menu__feature-media img { transition: transform 1.2s ease; }
.theme-mega-menu__feature:hover .theme-mega-menu__feature-media img { transform: scale(1.05); }
.theme-mega-menu__feature-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.theme-mega-menu__feature-eyebrow {
	position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: hsl(var(--background) / 0.95);
}
.theme-mega-menu__feature-copy { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: hsl(var(--background)); }
.theme-mega-menu__feature-title { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.75rem; text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
.theme-mega-menu__feature-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid hsl(var(--background) / 0.8); padding-bottom: 0.25rem; }
.theme-mega-menu__footer { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid hsl(var(--border)); display: flex; justify-content: center; }
@media (min-width: 1024px) { .theme-mega-menu__footer { justify-content: flex-start; } }
.theme-mega-menu__quote-btn {
	display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 2rem;
	background: hsl(var(--foreground)); color: hsl(var(--background)); border: none; cursor: pointer;
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
	transition: background-color 0.3s;
}
.theme-mega-menu__quote-btn:hover { background: hsl(var(--primary)); }

/* Mobile accordion nav */
.mobile-nav-trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 0.75rem; background: none; border: none; text-align: left; cursor: pointer;
}
.mobile-nav-trigger span { font-family: var(--font-display); font-size: 1.125rem; }
.mobile-nav-chevron { width: 16px; height: 16px; transition: transform 0.3s; }
.mobile-nav-trigger.is-open .mobile-nav-chevron { transform: rotate(180deg); }
.mobile-nav-panel { padding: 0 0.75rem 0.75rem; }
.mobile-nav-group { margin-bottom: 1rem; }
.mobile-nav-group-title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: hsl(var(--foreground) / 0.5); margin: 0 0 0.5rem; }
.mobile-nav-group ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav-link, .mobile-nav-shop-all {
	display: block; width: 100%; text-align: left; padding: 0.625rem 0; font-size: 14px;
	color: hsl(var(--foreground) / 0.8); background: none; border: none; cursor: pointer;
	transition: color 0.3s;
}
.mobile-nav-link:hover, .mobile-nav-shop-all:hover { color: hsl(var(--primary)); }
.mobile-nav-shop-all { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: hsl(var(--primary)); text-decoration: underline; text-underline-offset: 4px; }
.mobile-menu-quote { padding: 1rem 0.75rem; }
.btn-uw-solid--dark { width: 100%; background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.btn-uw-solid--dark:hover { background: hsl(var(--primary)); border-color: hsl(var(--primary)); }

.mobile-menu-overlay, .mobile-menu-panel {
	position: fixed; inset: 0; opacity: 0; visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay { z-index: 59; background: hsl(var(--foreground) / 0.3); }
.mobile-menu-panel {
	z-index: 61; right: auto; width: 88vw; max-width: 380px; background: hsl(var(--background));
	border-right: 1px solid hsl(var(--border)); display: flex; flex-direction: column;
	transform: translateX(-100%); transition: transform 0.35s var(--transition-smooth), visibility 0.35s;
}
body.mobile-menu-open { overflow: hidden; }
body.mobile-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
body.mobile-menu-open .mobile-menu-panel { transform: translateX(0); opacity: 1; visibility: visible; }
.mobile-menu-header .site-logo-img {
	height: var(--logo-height) !important;
	max-height: var(--logo-height) !important;
}
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 88px; border-bottom: 1px solid hsl(var(--border) / 0.6); flex-shrink: 0; }
.mobile-menu-nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.mobile-menu-nav .theme-nav-list--mobile { flex-direction: column; align-items: stretch; gap: 0; }
.mobile-menu-nav .theme-nav-list--mobile .menu-item { border-bottom: 1px solid hsl(var(--border) / 0.4); }
.mobile-menu-nav .theme-nav-list--mobile .menu-item a { display: block; padding: 1rem 0.75rem; font-family: var(--font-display); font-size: 1.125rem; text-transform: none; letter-spacing: normal; font-weight: 400; }
.mobile-menu-footer { border-top: 1px solid hsl(var(--border) / 0.6); padding: 1rem 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; flex-shrink: 0; }
.mobile-menu-footer .btn-uw-outline { height: 44px; font-size: 12px; }

/* ------------------------------------------------------------------ */
/* Reveal / scroll animations                                          */
/* ------------------------------------------------------------------ */
.reveal-item {
	opacity: 0; transform: translateY(40px);
	transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item { opacity: 1 !important; transform: none !important; }

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: theme-fade-in 0.8s var(--transition-smooth) forwards; }
.animate-slide-up { animation: theme-slide-up 0.8s var(--transition-smooth) forwards; }

/* ------------------------------------------------------------------ */
/* Hero carousel                                                       */
/* ------------------------------------------------------------------ */
.site-main--home { padding-top: 0; }
.site-main:not(.site-main--home) { padding-top: 96px; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-main:not(.site-main--home) { padding-top: 112px; } }

.hero-carousel { position: relative; width: 100%; height: 100svh; min-height: 640px; overflow: hidden; background: hsl(var(--foreground)); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--transition-smooth); pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide-img { transform: scale(1.08); transition: transform 9s linear; will-change: transform; object-position: left center; }
@media (min-width: 1024px) { .hero-slide-img { object-position: center center; } }
.hero-slide.is-active .hero-slide-img { transform: scale(1); }
.hero-slide-scrim { position: absolute; inset: 0; background: hsla(300, 30%, 5%, 0.6); }
.hero-slide-inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
	padding-top: 7rem;
	padding-bottom: 6rem;
}
@media (min-width: 1024px) {
	.hero-slide-inner {
		align-items: center;
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}
.hero-slide-copy {
	max-width: 42rem;
	width: 100%;
	color: hsl(var(--on-media));
	text-align: left;
}
.hero-slide-intro {
	display: block;
	font-family: var(--font-script);
	font-size: 1.875rem;
	color: hsl(var(--on-media-accent));
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
@media (min-width: 768px) { .hero-slide-intro { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-slide-intro { font-size: 3rem; } }
.hero-slide-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 3rem;
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: hsl(var(--on-media));
}
@media (min-width: 640px) { .hero-slide-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-slide-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-slide-title { font-size: 6rem; } }
.hero-contact-link.theme-link-underline::after { background: currentColor; }
.hero-slide-sub {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	color: hsl(var(--on-media-muted));
	line-height: 1.625;
	text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .hero-slide-sub { font-size: 1.125rem; margin-top: 1.5rem; } }
.hero-slide-actions {
	margin-top: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}
@media (min-width: 768px) { .hero-slide-actions { margin-top: 2.25rem; } }
@media (min-width: 1024px) { .hero-slide-actions { justify-content: flex-start; } }
.hero-slide-cta-shop {
	height: auto !important;
	min-height: 48px;
	padding-block: 0.875rem !important;
	letter-spacing: 0.04em !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	text-transform: none !important;
}
.hero-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	color: hsl(var(--on-media));
}
.hero-carousel-controls { position: absolute; z-index: 20; bottom: 1.5rem; right: 1.5rem; display: flex; align-items: center; gap: 0.75rem; background: hsl(var(--background) / 0.85); backdrop-filter: blur(6px); padding: 0.625rem 1rem; border-radius: 9999px; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .hero-carousel-controls { bottom: 2.5rem; right: 2.5rem; } }
.hero-carousel-counter { font-size: 11px; letter-spacing: 0.22em; color: hsl(var(--foreground) / 0.8); font-family: var(--font-body); }

/* ------------------------------------------------------------------ */
/* Trust strip                                                         */
/* ------------------------------------------------------------------ */
.trust-strip { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); background: hsl(var(--background)); }
.trust-strip-wrap { padding-block: 1.5rem; }
@media (min-width: 1024px) { .trust-strip-wrap { padding-block: 1.75rem; } }
.trust-strip-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding-block: 0; }
@media (min-width: 1024px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
@media (min-width: 1024px) { .trust-item { justify-content: flex-start; } }
.trust-item-icon { color: hsl(var(--primary)); flex-shrink: 0; transition: transform 0.3s ease; width: 28px; height: 28px; }
.trust-item:hover .trust-item-icon { transform: scale(1.06); }
.trust-item-title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin: 0; transition: color 0.3s ease; }
.trust-item:hover .trust-item-title { color: hsl(var(--primary)); }
.trust-item-sub { font-family: var(--font-body); font-size: 12px; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.25; }

/* ------------------------------------------------------------------ */
/* Welcome                                                             */
/* ------------------------------------------------------------------ */
.welcome-inner { padding-block: 5rem; text-align: center; }
@media (min-width: 1024px) { .welcome-inner { padding-block: 7rem; } }
.welcome-inner .reveal-item { max-width: 48rem; margin: 0 auto; }
.welcome-body { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; margin-top: 1.5rem; }
@media (min-width: 768px) { .welcome-body { font-size: 1.875rem; } }
@media (min-width: 1024px) { .welcome-body { font-size: 2.25rem; } }

/* ------------------------------------------------------------------ */
/* Categories                                                          */
/* ------------------------------------------------------------------ */
.categories-section { padding: 4rem 0 3rem; }
@media (min-width: 1024px) { .categories-section { padding: 5rem 0 4rem; } }
.section-heading-block { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .section-heading-block { margin-bottom: 3.5rem; } }
.section-heading { font-family: var(--font-display); }
.categories-section__heading { font-size: 1.875rem; line-height: 1.15; }
@media (min-width: 768px) { .categories-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .categories-section__heading { font-size: 3rem; } }
.categories-track { overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; margin: 0 -1.5rem; padding: 0 1.5rem; }
.categories-track::-webkit-scrollbar { display: none; }
.categories-track-inner { display: flex; gap: 1.25rem; min-width: max-content; justify-content: center; }
@media (min-width: 1024px) { .categories-track-inner { display: grid; grid-template-columns: repeat(3, 1fr); min-width: 0; } }
.category-tile { width: 180px; flex-shrink: 0; text-align: center; scroll-snap-align: start; }
@media (min-width: 1024px) { .category-tile { width: auto; } }
.category-tile-circle { position: relative; display: block; aspect-ratio: 1/1; border-radius: 9999px; overflow: hidden; }
.category-tile-circle::after {
	content: ''; position: absolute; inset: 0; border-radius: 9999px;
	box-shadow: inset 0 0 0 1px hsl(var(--primary) / 0.3); pointer-events: none;
}
.category-tile-circle .category-tile-img { transition: transform 0.7s ease; }
.category-tile:hover .category-tile-img { transform: scale(1.05); }
.category-tile.is-active .category-tile-circle { box-shadow: 0 0 0 4px hsl(var(--primary)), 0 0 0 6px hsl(var(--background)); }
.category-tile-name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-top: 1rem; }
.category-tile-cta { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: hsl(var(--primary)); transition: gap 0.3s var(--transition-smooth); }
.category-tile:hover .category-tile-cta { gap: 0.55rem; }

/* ------------------------------------------------------------------ */
/* Promo banner                                                        */
/* ------------------------------------------------------------------ */
.promo-banner-media { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .promo-banner-media { height: 70vh; } }
.promo-banner-scrim { position: absolute; inset: 0; background: hsla(300, 30%, 5%, 0.6); }
.promo-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
}
@media (min-width: 768px) {
	.promo-banner-overlay { align-items: center; }
}
.promo-banner-inner {
	width: 100%;
	padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.promo-banner-inner { padding-bottom: 0; }
}
.promo-banner-copy {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
@media (min-width: 768px) {
	.promo-banner-copy {
		margin-left: 0;
		margin-right: 0;
		text-align: left;
	}
}
.promo-banner-eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: hsl(var(--on-media-muted));
	margin-bottom: 1rem;
	text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.promo-banner-heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 0.95;
	margin-bottom: 2rem;
	color: hsl(var(--on-media));
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.promo-banner-heading em { font-style: italic; font-weight: 400; }
@media (min-width: 768px) { .promo-banner-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .promo-banner-heading { font-size: 3.75rem; } }

/* ------------------------------------------------------------------ */
/* Brand pillars                                                       */
/* ------------------------------------------------------------------ */
.pillars-section { padding: 5rem 0; }
@media (min-width: 1024px) { .pillars-section { padding: 6rem 0; } }
.pillars-heading-block { max-width: 48rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .pillars-heading-block { margin-bottom: 4rem; } }
.pillars-section__heading { font-size: 1.875rem; line-height: 1.2; margin-top: 0.75rem; }
@media (min-width: 768px) { .pillars-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .pillars-section__heading { font-size: 3rem; } }
.pillars-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid hsl(var(--foreground) / 0.15); }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-item { border-bottom: 1px solid hsl(var(--foreground) / 0.15); padding: 2rem 1rem; }
@media (min-width: 640px) { .pillar-item:nth-child(odd) { border-right: 1px solid hsl(var(--foreground) / 0.15); } }
@media (min-width: 1024px) { .pillar-item { border-right: 1px solid hsl(var(--foreground) / 0.15); } .pillar-item:nth-child(3n) { border-right: none; } }
.pillar-item-icon { color: hsl(var(--primary)); margin-bottom: 1.25rem; width: 36px !important; height: 36px !important; }
.pillar-item-label { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar-item-sub { font-size: 13px; color: hsl(var(--foreground) / 0.65); line-height: 1.5; }

/* ------------------------------------------------------------------ */
/* Shop section + product cards                                       */
/* ------------------------------------------------------------------ */
.shop-section { padding: 0; }
.shop-heading-block { padding-top: 5rem; padding-bottom: 2rem; }
@media (min-width: 1024px) { .shop-heading-block { padding-top: 7rem; } }
.shop-heading-inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.shop-heading { font-family: var(--font-display); font-size: 2.5rem; line-height: 1.05; margin-top: 0.75rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.shop-heading-body { margin-top: 1.25rem; color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.6; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.shop-featured-grid-wrap { padding-bottom: 3rem; }
.shop-featured-grid { margin-top: 0; }
@media (min-width: 1024px) { .shop-featured-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.shop-filtered-grid { gap: 0.5rem 0.75rem; }
@media (min-width: 1024px) { .shop-filtered-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper { position: relative; height: 100%; aspect-ratio: 1/1; overflow: hidden; transition: box-shadow 0.35s ease; }
.theme-product-card__image-wrapper .product-card-img { height: 100% !important; }
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: var(--shadow-soft); }
.theme-product-card__image { transition: opacity 0.7s ease; }
.theme-product-card__image--hover { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--primary { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--hover { opacity: 1; }
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; display: flex; flex-direction: column; }
.theme-product-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-product-card__title { font-family: var(--font-display); font-size: 20px; line-height: 1.2; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.3s; }
.theme-product-card:hover .theme-product-card__title { color: hsl(var(--primary)); }
.theme-product-card__price { font-size: 15px; white-space: nowrap; margin: 0; }
.theme-product-card__price .price { font-size: 15px; }
.theme-product-card__category { font-size: 13px; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.theme-product-card__format { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }
.theme-product-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; padding: 0.25rem 0.6rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; background: hsl(var(--foreground)); color: hsl(var(--background)); }

.shop-filtered-wrap { padding-bottom: 4rem; padding-top: 0; }
@media (min-width: 1024px) { .shop-filtered-wrap { padding-bottom: 5rem; } }
.shop-sub-heading-block { text-align: center; margin-bottom: 2rem; margin-top: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.shop-sub-heading { font-family: var(--font-display); font-size: 1.5rem; }
@media (min-width: 768px) { .shop-sub-heading { font-size: 1.875rem; } }
.shop-sub-body { font-size: 14px; color: hsl(var(--muted-foreground)); max-width: 28rem; }
.shop-filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-price-filter { max-width: 28rem; margin: 0 auto 2.5rem; padding: 0 0.5rem; }
.shop-price-filter-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.shop-price-filter-value { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* Dual-range price slider — Section 31.4 overlapping full-width pattern */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 9999px; }
.range-track-bg { left: 0; right: 0; background: hsl(var(--border)); }
.range-track-fill { background: hsl(var(--primary)); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 9999px; background: hsl(var(--primary)); border: 2px solid hsl(var(--background)); box-shadow: var(--shadow-soft); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 9999px; background: hsl(var(--primary)); border: 2px solid hsl(var(--background)); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-empty-state { padding: 5rem 0; text-align: center; border: 1px dashed hsl(var(--border)); }
.shop-empty-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty-body { font-size: 14px; color: hsl(var(--muted-foreground)); }
.shop-show-more-wrap { margin-top: 2.5rem; display: flex; justify-content: center; }
.theme-product-card-wrap[data-hidden-filter="true"],
.theme-product-card-wrap[data-hidden-page="true"] { display: none; }

/* ------------------------------------------------------------------ */
/* Split banners                                                       */
/* ------------------------------------------------------------------ */
.split-banners-section { padding-top: 4rem; }
@media (min-width: 1024px) { .split-banners-section { padding-top: 6rem; } }
.split-banner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split-banner { grid-template-columns: repeat(2, 1fr); } }
.split-banner + .split-banner { border-top: 1px solid hsl(var(--foreground) / 0.1); }
.split-banner-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
@media (min-width: 1024px) { .split-banner-media { aspect-ratio: auto; min-height: 520px; order: 1; } }
.split-banner--reverse .split-banner-media { order: 2; }
.split-banner-copy { display: flex; align-items: center; padding: 4rem 2rem; }
@media (min-width: 768px) { .split-banner-copy { padding: 5rem 4rem; } }
@media (min-width: 1024px) { .split-banner-copy { padding: 6rem 5rem; order: 2; } }
.split-banner--reverse .split-banner-copy { order: 1; }
.split-banner-copy-inner { max-width: 28rem; }
.split-banner-heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .split-banner-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .split-banner-heading { font-size: 3rem; } }
.split-banner-heading em { font-style: italic; font-weight: 400; }
.split-banner-body { color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.6; margin-bottom: 2rem; }
.split-banner-cta { font-size: 15px; text-decoration: underline; text-underline-offset: 6px; transition: color 0.3s; }
.split-banner-cta:hover { color: hsl(var(--primary)); }

/* ------------------------------------------------------------------ */
/* Portfolio / studio gallery                                          */
/* ------------------------------------------------------------------ */
.portfolio-section { padding: 5rem 0; }
@media (min-width: 1024px) { .portfolio-section { padding: 6rem 0; } }
.portfolio-heading-row { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .portfolio-heading-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
@media (min-width: 1024px) { .portfolio-heading-row { margin-bottom: 4rem; } }
.portfolio-section__heading { font-size: 1.875rem; line-height: 1.15; margin-top: 0.75rem; }
@media (min-width: 768px) { .portfolio-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .portfolio-section__heading { font-size: 3rem; } }
.portfolio-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: hsl(var(--foreground) / 0.55); }
.portfolio-carousel { position: relative; }
.portfolio-track { display: flex; gap: 1rem; overflow: hidden; }
.portfolio-slide { flex: 0 0 72%; aspect-ratio: 4/5; position: relative; overflow: hidden; border-radius: 2px; }
@media (min-width: 640px) { .portfolio-slide { flex-basis: 46%; } }
@media (min-width: 768px) { .portfolio-slide { flex-basis: 34%; } }
@media (min-width: 1024px) { .portfolio-slide { flex-basis: 26%; } }
.portfolio-slide img { transition: transform 1.2s ease; }
.portfolio-slide:hover img { transform: scale(1.05); }
.portfolio-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }

.theme-lightbox { position: fixed; inset: 0; z-index: 100; background: hsl(0 0% 0% / 0.92); display: none; align-items: center; justify-content: center; }
.theme-lightbox.is-open { display: flex; }
.theme-lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.theme-lightbox .theme-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; }
.theme-lightbox-prev, .theme-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); }
.theme-lightbox-prev { left: 1.5rem; } .theme-lightbox-next { right: 1.5rem; }
.theme-lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 12px; letter-spacing: 0.2em; }

/* ------------------------------------------------------------------ */
/* Testimonials                                                        */
/* ------------------------------------------------------------------ */
.testimonials-section { padding: 6rem 0; background: hsl(var(--background)); }
@media (min-width: 1024px) { .testimonials-section { padding: 8rem 0; } }
.testimonials-inner { max-width: 1152px; }
.testimonials-heading-block { max-width: 48rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .testimonials-heading-block { margin-bottom: 5rem; } }
.testimonials-heading { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.02; margin-top: 0.75rem; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .testimonials-heading { font-size: 3.75rem; } }
.testimonials-heading em { font-style: italic; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 3.5rem; } }
.testimonial-card {
	position: relative; display: flex; flex-direction: column; min-height: 260px;
	padding: 1.75rem 1.5rem; transform: rotate(var(--sticky-rotate, 0deg));
	box-shadow: 2px 3px 12px rgba(0,0,0,0.08); transition: box-shadow 0.5s ease;
}
@media (min-width: 768px) { .testimonial-card { min-height: 280px; padding: 2rem 1.75rem; } }
.testimonial-card:hover { box-shadow: 3px 5px 20px rgba(0,0,0,0.12); }
.testimonial-card-tape {
	position: absolute; top: -0.625rem; left: 50%; transform: translateX(-50%) rotate(-1deg);
	width: 64px; height: 20px; background: hsl(var(--surface-oat) / 0.8); box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.testimonial-quote-mark { display: block; font-family: var(--font-display); font-style: italic; font-size: 2.8rem; line-height: 1; color: hsl(var(--foreground) / 0.7); margin-bottom: 0.75rem; }
.testimonial-quote { font-family: var(--font-body); font-style: italic; font-size: 15px; line-height: 1.5; margin: 0; flex: 1; }
@media (min-width: 768px) { .testimonial-quote { font-size: 16px; } }
.testimonial-quote--clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial-read-more {
	margin-top: 0.75rem; align-self: flex-start; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
	font-weight: 600; color: hsl(var(--foreground) / 0.75); text-decoration: underline; text-underline-offset: 4px;
	background: none; border: none; cursor: pointer; transition: color 0.3s;
}
.testimonial-read-more:hover { color: hsl(var(--foreground)); }
.testimonial-meta { border-top: 1px solid hsl(var(--foreground) / 0.15); padding-top: 1rem; margin-top: auto; }
.testimonial-name { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin: 0; }
.testimonial-role { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: hsl(var(--foreground) / 0.55); margin: 0.25rem 0 0; }
.testimonial-lightbox {
	position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.testimonial-lightbox[hidden] { display: none !important; }
.testimonial-lightbox-backdrop { position: absolute; inset: 0; background: hsl(var(--foreground) / 0.25); backdrop-filter: blur(4px); }
.testimonial-lightbox-card {
	position: relative; width: 100%; max-width: 32rem; padding: 2rem 2.5rem;
	box-shadow: 4px 8px 30px rgba(0,0,0,0.18);
}
.testimonial-lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; }

/* ------------------------------------------------------------------ */
/* Process                                                             */
/* ------------------------------------------------------------------ */
.process-grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-media { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .process-media { min-height: 100%; order: 1; } }
.process-copy { display: flex; flex-direction: column; justify-content: center; padding: 5rem 2rem; order: 1; }
@media (min-width: 768px) { .process-copy { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .process-copy { padding: 5rem 5rem; order: 2; } }
.process-section__heading { font-size: 2.25rem; line-height: 1.05; margin: 1.5rem 0 2rem; }
@media (min-width: 768px) { .process-section__heading { font-size: 3rem; } }
.process-section__heading em { font-style: italic; }
.process-body { color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.process-body p + p { margin-top: 1rem; }
.process-quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; border-top: 1px solid hsl(var(--border)); padding-top: 2rem; }
@media (min-width: 768px) { .process-quote { font-size: 1.5rem; } }

/* ------------------------------------------------------------------ */
/* Story + about                                                       */
/* ------------------------------------------------------------------ */
.brand-section { background: hsl(var(--secondary) / 0.4); padding-top: 5rem; }
@media (min-width: 1024px) { .brand-section { padding-top: 7rem; } }
.story-band { position: relative; width: 100%; height: 60vh; overflow: hidden; background: hsl(var(--primary)); display: flex; align-items: center; margin-top: -5rem; }
@media (min-width: 768px) { .story-band { height: 70vh; } }
@media (min-width: 1024px) { .story-band { margin-top: -7rem; } }
.story-band-copy { max-width: 42rem; margin: 0 auto; text-align: center; }
.story-heading { font-family: var(--font-display); font-size: 2.5rem; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: hsl(var(--on-media)); }
@media (min-width: 768px) { .story-heading { font-size: 4rem; } }
@media (min-width: 1024px) { .story-heading { font-size: 4.5rem; } }
.story-body { color: hsl(var(--on-media-muted)); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .story-body { font-size: 15px; } }

.about-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-copy { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .about-copy { padding: 6rem 5rem; } }
.about-heading { font-family: var(--font-display); line-height: 0.9; letter-spacing: -0.02em; margin-bottom: 2.5rem; font-size: clamp(3rem, 7vw, 6rem); }
.about-body { max-width: 36rem; color: hsl(var(--foreground) / 0.85); font-size: 15px; line-height: 1.6; }
.about-body p { margin: 0 0 1.25rem; }
.about-quote { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; padding-top: 1rem; }
@media (min-width: 1024px) { .about-quote { font-size: 1.875rem; } }
.about-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: hsl(var(--primary)); padding-top: 0.5rem; }
.about-media { position: relative; min-height: 400px; overflow: hidden; }
@media (min-width: 1024px) { .about-media { min-height: 700px; } }

/* ------------------------------------------------------------------ */
/* Sponsor                                                             */
/* ------------------------------------------------------------------ */
.sponsor-section { padding: 5rem 0; }
@media (min-width: 1024px) { .sponsor-section { padding: 7rem 0; } }
.sponsor-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; border: 1px solid hsl(var(--border)); overflow: hidden; border-radius: 2px; }
@media (min-width: 1024px) { .sponsor-grid { grid-template-columns: repeat(2, 1fr); } }
.sponsor-media { position: relative; min-height: 320px; }
@media (min-width: 1024px) { .sponsor-media { min-height: 520px; } }
.sponsor-copy { display: flex; flex-direction: column; justify-content: center; padding: 4rem 2rem; }
@media (min-width: 768px) { .sponsor-copy { padding: 4rem 3.5rem; } }
@media (min-width: 1024px) { .sponsor-copy { padding: 5rem 4rem; } }
.sponsor-section__heading { font-size: 1.875rem; line-height: 1.2; margin: 1.25rem 0 1.5rem; }
@media (min-width: 768px) { .sponsor-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .sponsor-section__heading { font-size: 3rem; } }
.sponsor-body { color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.6; margin-bottom: 2rem; max-width: 32rem; }
.sponsor-chips { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 2.25rem; }
@media (min-width: 640px) { .sponsor-chips { grid-template-columns: repeat(3, 1fr); } }
.sponsor-chip { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1rem; border: 1px solid hsl(var(--border)); background: hsl(var(--background) / 0.4); }
.sponsor-chip svg { color: hsl(var(--primary)); flex-shrink: 0; }
.sponsor-chip span { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.sponsor-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
@media (min-width: 640px) { .sponsor-actions { flex-direction: row; align-items: center; } }
.sponsor-email { font-size: 15px; text-decoration: underline; text-underline-offset: 6px; }

/* ------------------------------------------------------------------ */
/* FAQ + contact                                                       */
/* ------------------------------------------------------------------ */
.faq-contact-section { padding: 5rem 0; }
@media (min-width: 1024px) { .faq-contact-section { padding: 7rem 0; } }
.faq-heading { font-family: var(--font-display); font-size: 2.25rem; text-align: center; margin-bottom: 4rem; line-height: 1.2; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.faq-heading em { font-style: italic; }
.faq-list { max-width: 48rem; margin: 0 auto; border-top: 1px solid hsl(var(--border)); }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-question span:first-child { font-size: 16px; transition: color 0.3s; }
@media (min-width: 768px) { .faq-question span:first-child { font-size: 18px; } }
.faq-question:hover span:first-child { color: hsl(var(--primary)); }
.faq-toggle-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9999px; background: hsl(var(--foreground)); color: hsl(var(--background)); display: inline-flex; align-items: center; justify-content: center; }
.faq-icon-minus { display: none; }
.faq-item[data-open="true"] .faq-icon-plus { display: none; }
.faq-item[data-open="true"] .faq-icon-minus { display: inline-flex; }
.faq-answer { overflow: hidden; transition: height 0.4s var(--transition-smooth); }
.faq-answer p { padding: 0 3rem 1.5rem 0; color: hsl(var(--muted-foreground)); font-size: 15px; line-height: 1.6; margin: 0; }

.contact-cta { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; border-radius: 2px; }
@media (min-width: 1024px) { .contact-cta { margin-bottom: -7rem; } }
.contact-cta-video { object-fit: cover; }
.contact-cta-scrim { position: absolute; inset: 0; background: hsla(300, 30%, 5%, 0.68); }
.contact-cta-inner { position: relative; text-align: center; padding: 6rem 0; }
@media (min-width: 768px) { .contact-cta-inner { padding: 8rem 0; } }
.contact-cta-inner .label-eyebrow { color: hsl(var(--on-media-muted)); margin-bottom: 1.25rem; }
.contact-cta-heading { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; color: hsl(var(--on-media)); }
@media (min-width: 768px) { .contact-cta-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-cta-heading { font-size: 3.75rem; } }
.contact-cta-heading em { font-style: italic; }
.contact-cta-body { max-width: 32rem; margin: 0 auto 2.5rem; color: hsl(var(--on-media-muted)); font-size: 15px; line-height: 1.6; }
.contact-cta-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .contact-cta-actions { flex-direction: row; } }
.contact-cta-phone { margin-top: 1.5rem; font-size: 14px; color: hsl(var(--on-media-muted)); }
.contact-cta-phone a { color: hsl(var(--on-media)); text-decoration: underline; text-underline-offset: 4px; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer { position: relative; background: hsl(var(--secondary)); color: hsl(var(--foreground)); }
.footer-newsletter-band { border-bottom: 1px solid hsl(var(--border) / 0.3); position: relative; }
.footer-newsletter-inner { padding-block: 3.5rem 4rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.footer-newsletter-embed { width: 100%; min-height: 48px; }
@media (min-width: 1024px) { .footer-newsletter-inner { grid-template-columns: repeat(2, 1fr); } }
.footer-newsletter-copy h3 { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.05; margin-top: 0.75rem; }
.footer-newsletter-copy .eyebrow { letter-spacing: 0.32em; color: hsl(var(--muted-foreground)); }
@media (min-width: 1024px) { .footer-newsletter-copy h3 { font-size: 2.25rem; } }
.footer-newsletter-action { width: 100%; }
.footer-newsletter-form { display: flex; width: 100%; }
.footer-newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid hsl(var(--border) / 0.6); padding: 0.75rem 0.25rem; font-size: 14px; color: hsl(var(--foreground)); }
.footer-newsletter-input:focus { outline: none; border-color: hsl(var(--primary)); }
.footer-newsletter-form .btn-uw-primary { margin-left: 0.75rem; height: 48px; padding: 0 1.5rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }

.footer-main { padding-block: 4rem 1.5rem; }
@media (min-width: 1024px) { .footer-main { padding-block: 5rem 1.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-blurb { margin-top: 1.5rem; font-size: 14px; color: hsl(var(--muted-foreground)); max-width: 24rem; line-height: 1.6; }
.footer-social { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.75rem; }
.footer-social-link { padding: 0.5rem; border: 1px solid hsl(var(--border) / 0.4); display: inline-flex; transition: border-color 0.3s, color 0.3s; }
.footer-social-link:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin: 0; }
.footer-col a, .footer-link-btn { font-family: var(--font-body); font-size: 14px; color: hsl(var(--muted-foreground)); transition: color 0.3s; text-align: left; background: none; border: none; padding: 0; cursor: pointer; display: inline-block; line-height: 1.5; }
.footer-col a:hover, .footer-link-btn:hover { color: hsl(var(--foreground)); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-family: var(--font-body); font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.5; }
.footer-contact-item a { color: inherit; word-break: break-word; }
.footer-contact-item a:hover { color: hsl(var(--foreground)); }
.footer-newsletter-embed { width: 100%; min-height: 48px; }
.footer-newsletter-embed iframe { max-width: 100%; }
.footer-contact-item svg { margin-top: 0.15rem; flex-shrink: 0; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: center; gap: 1.5rem; } }
.footer-copyright, .footer-credit { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground) / 0.7); }
.footer-credit:hover { color: hsl(var(--primary)); }

/* ------------------------------------------------------------------ */
/* Modals: contact / custom order / search                            */
/* ------------------------------------------------------------------ */
.theme-modal-overlay { position: fixed; inset: 0; background: hsl(var(--foreground) / 0.3); z-index: 80; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; backdrop-filter: blur(4px); }
.theme-modal { position: fixed; inset: 0; z-index: 81; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.theme-modal--top { align-items: flex-start; justify-content: stretch; padding: 0; }
.theme-modal--top .theme-modal-panel--search { max-width: none; width: 100%; border-radius: 0; max-height: 92vh; box-shadow: var(--shadow-elevated); border-bottom: 1px solid hsl(var(--border)); transform: translateY(-12px); }
body.search-modal-open .theme-modal--top .theme-modal-panel--search { transform: translateY(0); }
body.contact-modal-open #contact-modal-overlay,
body.contact-modal-open #contact-modal,
body.custom-order-modal-open #custom-order-modal-overlay,
body.custom-order-modal-open #custom-order-modal,
body.search-modal-open #search-modal-overlay,
body.search-modal-open #search-modal { opacity: 1; visibility: visible; }
.theme-modal-panel { position: relative; background: hsl(var(--background)); width: 100%; max-width: 480px; padding: 2.5rem; border-radius: 0; border: 1px solid hsl(var(--border)); box-shadow: var(--shadow-elevated); max-height: 90vh; overflow-y: auto; transform: scale(0.95); transition: transform 0.3s var(--transition-smooth); }
.theme-modal-panel--lg { max-width: 42rem; padding: 0; overflow: hidden; }
.theme-modal-panel--sm { max-width: 32rem; }
.theme-modal-panel--search { max-width: none; padding: 0; }
body.contact-modal-open .theme-modal-panel,
body.custom-order-modal-open .theme-modal-panel,
body.search-modal-open .theme-modal-panel { transform: scale(1); }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem; color: hsl(var(--foreground)); z-index: 2; }
.theme-modal-eyebrow { display: block; margin-bottom: 0.5rem; }
.theme-modal-title { font-family: var(--font-display); font-size: 1.5rem; font-style: normal; line-height: 1.2; margin-bottom: 0.5rem; }
.theme-modal-title--lg { font-size: 1.75rem; }
.theme-modal-sub { font-size: 15px; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; line-height: 1.6; }
.theme-modal-panel--contact { max-width: 32rem; padding: 2rem; }
.theme-modal-body--contact { padding: 0; }
.theme-form--contact { margin-top: 0; gap: 1rem; }
.theme-form--contact .theme-field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form--contact .theme-field-row { grid-template-columns: repeat(2, 1fr); } }
.theme-form--contact .theme-form-actions { display: flex; justify-content: flex-end; margin-top: 0.5rem; }
.theme-form--contact .theme-form-submit { height: 44px; padding: 0 1.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-modal-contact-row { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; margin-top: 0.5rem; margin-bottom: 0; border-top: 1px solid hsl(var(--border)); font-size: 14px; color: hsl(var(--muted-foreground)); font-family: var(--font-body); }
.theme-modal-success--contact { padding: 2rem 0 1rem; }
.theme-form-error { color: hsl(var(--destructive)); font-size: 13px; background: hsl(var(--destructive) / 0.08); border: 1px solid hsl(var(--destructive) / 0.25); border-radius: 0.5rem; padding: 0.75rem 1rem; line-height: 1.5; }
.theme-modal-contact-row a { transition: color 0.3s; }
.theme-modal-contact-row a:hover { color: hsl(var(--foreground)); }
.theme-modal-contact-row__item { display: flex; align-items: center; gap: 0.5rem; }
.theme-form { display: flex; flex-direction: column; gap: 1.25rem; }
.theme-field { display: flex; flex-direction: column; gap: 0.4rem; font-size: 13px; }
.theme-field span { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground)); }
.theme-field input, .theme-field textarea {
	padding: 0.625rem 0.75rem; border: 1px solid hsl(var(--border)); border-radius: 0.5rem; background: hsl(var(--background));
	color: hsl(var(--foreground)); font-size: 14px;
}
.theme-field input:focus, .theme-field textarea:focus { outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 1px hsl(var(--primary)); }
.theme-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.theme-form-group { border-top: 1px solid hsl(var(--border)); padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.theme-form-group-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground)); }
.theme-chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.9rem; border: 1px solid hsl(var(--border)); border-radius: 9999px; font-size: 12px; transition: border-color 0.3s, color 0.3s, background-color 0.3s; }
.theme-chip .theme-icon { width: 14px; height: 14px; }
.theme-chip:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.theme-chip.is-active { background: hsl(var(--primary)); border-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.theme-form-submit { justify-content: center; }
.theme-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-modal-success { text-align: center; padding: 1rem 0; }
.theme-modal-success-icon { width: 56px; height: 56px; border-radius: 9999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.theme-modal-header-band {
	background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); padding: 1.5rem 1.75rem;
}
.theme-modal-header-band .theme-modal-eyebrow { color: hsl(var(--primary-foreground) / 0.75); }
.theme-modal-header-band .theme-modal-title { color: hsl(var(--primary-foreground)); margin-bottom: 0; }
.theme-modal-progress { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.theme-modal-progress__bar { height: 4px; flex: 1; border-radius: 9999px; background: hsl(var(--primary-foreground) / 0.25); transition: background-color 0.3s; }
.theme-modal-progress__bar.is-active { background: hsl(var(--primary-foreground)); }
.theme-modal-step-label { margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: hsl(var(--primary-foreground) / 0.85); }
.theme-modal-body--padded { padding: 1.75rem; min-height: 320px; display: flex; flex-direction: column; }
.theme-modal-step { display: none; flex-direction: column; gap: 1.5rem; flex: 1; }
.theme-modal-step.is-active { display: flex; }
.theme-modal-footer-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.75rem 1.75rem; border-top: 1px solid hsl(var(--border)); margin-top: auto; }
.theme-modal-footer-nav [data-custom-order-prev] { margin-right: auto; }
.theme-modal-footer-nav [data-custom-order-next],
.theme-modal-footer-nav [data-custom-order-submit] { margin-left: auto; }
.theme-modal-back-btn {
	display: inline-flex; align-items: center; gap: 0.375rem;
	font-family: var(--font-body); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
	color: hsl(var(--foreground) / 0.7); background: none; border: none; padding: 0; cursor: pointer;
	transition: color 0.3s;
}
.theme-modal-back-btn:hover:not(:disabled) { color: hsl(var(--foreground)); }
.theme-modal-back-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.theme-form-group--flush { border-top: none; padding-top: 0; }
.theme-chip-group--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .theme-chip-group--grid { grid-template-columns: repeat(3, 1fr); } }
.theme-chip-group--budget { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-top: 0.75rem; }
@media (min-width: 640px) { .theme-chip-group--budget { grid-template-columns: repeat(2, 1fr); } }
.theme-vision-counter { font-size: 11px; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.theme-vision-suggestions-label { margin-top: 1rem; margin-bottom: 0.5rem; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: hsl(var(--muted-foreground)); }
.theme-vision-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.theme-vision-suggestion {
	padding: 0.375rem 0.75rem; font-size: 11px; font-family: var(--font-body); color: hsl(var(--foreground) / 0.8);
	border: 1px solid hsl(var(--border)); border-radius: 9999px; background: transparent; cursor: pointer; text-align: left;
	transition: border-color 0.3s, color 0.3s;
}
.theme-vision-suggestion:hover { border-color: hsl(var(--foreground)); color: hsl(var(--foreground)); }
.theme-custom-order-body { min-height: 320px; display: flex; flex-direction: column; }
.theme-modal-success-close { margin-top: 1.75rem; height: 44px; padding: 0 1.5rem; border-radius: 9999px; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; }
.theme-modal-footer-nav .btn-uw-outline { height: 44px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-search-layout { padding: 2.5rem 0 3.5rem; }
@media (min-width: 1024px) { .theme-search-layout { padding: 3.5rem 0; } }
.theme-search-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-sidebar__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-categories { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-categories button { text-align: left; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: hsl(var(--foreground) / 0.85); transition: color 0.3s; }
.theme-search-categories button:hover { color: hsl(var(--primary)); }
.theme-search-main { padding-right: 0; }
@media (min-width: 1024px) { .theme-search-main { padding-right: 4rem; } }
.theme-search-input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid hsl(var(--foreground) / 0.3); padding-bottom: 0.75rem; margin-bottom: 2.5rem; }
#theme-search-input { flex: 1; border: none; background: transparent; font-family: var(--font-display); font-size: 1.5rem; padding: 0.25rem 0; color: hsl(var(--foreground)); }
#theme-search-input::placeholder { color: hsl(var(--foreground) / 0.4); }
#theme-search-input:focus { outline: none; }
.theme-search-section-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-results-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-search-hit { text-align: left; }
.theme-search-hit__image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: hsl(var(--secondary)); }
.theme-search-hit__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-hit:hover .theme-search-hit__image img { transform: scale(1.05); }
.theme-search-hit__name { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.35; }
.theme-search-hit__price { margin-top: 0.25rem; font-size: 12px; color: hsl(var(--muted-foreground)); }
.theme-search-empty { font-size: 14px; color: hsl(var(--muted-foreground)); }
.theme-search-empty em { font-family: var(--font-display); font-style: italic; }
.theme-search-close--floating { top: 1.25rem; right: 1.25rem; }
@media (min-width: 1024px) { .theme-search-close--floating { top: 1.75rem; right: 2rem; } }

/* ------------------------------------------------------------------ */
/* Cart drawer                                                         */
/* ------------------------------------------------------------------ */
#theme-cart-overlay { position: fixed; inset: 0; background: hsl(var(--foreground) / 0.3); z-index: 90; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 480px; background: hsl(var(--background));
	z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s var(--transition-smooth), visibility 0.35s;
	visibility: hidden;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
body.cart-open #theme-cart-drawer { transform: translateX(0); visibility: visible; }
#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: 2rem 2rem 1.25rem; border-bottom: 1px solid hsl(var(--border)); }
.theme-cart-drawer__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-empty-icon { width: 48px; height: 48px; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item__image { width: 96px; height: 128px; background: hsl(var(--secondary)); overflow: hidden; flex-shrink: 0; position: relative; display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; transition: opacity 0.3s; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 0.4rem; font-style: italic; }
.theme-cart-item__price { font-size: 14px; margin-top: 0.4rem; }
.theme-cart-item__controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-item__stepper { display: flex; align-items: center; gap: 0.5rem; }
.theme-cart-item__qty { font-size: 14px; min-width: 24px; text-align: center; }
.theme-cart-item__remove { font-size: 12px; color: hsl(var(--muted-foreground)); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__pair { border-top: 1px solid hsl(var(--border)); padding-top: 1.5rem; }
.theme-cart-drawer__pair-heading { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.theme-cart-drawer__pair-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 480px) { .theme-cart-drawer__pair-grid { grid-template-columns: repeat(3, 1fr); } }
.theme-cart-pair-item { text-align: left; min-width: 0; display: block; width: 100%; color: inherit; text-decoration: none; background: none; border: none; padding: 0; cursor: pointer; }
.theme-cart-pair-item__image { display: block; position: relative; aspect-ratio: 3/4; background: hsl(var(--secondary)); overflow: hidden; margin-bottom: 0.5rem; }
.theme-cart-pair-item__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.theme-cart-pair-item:hover .theme-cart-pair-item__image img { transform: scale(1.05); }
.theme-cart-pair-item__name { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-cart-pair-item__price { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 0.15rem; display: block; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 12px; color: hsl(var(--muted-foreground)); margin: 0; }
.theme-cart-drawer__checkout { width: 100%; height: 48px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; }

/* ------------------------------------------------------------------ */
/* Single product                                                      */
/* ------------------------------------------------------------------ */
.site-main--single-product { padding-top: 7rem; }
@media (min-width: 1024px) { .site-main--single-product { padding-top: 8rem; } }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 0 0 4rem; min-width: 0; align-items: start; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 128px; align-self: start; } }
.theme-product-gallery-inner { display: flex; align-items: stretch; }
.theme-product-thumbnails--vertical { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem 1rem 1rem 0; flex-shrink: 0; }
@media (min-width: 768px) { .theme-product-thumbnails--vertical { display: flex; } }
.theme-product-thumbnails--mobile { display: flex; gap: 0.5rem; padding: 1rem 0; overflow-x: auto; }
@media (min-width: 768px) { .theme-product-thumbnails--mobile { display: none; } }
.theme-product-main-image { position: relative; flex: 1; min-width: 0; min-height: 55vh; display: flex; align-items: center; justify-content: center; padding: 1rem 0; background: hsl(var(--background)); }
@media (min-width: 768px) { .theme-product-main-image { min-height: 65vh; } }
@media (min-width: 1024px) { .theme-product-main-image { min-height: 70vh; } }
.theme-product-main-image img { width: 100%; height: 100%; max-height: 70vh; object-fit: contain; position: static; }
.theme-product-thumb { width: 56px; height: 56px; overflow: hidden; border: 1px solid transparent; opacity: 0.6; transition: opacity 0.3s, border-color 0.3s; flex-shrink: 0; background: transparent; padding: 0; cursor: pointer; }
@media (min-width: 1024px) { .theme-product-thumbnails--vertical .theme-product-thumb { width: 64px; height: 64px; } }
.theme-product-thumb.is-active { opacity: 1; border-color: hsl(var(--foreground)); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; position: static; }
.theme-product-info { padding: 2.5rem 0; }
@media (min-width: 1024px) { .theme-product-info { padding: 2.5rem 0 4rem; } }
.theme-product-breadcrumb { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body); color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.theme-product-breadcrumb__link { color: inherit; transition: color 0.3s; }
.theme-product-breadcrumb__link:hover { color: hsl(var(--foreground)); }
.theme-product-breadcrumb__sep { margin: 0 0.5rem; }
.theme-product-sku { margin-top: 0.75rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body); color: hsl(var(--muted-foreground)); }
.theme-product-divider { height: 1px; background: hsl(var(--border)); margin: 1.75rem 0; }
.product-title {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.5;
	margin: 0;
}
@media (min-width: 768px) { .product-title { font-size: 16px; } }
.theme-product-price { font-size: 1.125rem; font-family: var(--font-body); margin-bottom: 0; }
.theme-product-note-box {
	margin-top: 1.75rem; padding: 1rem 1.25rem; background: hsl(var(--secondary) / 0.7);
	font-size: 13px; font-family: var(--font-body); color: hsl(var(--foreground) / 0.85); line-height: 1.6;
}
.theme-product-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.75rem; margin-top: 2rem; }
.theme-product-actions .theme-quantity-wrapper { flex-shrink: 0; }
.theme-product-actions .theme-product-cta { flex: 1 1 12rem; min-width: 0; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid hsl(var(--border)); border-radius: 9999px; height: 3.5rem; }
.theme-qty-minus, .theme-qty-plus { width: 44px; height: 100%; display: inline-flex; align-items: center; justify-content: center; color: hsl(var(--foreground)); }
.theme-qty-input { width: 48px; height: 100%; text-align: center; border: none; border-left: 1px solid hsl(var(--border)); border-right: 1px solid hsl(var(--border)); background: transparent; -moz-appearance: textfield; font-size: 14px; color: hsl(var(--foreground)); }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-product-cta { margin-top: 0; }
.theme-product-cta .single_add_to_cart_button,
.theme-product-cta .theme-btn-primary {
	width: 100%; height: 3.5rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
	justify-content: center;
}
.theme-stock-status--out { color: hsl(var(--destructive)); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.theme-product-details { margin-top: 3rem; }
.theme-product-details__title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-body); font-weight: 400; color: hsl(var(--foreground)); margin-bottom: 1.25rem; }
.theme-product-details__description { font-family: var(--font-display); font-size: 19px; line-height: 1.55; color: hsl(var(--foreground) / 0.9); }
.theme-product-details__description p { margin: 0 0 1rem; }
.theme-product-details__body { margin-top: 1.5rem; }
.theme-product-details__body ul { padding-left: 1.25rem; list-style: disc; display: flex; flex-direction: column; gap: 0.625rem; color: hsl(var(--foreground) / 0.8); font-size: 14px; font-family: var(--font-body); }
.theme-product-details__body ul li::marker { color: hsl(var(--primary)); }

.related-products-section { padding-top: 3rem; padding-bottom: 6rem; border-top: 1px solid hsl(var(--border)); margin-top: 3rem; }
.related-products-heading { font-family: var(--font-display); font-size: 1.875rem; text-align: left; margin-bottom: 3rem; line-height: 1.2; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }
.related-products-heading em { font-style: italic; }
.related-products-grid { grid-template-columns: repeat(1, 1fr); gap: 3rem 2rem; }
@media (min-width: 640px) { .related-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(3, 1fr); } }

/* Variations table layout — Section 11.5.1 */
.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; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.single-product .variations_form { margin-top: 2rem; }
.single-product .variations tbody td.label label { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 400; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; display: block; }
.single-product .woocommerce-variation-price { display: none; }
.single-product .woocommerce-variation-availability { display: none; }
.single-product .variations_form .single_add_to_cart_button:disabled { opacity: 0.4; pointer-events: none; }
.woocommerce-variation-description, .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* ------------------------------------------------------------------ */
/* Shop archive                                                        */
/* ------------------------------------------------------------------ */
.shop-archive-header { padding-top: 2.5rem; }
.shop-archive-header .page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }
.shop-archive-grid { padding-bottom: 4rem; }
.shop-archive-empty { padding: 4rem 0; text-align: center; color: hsl(var(--muted-foreground)); }

/* ------------------------------------------------------------------ */
/* Add to cart button overrides (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;
	color: var(--color-button-text) !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-product .single_add_to_cart_button.button,
.single-product .add_to_cart_button.button { text-transform: none !important; letter-spacing: normal !important; font-size: 13px !important; }
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !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;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading {
	opacity: 0.6 !important;
	pointer-events: none !important;
	cursor: wait !important;
}

/* Hide "View cart" injected by WooCommerce after AJAX add (Section 11.4.2) */
.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; }

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-top-color: hsl(var(--primary));
	font-family: var(--font-body); font-size: 14px; padding: 1rem 1.5rem; border-radius: 4px;
	background: hsl(var(--muted)); list-style: none; margin: 0 0 1.5rem;
}

/* ------------------------------------------------------------------ */
/* WooCommerce Checkout Block overrides (Section 13)                  */
/* ------------------------------------------------------------------ */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 96px); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }
body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__main ~ .wc-block-checkout__sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: hsl(var(--muted));
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox-control input {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	color: hsl(var(--foreground)) !important;
	background-color: hsl(var(--background)) !important;
	border: 1px solid hsl(var(--border)) !important;
	border-radius: 0.5rem !important;
}
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-select .components-select-control__input,
body.woocommerce-checkout .wc-block-components-form .components-select-control__input,
body.woocommerce-checkout select.components-select-control__input,
body.woocommerce-checkout .wc-block-components-address-form select,
body.woocommerce-checkout .wc-block-checkout__main select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select-control__select,
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	color: hsl(var(--foreground)) !important;
	background-color: hsl(var(--background)) !important;
	border: 1px solid hsl(var(--border)) !important;
	border-radius: 0.5rem !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox-control input:focus {
	border-color: hsl(var(--primary)) !important;
	box-shadow: 0 0 0 1px hsl(var(--primary)) !important;
	outline: none !important;
}
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-select .components-select-control__input:focus,
body.woocommerce-checkout .wc-block-components-form .components-select-control__input:focus,
body.woocommerce-checkout select.components-select-control__input:focus,
body.woocommerce-checkout .wc-block-components-address-form select:focus,
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button:focus,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select-control__select:focus {
	border-color: hsl(var(--primary)) !important;
	box-shadow: 0 0 0 1px hsl(var(--primary)) !important;
	outline: none !important;
}
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button {
	min-height: auto !important;
	text-align: left !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: hsl(var(--primary)) !important;
	color: hsl(var(--primary-foreground)) !important;
	border-radius: 9999px !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 4px;
	font-family: var(--font-body);
}

/* ------------------------------------------------------------------ */
/* Cart / Account pages width parity (Section 13.7)                    */
/* ------------------------------------------------------------------ */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 112px; padding-bottom: 4rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }

/* ------------------------------------------------------------------ */
/* Thank you page (Section 22.8)                                       */
/* ------------------------------------------------------------------ */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 112px; padding-bottom: 4rem; }
.theme-thankyou { max-width: 42rem; margin: 0 auto; text-align: center; }
.theme-thankyou__icon { width: 64px; height: 64px; border-radius: 9999px; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
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;
}
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; text-align: left;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* ------------------------------------------------------------------ */
/* 404                                                                  */
/* ------------------------------------------------------------------ */
.theme-404 { text-align: center; padding: 4rem 0; max-width: 32rem; margin: 0 auto; }
.theme-404__number { font-family: var(--font-display); font-size: 5rem; line-height: 1; color: hsl(var(--primary)); }
.theme-404__heading { font-family: var(--font-display); font-size: 1.75rem; margin: 1rem 0; }
.theme-404__body { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }

/* ------------------------------------------------------------------ */
/* Customizer control CSS (media picker) is in customizer-controls.css */
/* ------------------------------------------------------------------ */
