/* ==========================================================================
   Whiskey Blues BBQ — theme.css
   All visual styling lives here; WooCommerce template files contain no
   inline styling (Section 10).
   ========================================================================== */

/* --------------------------------------------------------------------
   0. ROOT TOKENS
   -------------------------------------------------------------------- */
:root {
	/* Colors — fallback defaults matching the brand's HSL design tokens,
	   converted to hex (Section 6.1). Overridden live by wp_add_inline_style
	   with the same keys (Section 22.9). */
	--color-background: #151210;
	--color-foreground: #ece3d3;
	--color-card: #1c1917;
	--color-primary: #cc7a25;
	--color-primary-foreground: #151210;
	--color-secondary: #241f1a;
	--color-muted-foreground: #ada192;
	--color-border: #3a332c;
	--color-highlight: #e8ad3e;
	--color-highlight-foreground: #151210;
	--color-neon-orange: #fc5a0e;
	--color-neon-blue: #1ac6ff;

	/* Derived / non-editable tokens, computed from the brand tokens. */
	--color-neon-blue-deep: color-mix(in srgb, var(--color-neon-blue) 55%, #001a33 45%);
	--color-muted: color-mix(in srgb, var(--color-secondary) 85%, var(--color-foreground) 15%);
	--color-surface: color-mix(in srgb, var(--color-card) 100%, transparent);

	/* Fonts */
	--font-display: 'Playfair Display', ui-serif, Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;
	--font-condensed: 'Bebas Neue', 'Impact', sans-serif;
	--font-neon-handwritten: 'Dancing Script', cursive;
	--font-neon-outline: 'Bebas Neue', 'Impact', sans-serif;

	/* Layout */
	--container-wide-max: 80rem;
	--container-editorial-max: 64rem;
	--header-height: 88px;
	--announcement-height: 36px;
	--admin-bar-height: 0px;
	--logo-height: 60px;

	/* Buttons */
	--btn-radius: 0;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.8125rem;
	--btn-font-weight: 400;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--shadow-soft: 0 8px 28px -10px rgba(0, 0, 0, 0.55);
	--shadow-elevated: 0 24px 60px -18px rgba(0, 0, 0, 0.75);

	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
	--card-radius: 0.5rem;
	--checkout-gap: 2rem;
	--page-top-offset: calc(
		var(--admin-bar-height, 0px) + var(--announcement-height, 0px) + var(--header-height) + 1.25rem
	);
}

@media (min-width: 1024px) {
	:root { --header-height: 104px; }
}

/* --------------------------------------------------------------------
   1. RESET / BASE
   -------------------------------------------------------------------- */
* { box-sizing: border-box; }

html, body {
	overflow-x: hidden;
	background-color: var(--color-background);
}

body {
	margin: 0;
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	letter-spacing: -0.015em;
}

.section-heading, .theme-promo-banner__heading, .theme-category-tile__title,
.impact-section__heading, .founder-section__name, .theme-promise__heading,
.faq-section__heading, .contact-section__heading, .theme-twoup__title,
.theme-product-title, .hero-section__title, .featured-section__heading {
	font-family: var(--font-display);
	font-weight: 600;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
button:disabled { cursor: not-allowed; }

/* Pointer on every interactive control */
a[href],
button:not(:disabled),
[role="button"],
.theme-category-tile,
.theme-promo-banner,
.theme-anchor-scroll,
.theme-filter-dropdown__btn,
.theme-filter-dropdown__option,
.theme-search-dialog__category-btn,
.theme-search-dialog__result,
.theme-footer-link,
.theme-footer-social__link,
.nav-link,
.theme-card-link,
.theme-twoup__cta,
.theme-faq-item__question,
.theme-clear-filter-btn,
.theme-hamburger,
.theme-icon-btn,
.theme-announcement__close,
.theme-newsletter-form__submit,
.theme-contact-form__submit,
.theme-product-card__add,
.theme-attr-pill,
.theme-variation-add-to-cart,
label[for] {
	cursor: pointer;
}
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; }

img:not(.no-round):not([class*="rounded-full"]),
video:not(.no-round) {
	border-radius: 0.5rem;
}

img { max-width: 100%; display: block; }

img:not(.cover-img):not(.hero-section__video):not(.impact-section__video):not(.theme-product-main-image) {
	height: auto;
}

.cover-img,
.theme-product-main-image,
.hero-section__video,
.impact-section__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-product-main-image {
	position: static;
	object-fit: contain;
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
}

.theme-flame-icon,
svg { flex-shrink: 0; }

.no-round { border-radius: 0; }

/* --------------------------------------------------------------------
   2. LAYOUT UTILITIES
   -------------------------------------------------------------------- */
.container-wide {
	width: 100%;
	max-width: var(--container-wide-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 768px) {
	.container-wide { padding: 0 2rem; }
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2.5rem; }
}

.container-editorial {
	width: 100%;
	max-width: var(--container-editorial-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 768px) {
	.container-editorial { padding: 0 2rem; }
}
@media (min-width: 1024px) {
	.container-editorial { padding: 0 2.5rem; }
}

.scroll-mt { scroll-margin-top: 6rem; }

.label-eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-highlight);
	margin-bottom: 1rem;
}

.nav-link {
	font-family: var(--font-condensed);
	font-size: 15px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 400;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.neon-handwritten, .neon-handwritten-sm {
	font-family: var(--font-neon-handwritten);
	font-weight: 400;
	color: var(--color-neon-blue);
	text-shadow:
		0 0 2px rgba(230, 249, 255, 0.6),
		0 0 5px color-mix(in srgb, var(--color-neon-blue) 50%, transparent),
		0 0 10px color-mix(in srgb, var(--color-neon-blue) 30%, transparent),
		0 0 18px color-mix(in srgb, var(--color-neon-blue-deep) 20%, transparent);
}
.neon-handwritten-sm {
	text-shadow:
		0 0 1px rgba(230, 249, 255, 0.55),
		0 0 4px color-mix(in srgb, var(--color-neon-blue) 45%, transparent),
		0 0 8px color-mix(in srgb, var(--color-neon-blue) 28%, transparent),
		0 0 14px color-mix(in srgb, var(--color-neon-blue-deep) 18%, transparent);
}

.neon-outline, .neon-outline-sm {
	font-family: var(--font-neon-outline);
	color: var(--color-neon-orange);
}

.btn-cta, .theme-btn-primary,
a.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border: 1px solid var(--color-primary);
	border-radius: var(--btn-radius);
	font-family: var(--font-condensed);
	font-size: 0.8125rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	transition: all 0.3s var(--transition-smooth);
	cursor: pointer;
}
.btn-cta:hover, .theme-btn-primary:hover {
	background-color: var(--color-highlight);
	color: var(--color-highlight-foreground);
	border-color: var(--color-highlight);
}

.btn-cta-pink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	background-color: transparent;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 40%, transparent);
	border-radius: 0;
	font-family: var(--font-condensed);
	font-size: 0.8125rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: all 0.3s var(--transition-smooth);
	cursor: pointer;
}
.btn-cta-pink:hover {
	background-color: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}

.theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: transparent;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.link-underline { position: relative; display: inline-block; }
.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);
}
.link-underline:hover::after { transform: scaleX(1); }

.hover-lift { transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth); will-change: transform; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }

.img-reveal { transition: transform 1.4s var(--transition-smooth), filter 0.8s var(--transition-smooth); will-change: transform; }
.hover-lift:hover .img-reveal,
.theme-category-tile:hover .img-reveal,
.theme-twoup__item:hover .img-reveal { transform: scale(1.06); filter: saturate(1.12); }

.icon-nudge { transition: transform 0.4s var(--transition-smooth); }
a:hover .icon-nudge, button:hover .icon-nudge { transform: translateX(4px); }

.link-shine { position: relative; overflow: hidden; isolation: isolate; }
.link-shine::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 25%, color-mix(in srgb, var(--color-highlight) 55%, white 15%) 50%, transparent 75%);
	transform: translateX(-120%);
	transition: transform 0.9s var(--transition-smooth);
	pointer-events: none;
	z-index: 1;
}
.link-shine:hover::before { transform: translateX(120%); }

/* --------------------------------------------------------------------
   3. SCROLL REVEAL (Section 2.1)
   -------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
	will-change: opacity, transform;
}
.reveal-item.is-visible { opacity: 1; transform: none; }

body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .animate-hero-kenburns, .animate-porter-kenburns, .animate-promise-kenburns,
	.animate-ember, .img-reveal, .hover-lift:hover {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* --------------------------------------------------------------------
   4. KEYFRAMES
   -------------------------------------------------------------------- */
@keyframes porterKenBurns {
	0% { transform: scale(1.05) translate3d(0, 0, 0); }
	100% { transform: scale(1.16) translate3d(3%, -2%, 0); }
}
@keyframes promiseKenBurns {
	0% { transform: scale(1.04) translate3d(0, 0, 0); }
	100% { transform: scale(1.15) translate3d(-2%, 3%, 0); }
}
@keyframes emberGlow {
	from { text-shadow: 0 0 20px color-mix(in srgb, var(--color-highlight) 45%, transparent); }
	to { text-shadow: 0 0 40px color-mix(in srgb, var(--color-highlight) 70%, transparent), 0 0 80px color-mix(in srgb, var(--color-primary) 40%, transparent); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

.animate-porter-kenburns { animation: porterKenBurns 12s var(--transition-smooth) infinite alternate; transform-origin: 30% 50%; }
.animate-promise-kenburns { animation: promiseKenBurns 12s var(--transition-smooth) infinite alternate; transform-origin: 50% 40%; }
.animate-ember { animation: emberGlow 4s ease-in-out infinite alternate; }
.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) both; }

@media (max-width: 1023px) {
	.animate-porter-kenburns, .animate-promise-kenburns { animation: none !important; transform: none !important; }
}

/* --------------------------------------------------------------------
   5. HEADER / ANNOUNCEMENT / NAV
   -------------------------------------------------------------------- */
.theme-announcement {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 60;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
}
body.admin-bar .theme-announcement {
	top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar .theme-announcement {
		top: 46px;
	}
}
.theme-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.25rem;
	padding: 0.375rem 2rem;
	position: relative;
}
.theme-announcement__text {
	font-family: var(--font-condensed);
	font-size: 12px;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}
.theme-flame-icon { width: 14px; height: 14px; }
.theme-announcement__close {
	position: absolute;
	right: 0.5rem;
	padding: 0.25rem;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}
.theme-announcement__close:hover { opacity: 0.6; }

.site-header {
	position: fixed;
	left: 0; right: 0;
	top: 0;
	z-index: 50;
	transition: background-color 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid transparent;
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 70%, transparent), transparent);
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	border-bottom-color: var(--color-border);
	backdrop-filter: blur(12px);
}
body.mobile-menu-open .site-header {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	border-bottom-color: var(--color-border);
}

.site-header__bar { width: 100%; padding: 0 1.5rem; }
@media (min-width: 768px) { .site-header__bar { padding: 0 2.5rem; } }

.site-header__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 88px;
}
@media (min-width: 1024px) { .site-header__nav { height: 104px; } }

.site-header__mobile-toggle { display: flex; align-items: center; flex: 1; }
@media (min-width: 768px) { .site-header__mobile-toggle { display: none; } }

.theme-hamburger {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 5px;
	padding: 0.5rem;
}
.theme-hamburger__line {
	display: block;
	height: 2.5px;
	width: 20px;
	background: var(--color-foreground);
	border-radius: 1px;
	transition: all 0.3s ease-out;
	transform-origin: center;
}
.theme-hamburger__line--3 { width: 14px; }
body.mobile-menu-open .theme-hamburger__line--1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
body.mobile-menu-open .theme-hamburger__line--2 { opacity: 0; transform: scaleX(0); }
body.mobile-menu-open .theme-hamburger__line--3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }

.site-header__logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 768px) {
	.site-header__logo { position: static; transform: none; flex: 1; justify-content: flex-start; }
}
.site-logo-img {
	height: var(--logo-height) !important;
	width: auto !important;
	display: block;
	border-radius: 50%;
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-highlight) 40%, transparent);
	transition: height 0.3s ease;
}
.site-logo-img--footer { height: calc(var(--logo-height) * 1.2) !important; }
.site-logo-text {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1;
	display: block;
}
.site-header__wordmark { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 1024px) { .site-header__wordmark { display: flex; } }
.site-header__wordmark-main { font-family: var(--font-display); font-size: 19px; color: var(--color-foreground); letter-spacing: -0.02em; }
.site-header__wordmark-sub { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--color-highlight); margin-top: 0.25rem; }

.site-header__nav-center { display: none; align-items: center; justify-content: center; gap: 1.25rem; }
@media (min-width: 768px) { .site-header__nav-center { display: flex; } }
@media (min-width: 1024px) { .site-header__nav-center { gap: 2rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; }
@media (min-width: 1024px) { .theme-nav-list { gap: 2rem; } }
.theme-nav-list .nav-link { color: var(--color-foreground); }
.theme-nav-list .nav-link:hover { color: var(--color-highlight); }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
.theme-icon-btn { padding: 0.5rem; transition: color 0.3s ease; position: relative; }
.theme-icon-btn:hover { color: var(--color-highlight); }
.theme-cart-btn { position: relative; }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	width: 20px; height: 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600;
	background: var(--color-highlight);
	color: var(--color-highlight-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu overlay */
.theme-mobile-menu {
	position: fixed; inset: 0;
	z-index: 55;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.theme-mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
@media (min-width: 768px) { .theme-mobile-menu { display: none; } }
.theme-mobile-menu__overlay {
	position: absolute; inset: 0;
	background-color: color-mix(in srgb, var(--color-background) 98%, transparent);
	backdrop-filter: blur(16px);
}
.theme-mobile-menu__panel {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	height: 100%;
	transform: translateY(-24px);
	transition: transform 0.5s ease;
}
.theme-mobile-menu.is-open .theme-mobile-menu__panel { transform: translateY(0); }
.theme-mobile-menu__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 1.5rem; height: 88px;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	flex-shrink: 0;
}
.theme-mobile-menu__nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.5rem;
	overflow-y: auto;
}
.theme-mobile-menu__nav .theme-nav-list,
.theme-mobile-nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.theme-mobile-menu__nav .theme-nav-list .menu-item,
.theme-mobile-nav-list .menu-item {
	width: 100%;
	text-align: center;
}
.theme-mobile-menu__nav .theme-nav-list .nav-link,
.theme-mobile-nav-list .nav-link {
	display: inline-block;
	font-family: var(--font-condensed);
	font-size: 1.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1.2;
}

#theme-scroll-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: var(--color-primary);
	transform-origin: 0 50%;
	transform: scaleX(0);
	z-index: 70;
	pointer-events: none;
}
body.admin-bar #theme-scroll-progress {
	top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar #theme-scroll-progress {
		top: 46px;
	}
}

/* --------------------------------------------------------------------
   6. HOME: NOT-FRONT-PAGE OFFSET (Section 22.7)
   -------------------------------------------------------------------- */
body.theme-no-hero .site-main {
	padding-top: var(--page-top-offset);
}
body:not(.theme-no-hero) .front-page-main { padding-top: 0; }

/* --------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------- */
.hero-section {
	position: relative;
	width: 100%;
	height: 85vh;
	min-height: 640px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}
.hero-section__media { position: absolute; inset: 0; overflow: hidden; background: var(--color-background); }
.hero-section__video { will-change: transform; }
.hero-section__smoke {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse at 50% 100%, color-mix(in srgb, var(--color-primary) 15%, transparent), transparent 70%),
		linear-gradient(180deg, color-mix(in srgb, var(--color-background) 30%, transparent) 0%, color-mix(in srgb, var(--color-background) 85%, transparent) 100%);
}
.hero-section__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 40%, transparent), color-mix(in srgb, var(--color-background) 70%, transparent));
}
.hero-section__content {
	position: relative; z-index: 10;
	width: 100%;
	padding-bottom: 4rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 2rem;
}
@media (min-width: 768px) {
	.hero-section__content { padding-bottom: 6rem; flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.hero-section__eyebrow {
	display: inline-block;
	font-family: var(--font-condensed);
	font-size: 13px;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--color-highlight);
	margin-bottom: 1.25rem;
}
.hero-section__title {
	color: var(--color-foreground);
	font-size: 3rem;
	line-height: 0.9;
	letter-spacing: -0.02em;
	max-width: 56rem;
}
@media (min-width: 640px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6rem; } }
@media (min-width: 1280px) { .hero-section__title { font-size: 6.5rem; } }
.hero-section__subtitle {
	margin-top: 1.25rem;
	max-width: 28rem;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
}
@media (min-width: 768px) { .hero-section__subtitle { margin-top: 1.75rem; font-size: 1.125rem; } }
.hero-section__cta {
	flex-shrink: 0;
	align-self: flex-start;
	height: 3.5rem;
	padding: 0 2.5rem;
	gap: 0.75rem;
}
@media (min-width: 768px) {
	.hero-section__cta {
		align-self: auto;
	}
}

/* --------------------------------------------------------------------
   8. GENERIC SECTION SPACING
   -------------------------------------------------------------------- */
.theme-section--padded { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-section--padded { padding: 7rem 0; } }

.theme-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; }
.featured-section__heading { font-size: 2.25rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .featured-section__heading { font-size: 3rem; } }

/* --------------------------------------------------------------------
   9. PRODUCT GRID & CARD
   -------------------------------------------------------------------- */
.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid--3up { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--3up { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }

.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 .theme-product-card__add,
.theme-product-card .theme-card-title-link { pointer-events: auto; position: relative; z-index: 3; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-secondary);
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.theme-product-card__image { transition: transform 1.4s var(--transition-smooth), filter 0.8s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); filter: saturate(1.12); }
.theme-product-card__image.is-sold-out { opacity: 0.6; }

.theme-badge {
	position: absolute;
	top: 0.75rem; left: 0.75rem;
	padding: 0.25rem 0.6rem;
	font-family: var(--font-condensed);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	z-index: 3;
}
.theme-badge--new { background: var(--color-highlight); color: var(--color-highlight-foreground); }
.theme-badge--sold { background: var(--color-foreground); color: var(--color-background); }

.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; display: flex; flex-direction: column; }
.theme-product-card__cat { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-highlight); }
.theme-product-card__title { margin-top: 0.375rem; font-size: 19px; line-height: 1.2; color: var(--color-foreground); transition: color 0.3s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-highlight); }
.theme-product-card__meta { margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-product-card__price { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--color-foreground); font-variant-numeric: tabular-nums; }
.theme-product-card__price del { color: var(--color-muted-foreground); font-weight: 400; text-decoration: line-through; margin-right: 0.35rem; }
.theme-product-card__price ins { text-decoration: none; color: var(--color-highlight); }

a.theme-product-card__add {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--font-condensed);
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-highlight);
	transition: color 0.2s ease;
	white-space: nowrap;
}
a.theme-product-card__add:hover { color: var(--color-primary); }
.theme-product-card__add--disabled { color: var(--color-muted-foreground); font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }

/* --------------------------------------------------------------------
   10. TRUST STRIP
   -------------------------------------------------------------------- */
.theme-trust-strip { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-trust-strip__inner { padding: 1.5rem 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
@media (min-width: 768px) { .theme-trust-strip__inner { gap: 1rem 3rem; } }
@media (min-width: 1024px) { .theme-trust-strip__inner { gap: 1rem 4rem; } }
.theme-trust-strip__item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--color-highlight); }
.theme-trust-strip__item svg { color: var(--color-highlight); }
.theme-trust-strip__item span { font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-foreground); white-space: nowrap; }
@media (min-width: 768px) { .theme-trust-strip__item span { font-size: 13px; letter-spacing: 0.24em; } }

/* --------------------------------------------------------------------
   11. SHOP CATEGORIES
   -------------------------------------------------------------------- */
.categories-section__inner {
	padding-top: 5rem;
	padding-bottom: 3rem;
}
@media (min-width: 1024px) {
	.categories-section__inner {
		padding-top: 7rem;
		padding-bottom: 4rem;
	}
}
.categories-section .theme-section-head { flex-direction: column; align-items: flex-start; }
@media (min-width: 768px) { .categories-section .theme-section-head { flex-direction: row; align-items: flex-end; } }
.categories-section__heading { font-size: 2.25rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .categories-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .categories-section__heading { font-size: 3.75rem; } }
.theme-clear-filter-btn {
	font-family: var(--font-condensed);
	font-size: 0.875rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-highlight);
	transition: opacity 0.2s ease;
	align-self: flex-start;
}
.theme-clear-filter-btn:hover { opacity: 0.7; }

.theme-category-tiles { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-category-tiles { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.theme-category-tile {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: var(--color-secondary);
	text-align: left;
	display: block;
	width: 100%;
}
.theme-category-tile.is-active { box-shadow: 0 0 0 2px var(--color-highlight), 0 0 0 6px var(--color-background); }
.theme-category-tile__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 40%, transparent), transparent);
	pointer-events: none;
}
.theme-category-tile__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; }
@media (min-width: 768px) { .theme-category-tile__content { padding: 2rem; } }
.theme-category-tile__label { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-highlight); margin-bottom: 0.5rem; display: block; }
.theme-category-tile__title { font-size: 1.875rem; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .theme-category-tile__title { font-size: 2.25rem; } }
.theme-category-tile__blurb { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-family: var(--font-body); margin-bottom: 1.25rem; max-width: 20rem; }
.theme-category-tile__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-highlight); }
.theme-category-tile:hover .theme-category-tile__cta svg { transform: translateX(4px); transition: transform 0.3s ease; }

/* --------------------------------------------------------------------
   12. PROMO BANNER
   -------------------------------------------------------------------- */
.theme-promo-banner-wrap { padding-bottom: 1rem; }
.theme-promo-banner {
	position: relative;
	display: block;
	width: 100%;
	height: 60vh;
	overflow: hidden;
	text-align: left;
}
@media (min-width: 768px) { .theme-promo-banner { height: 70vh; } }
.theme-promo-banner__gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-background), color-mix(in srgb, var(--color-background) 60%, transparent), transparent); }
.theme-promo-banner__content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 2rem; z-index: 2; pointer-events: none; }
@media (min-width: 768px) { .theme-promo-banner__content { padding: 3.5rem; } }
.theme-promo-banner__content-inner { max-width: 36rem; }
.theme-promo-banner__content .label-eyebrow { display: block; margin-bottom: 1rem; }
.theme-promo-banner__heading { font-size: 2.25rem; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-promo-banner__heading { font-size: 3.75rem; } }
.theme-promo-banner__body { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 1rem; max-width: 28rem; margin-bottom: 1.5rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-promo-banner__body { font-size: 1.125rem; } }
.theme-promo-banner__cta {
	position: absolute; bottom: 2rem; right: 2rem;
	z-index: 3;
	height: 3rem;
	padding: 0 2.25rem;
	transition: transform 0.3s ease;
	pointer-events: none;
}
@media (min-width: 768px) { .theme-promo-banner__cta { bottom: 3.5rem; right: 3.5rem; } }
.theme-promo-banner:hover .theme-promo-banner__cta { transform: translateX(4px); }

/* --------------------------------------------------------------------
   13. SHOP SECTION
   -------------------------------------------------------------------- */
.shop-section { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.shop-section__head { padding: 5rem 0 1rem; text-align: center; }
@media (min-width: 1024px) { .shop-section__head { padding: 7rem 0 1rem; } }
.shop-heading { font-size: 2.25rem; line-height: 1; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.shop-section__body { margin-top: 1.25rem; max-width: 36rem; margin-left: auto; margin-right: auto; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }
.shop-section__body-wrap { padding-bottom: 5rem; }
@media (min-width: 1024px) { .shop-section__body-wrap { padding-bottom: 7rem; } }

.theme-shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .theme-shop-filters { flex-direction: row; gap: 1rem; } }

.theme-filter-dropdown { position: relative; flex: 1; }
@media (min-width: 640px) { .theme-filter-dropdown { max-width: 20rem; } }
.theme-filter-dropdown__btn {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	background: var(--color-background);
	transition: border-color 0.3s ease;
}
.theme-filter-dropdown__btn:hover { border-color: var(--color-highlight); }
.theme-filter-dropdown__label-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.theme-filter-dropdown__label { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-filter-dropdown__value { font-size: 0.875rem; font-weight: 600; color: var(--color-foreground); margin-top: 0.125rem; }
.theme-filter-dropdown__chevron { transition: transform 0.2s ease; }
.theme-filter-dropdown.is-open .theme-filter-dropdown__chevron { transform: rotate(180deg); }
.theme-filter-dropdown__list {
	position: absolute; left: 0; right: 0; top: 100%;
	margin-top: 0.25rem;
	z-index: 30;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
	max-height: 20rem;
	overflow-y: auto;
	display: none;
	animation: fadeIn 0.2s ease;
}
.theme-filter-dropdown.is-open .theme-filter-dropdown__list { display: block; }
.theme-filter-dropdown__option {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0.625rem 1rem;
	text-align: left;
	font-size: 0.875rem;
	color: var(--color-foreground);
	transition: background 0.15s ease;
}
.theme-filter-dropdown__option:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-filter-dropdown__option.is-active { color: var(--color-highlight); font-weight: 600; }
.theme-filter-check { display: none; }
.theme-filter-dropdown__option.is-active .theme-filter-check { display: block; }

.theme-shop-empty-state, #theme-shop-empty-state { padding: 5rem 0; text-align: center; border: 1px dashed var(--color-border); background: var(--color-background); }
.theme-shop-empty-state__title, #theme-shop-empty-state .theme-shop-empty-state__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-shop-empty-state__subtext { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* --------------------------------------------------------------------
   14. TWO-UP BANNERS
   -------------------------------------------------------------------- */
.theme-twoup { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 5rem 0; }
@media (min-width: 768px) { .theme-twoup { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 1024px) { .theme-twoup { padding: 7rem 0; } }
.theme-twoup__item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
@media (min-width: 768px) { .theme-twoup__item { aspect-ratio: 5 / 6; } }
.theme-twoup__gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 40%, transparent), color-mix(in srgb, var(--color-background) 20%, transparent)); }
.theme-twoup__content { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem 2.5rem; z-index: 2; }
.theme-twoup__eyebrow { display: block; font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-highlight); margin-bottom: 0.75rem; }
.theme-twoup__title { font-size: 1.875rem; line-height: 0.95; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-twoup__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-twoup__title { font-size: 3rem; } }

/* --------------------------------------------------------------------
   15. ABOUT / STORY
   -------------------------------------------------------------------- */
.about-section { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 50%, transparent); }
.about-section__inner {
	padding-top: 5rem;
	padding-bottom: 5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.about-section__inner {
		padding-top: 7rem;
		padding-bottom: 7rem;
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
	}
}
.about-section__heading { font-size: 2.25rem; line-height: 1; margin-bottom: 2rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
.about-section__quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--color-highlight); line-height: 1.35; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__copy { display: flex; flex-direction: column; gap: 1.25rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }
@media (min-width: 768px) { .about-section__copy { font-size: 1rem; } }
.about-section__copy-bold { font-weight: 600; color: var(--color-foreground); }

/* --------------------------------------------------------------------
   16. IMPACT / VISION
   -------------------------------------------------------------------- */
.impact-section .container-wide {
	padding-top: 5rem;
	padding-bottom: 5rem;
}
@media (min-width: 1024px) {
	.impact-section .container-wide {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
}
.impact-section__box {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-border);
	padding: 2.5rem;
	text-align: center;
}
@media (min-width: 768px) { .impact-section__box { padding: 3.5rem; } }
@media (min-width: 1024px) { .impact-section__box { padding: 5rem; } }
.impact-section__video { opacity: 0.6; will-change: transform; }
.impact-section__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 75%, transparent); }
.impact-section__smoke {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 50% 100%, color-mix(in srgb, var(--color-primary) 15%, transparent), transparent 70%);
}
.impact-section__content { position: relative; z-index: 2; }
.impact-section__heading { font-size: 1.875rem; line-height: 1.05; max-width: 48rem; margin: 0 auto 1.5rem; }
@media (min-width: 768px) { .impact-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .impact-section__heading { font-size: 3rem; } }
.impact-section__body { max-width: 42rem; margin: 0 auto 2rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }
@media (min-width: 768px) { .impact-section__body { font-size: 1rem; } }

/* --------------------------------------------------------------------
   17. FOUNDER
   -------------------------------------------------------------------- */
.founder-section { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .founder-section { grid-template-columns: 1fr 1fr; } }
.founder-section__media { position: relative; min-height: 60vh; overflow: hidden; }
@media (min-width: 1024px) { .founder-section__media { min-height: 100%; } }
.founder-section__img { object-position: top; }
.founder-section__media-gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 60%, transparent), transparent 60%); }
.founder-section__copy {
	display: flex; flex-direction: column; justify-content: center;
	padding: 5rem 2rem;
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
}
@media (min-width: 768px) { .founder-section__copy { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .founder-section__copy { padding: 5rem 5rem; } }
.founder-section__name { font-size: 2.25rem; line-height: 1; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .founder-section__name { font-size: 3rem; } }
.founder-section__role { font-family: var(--font-condensed); font-size: 0.875rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-highlight); margin-bottom: 2rem; }
.founder-section__body { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }
.founder-section__body-bold { font-weight: 600; color: var(--color-foreground); }
.founder-section__actions { padding-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* --------------------------------------------------------------------
   18. PROMISE
   -------------------------------------------------------------------- */
.theme-promise-wrap { padding: 4rem 0 6rem; }
@media (min-width: 1024px) { .theme-promise-wrap { padding: 6rem 0; } }
.theme-promise { position: relative; overflow: hidden; background: var(--color-card); border: 1px solid var(--color-border); }
.theme-promise__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .theme-promise__grid { grid-template-columns: 7fr 5fr; } }
.theme-promise__copy { padding: 3.5rem 1.5rem; }
@media (min-width: 640px) { .theme-promise__copy { padding: 3.5rem 2.5rem; } }
@media (min-width: 1024px) { .theme-promise__copy { padding: 5rem 4rem; } }
.theme-promise__heading { line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.25rem; font-size: clamp(1.85rem, 4vw, 3.5rem); }
.theme-promise__body { color: var(--color-muted-foreground); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem; max-width: 32rem; }
@media (min-width: 768px) { .theme-promise__body { font-size: 17px; } }
.theme-promise__features { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .theme-promise__features { grid-template-columns: 1fr 1fr; } }
.theme-promise__feature { display: flex; align-items: center; gap: 0.75rem; }
.theme-promise__feature-icon {
	width: 2.75rem; height: 2.75rem;
	display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-highlight) 15%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-highlight) 30%, transparent);
	flex-shrink: 0;
	color: var(--color-highlight);
}
.theme-promise__feature span { font-family: var(--font-condensed); font-size: 0.875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-foreground); line-height: 1.2; }
.theme-promise__media { position: relative; min-height: 340px; overflow: hidden; }
@media (min-width: 1024px) { .theme-promise__media { min-height: 100%; } }

/* --------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }
.faq-section__head { margin-bottom: 3rem; }
@media (min-width: 1024px) { .faq-section__head { margin-bottom: 4rem; } }
.faq-section__heading { font-size: 2.25rem; letter-spacing: -0.02em; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section__heading { font-size: 3.75rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.faq-section__sidebar-inner { position: sticky; top: 8rem; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-section__intro { font-size: 1rem; line-height: 1.6; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-section__intro { font-size: 1.125rem; } }
.faq-section__cta { align-self: flex-start; }
.faq-section__list { border-top: 1px solid var(--color-border); }
.theme-faq-item { border-bottom: 1px solid var(--color-border); }
.theme-faq-item__question {
	width: 100%;
	display: flex; align-items: flex-start; justify-content: space-between;
	gap: 1.5rem; padding: 1.25rem 0;
	text-align: left;
}
.theme-faq-item__question span:first-child { font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--color-foreground); padding-right: 1rem; transition: color 0.2s ease; }
.theme-faq-item__question:hover span:first-child { color: var(--color-highlight); }
.theme-faq-item__icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--color-highlight); }
.theme-faq-item__icon-minus { display: none; }
.theme-faq-item.is-open .theme-faq-item__icon-plus { display: none; }
.theme-faq-item.is-open .theme-faq-item__icon-minus { display: block; }
.theme-faq-item__answer-wrap { height: 0; overflow: hidden; transition: height 0.4s var(--transition-smooth); }
.theme-faq-item.is-open .theme-faq-item__answer-wrap { height: auto; }
.theme-faq-item__answer { padding-bottom: 1.5rem; padding-right: 3rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }

/* --------------------------------------------------------------------
   20. CONTACT SECTION
   -------------------------------------------------------------------- */
.contact-section { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; }
@media (min-width: 1024px) { .contact-section { margin-bottom: -7rem; } }
.contact-section__bg { z-index: 0; }
.contact-section__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 85%, transparent); z-index: 1; }
.contact-section__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding-top: 6rem;
	padding-bottom: 8rem;
}
@media (min-width: 768px) {
	.contact-section__inner {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}
.contact-section__heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.75rem; } }
.contact-section__body { max-width: 32rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 15px; line-height: 1.6; }
@media (min-width: 768px) { .contact-section__body { font-size: 1rem; } }
.contact-section__actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .contact-section__actions { flex-direction: row; } }
.contact-section__action { width: 100%; }
@media (min-width: 640px) { .contact-section__action { flex: 1; max-width: 320px; } }
.contact-section__address { margin-top: 2rem; font-family: var(--font-condensed); font-size: 0.875rem; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* --------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------- */
.site-footer { background: var(--color-card); border-top: 1px solid var(--color-border); color: var(--color-foreground); position: relative; z-index: 1; }
.theme-footer-newsletter { border-bottom: 1px solid var(--color-border); }
.theme-footer-newsletter__inner {
	padding-top: 3rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
@media (min-width: 1024px) {
	.theme-footer-newsletter__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
}
.theme-footer-newsletter__eyebrow { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--color-highlight); margin-bottom: 0.75rem; }
.theme-footer-newsletter__heading { font-size: 1.5rem; line-height: 1.05; }
@media (min-width: 1024px) { .theme-footer-newsletter__heading { font-size: 1.875rem; } }
.theme-newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .theme-newsletter-form { flex-direction: row; } }
@media (min-width: 1024px) { .theme-newsletter-form { width: auto; min-width: 420px; } }
.theme-newsletter-form__input {
	flex: 1;
	background: transparent;
	border: none;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 40%, transparent);
	padding: 0.75rem 0.25rem;
	font-size: 0.875rem;
	color: var(--color-foreground);
}
.theme-newsletter-form__input::placeholder { color: var(--color-muted-foreground); }
.theme-newsletter-form__input:focus { outline: none; border-color: var(--color-highlight); }
.theme-newsletter-form__submit { width: 100%; }
@media (min-width: 640px) { .theme-newsletter-form__submit { width: auto; } }

.theme-footer-main {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
	.theme-footer-main {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}
.theme-footer-main__grid {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
@media (min-width: 768px) {
	.theme-footer-main__grid {
		flex-direction: row;
		gap: 3rem;
		align-items: flex-start;
	}
}
@media (min-width: 1024px) { .theme-footer-main__grid { gap: 5rem; } }
.theme-footer-brand { max-width: 100%; flex-shrink: 0; }
@media (min-width: 768px) { .theme-footer-brand { max-width: 24rem; } }
.theme-footer-brand .site-header__logo { position: static; transform: none; justify-content: flex-start; }
.theme-footer-brand__tagline { font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 0.28em; font-size: 11px; color: var(--color-highlight); margin-top: 1.25rem; }
.theme-footer-brand__desc { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }
.theme-footer-social { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.theme-footer-social__link { padding: 0.5rem; border: 1px solid var(--color-border); transition: all 0.2s ease; }
.theme-footer-social__link:hover { border-color: var(--color-highlight); color: var(--color-highlight); }
.theme-footer-social__link--text { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.2em; }

.theme-footer-columns { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-footer-columns { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.theme-footer-col-title { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-highlight); margin-bottom: 1.25rem; }
.theme-footer-col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-link { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; text-align: left; display: inline-block; }
.theme-footer-link:hover { color: var(--color-foreground); }
.theme-footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-footer-contact-list svg { margin-top: 0.15rem; flex-shrink: 0; color: var(--color-highlight); }
.theme-footer-contact-list a.theme-footer-link { word-break: break-all; }

.theme-footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; width: 100%; }
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; } }
.theme-footer-copyright, .theme-footer-credit { font-family: var(--font-condensed); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-muted-foreground); text-align: center; margin: 0; }
@media (min-width: 640px) { .theme-footer-copyright { text-align: left; } .theme-footer-credit { text-align: right; } }
.theme-footer-credit a { text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-muted-foreground) 60%, transparent); text-underline-offset: 4px; transition: color 0.2s ease; }
.theme-footer-credit a:hover { color: var(--color-highlight); }

/* --------------------------------------------------------------------
   22. CART DRAWER + OVERLAY (Section 12)
   -------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0;
	height: 100%;
	width: 100%;
	max-width: 32rem;
	background: var(--color-background);
	z-index: 91;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.45s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.theme-cart-drawer__title { 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; gap: 0.5rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1rem; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
#theme-cart-drawer .theme-cart-item__image {
	position: relative;
	width: 6rem;
	height: 8rem;
	background: var(--color-secondary);
	overflow: hidden;
	flex-shrink: 0;
	display: block;
	border-radius: 0;
}
#theme-cart-drawer .theme-cart-item__image img,
#theme-cart-drawer .theme-cart-item__image .cover-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	border-radius: 0 !important;
}
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-foreground); transition: opacity 0.2s ease; display: block; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.375rem; font-style: italic; }
.theme-cart-item__price { font-size: 0.875rem; margin-top: 0.375rem; }
.theme-cart-item__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-item__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty button { padding: 0.4rem 0.65rem; transition: background 0.2s ease; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty span { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-item__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s ease; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__pair { padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__pair-title { 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-drawer__pair-item { text-align: left; min-width: 0; }
#theme-cart-drawer .theme-cart-drawer__pair-img {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: var(--color-secondary);
	overflow: hidden;
	margin-bottom: 0.5rem;
	border-radius: 0;
}
#theme-cart-drawer .theme-cart-drawer__pair-img img,
#theme-cart-drawer .theme-cart-drawer__pair-img .cover-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	transition: transform 0.7s ease;
}
#theme-cart-drawer .theme-cart-drawer__pair-item:hover .theme-cart-drawer__pair-img img,
#theme-cart-drawer .theme-cart-drawer__pair-item:hover .theme-cart-drawer__pair-img .cover-img {
	transform: scale(1.05);
}
.theme-cart-drawer__pair-name { display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__pair-price { display: block; font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }

.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); flex-shrink: 0; 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: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.75rem; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (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; }

/* --------------------------------------------------------------------
   23. SEARCH DIALOG
   -------------------------------------------------------------------- */
.theme-search-dialog {
	position: fixed; inset: 0;
	z-index: 80;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.theme-search-dialog.is-open { visibility: visible; opacity: 1; }
.theme-search-dialog__backdrop { position: absolute; inset: 0; background: color-mix(in srgb, #000 40%, transparent); backdrop-filter: blur(4px); border: none; }
.theme-search-dialog__panel {
	position: relative;
	background: var(--color-background);
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
}
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.5rem; z-index: 10; opacity: 0.7; }
@media (min-width: 768px) { .theme-search-dialog__close { right: 2rem; } }
@media (min-width: 1024px) { .theme-search-dialog__close { top: 1.75rem; right: 2.5rem; } }
.theme-search-dialog__close:hover { opacity: 1; }
.theme-search-dialog__inner {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
	.theme-search-dialog__inner {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
}
.theme-search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-dialog__categories-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__category-list { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__category-btn { text-align: left; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); transition: color 0.2s ease; }
.theme-search-dialog__category-btn:hover { color: var(--color-primary); }
@media (min-width: 1024px) { .theme-search-dialog__results-wrap { padding-right: 4rem; } }
.theme-search-dialog__input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); padding-bottom: 0.75rem; }
.theme-search-dialog__input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-search-dialog__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-search-dialog__results { margin-top: 2.5rem; }
.theme-search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__no-results { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-search-dialog__results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.theme-search-dialog__result { text-align: left; display: block; min-width: 0; }
.theme-search-dialog__result-img { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); margin-bottom: 0.75rem; }
.theme-search-dialog__result-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-dialog__result:hover .theme-search-dialog__result-img img { transform: scale(1.05); }
.theme-search-dialog__result-name { display: block; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.4; }
.theme-search-dialog__result-price { display: block; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-top: 0.25rem; }

/* --------------------------------------------------------------------
   24. CONTACT MODAL
   -------------------------------------------------------------------- */
.theme-contact-modal { position: fixed; inset: 0; z-index: 85; visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-contact-modal.is-open { visibility: visible; opacity: 1; }
.theme-contact-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); border: none; }
.theme-contact-modal__panel {
	position: relative;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	width: 100%;
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	padding: 1.5rem;
	transform: scale(0.96);
	transition: transform 0.3s ease;
}
.theme-contact-modal.is-open .theme-contact-modal__panel { transform: scale(1); }
.theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; opacity: 0.7; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__title { font-size: 1.5rem; line-height: 1.2; margin: 0.25rem 0; }
.theme-contact-modal__desc { font-size: 15px; line-height: 1.6; color: var(--color-muted-foreground); margin-top: 0.5rem; }
.theme-contact-modal__info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.5rem; }
.theme-contact-modal__info > div { display: flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal__info a:hover { color: var(--color-foreground); }
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form label { margin-bottom: 0.375rem; }
.theme-contact-form input, .theme-contact-form textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-foreground);
	border-radius: 0.375rem;
	transition: border-color 0.2s ease;
}
.theme-contact-form input::placeholder, .theme-contact-form textarea::placeholder { color: var(--color-muted-foreground); }
.theme-contact-form input:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact-form textarea { resize: none; }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__submit {
	display: inline-flex; align-items: center; gap: 0.5rem;
	height: 2.75rem; padding: 0 1.5rem;
	border-radius: 999px;
	background: var(--color-highlight);
	color: var(--color-highlight-foreground);
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
	transition: opacity 0.2s ease;
}
.theme-contact-form__submit:hover { opacity: 0.85; }
.theme-contact-form__submit.is-loading { opacity: 0.6; pointer-events: none; }
.theme-contact-form__error { margin-top: 0.5rem; font-size: 0.8125rem; color: #e05252; }
.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-modal__success p { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* --------------------------------------------------------------------
   25. SINGLE PRODUCT PAGE (Section 11) — Lovable ProductDetail parity
   -------------------------------------------------------------------- */
.single-product-main {
	padding-bottom: 5rem;
	background: var(--color-background);
}
body.theme-no-hero .site-main.single-product-main {
	padding-top: calc(
		var(--admin-bar-height, 0px) + var(--announcement-height, 0px) + var(--header-height) + 2rem
	);
}
@media (min-width: 1024px) {
	.single-product-main { padding-bottom: 7rem; }
	body.theme-no-hero .site-main.single-product-main {
		padding-top: calc(
			var(--admin-bar-height, 0px) + var(--announcement-height, 0px) + var(--header-height) + 3rem
		);
	}
}

.single-product .theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	min-width: 0;
	align-items: start;
}
@media (min-width: 1024px) {
	.single-product .theme-product-layout {
		grid-template-columns: 1.15fr 1fr;
		gap: 4rem;
	}
}

.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery {
	position: relative;
	background: var(--color-background);
}
@media (min-width: 1024px) {
	.theme-product-gallery {
		position: sticky;
		top: 8rem;
		align-self: start;
	}
}

.theme-product-gallery__row {
	display: flex;
	align-items: stretch;
}

.theme-product-thumbnails {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	max-width: 100%;
}
.theme-product-thumbnails--desktop {
	display: none;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem;
	background: color-mix(in srgb, var(--color-background) 40%, transparent);
}
@media (min-width: 768px) {
	.theme-product-thumbnails--desktop { display: flex; }
	.theme-product-thumbnails--mobile { display: none; }
}
@media (min-width: 1024px) {
	.theme-product-thumbnails--desktop { padding: 1.5rem; }
}
.theme-product-thumbnails--mobile {
	overflow-x: auto;
	padding: 1rem;
	gap: 0.5rem;
}

.theme-product-thumb {
	width: 3.5rem;
	height: 3.5rem;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid transparent;
	opacity: 0.6;
	transition: all 0.2s ease;
	background: transparent;
}
@media (min-width: 1024px) { .theme-product-thumb { width: 4rem; height: 4rem; } }
.theme-product-thumb.is-active,
.theme-product-thumb:hover { opacity: 1; border-color: var(--color-highlight); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.theme-product-main-image-wrap {
	flex: 1;
	min-width: 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
@media (min-width: 768px) {
	.theme-product-main-image-wrap { min-height: 70vh; padding: 2rem; }
}
@media (min-width: 1024px) {
	.theme-product-main-image-wrap { min-height: 78vh; }
}
.theme-product-main-image {
	max-height: 70vh;
	width: 100%;
	object-fit: contain;
}

.theme-product-info { padding: 2.5rem 0; }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 0; } }

.theme-product-breadcrumb {
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 1.5rem;
}
.theme-product-breadcrumb a { transition: color 0.2s ease; }
.theme-product-breadcrumb a:hover { color: var(--color-highlight); }
.theme-product-breadcrumb span { margin: 0 0.5rem; }
.theme-product-breadcrumb__current { color: var(--color-foreground); }

.theme-product-title {
	line-height: 0.98;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
	font-size: 2.25rem;
	font-family: var(--font-body);
	font-weight: 600;
}
@media (min-width: 768px) { .theme-product-title { font-size: 3rem; } }

.theme-product-sku {
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}

.theme-product-rule { height: 1px; background: var(--color-border); margin: 1.75rem 0; }

.theme-product-price-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
}
.theme-product-price-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-product-price {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 600;
	color: var(--color-foreground);
}
.theme-product-price del {
	color: var(--color-muted-foreground);
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 0.5rem;
	font-size: 1rem;
}
.theme-product-price ins { text-decoration: none; color: var(--color-highlight); }
.theme-product-ships-note { margin-top: 0.5rem; font-size: 13px; color: var(--color-muted-foreground); }

.theme-stock-indicator--out {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.375rem 0.875rem;
	background: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	color: var(--color-background);
	font-family: var(--font-condensed);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.theme-section-label,
.theme-attribute-group__label {
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-highlight);
	margin-bottom: 0.75rem;
}

.theme-attribute-group { margin-top: 1.75rem; }
.theme-attribute-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attribute-pill {
	min-width: 64px;
	padding: 0.625rem 1rem;
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid var(--color-border);
	background: transparent;
	transition: all 0.2s ease;
}
.theme-attribute-pill:hover { border-color: var(--color-highlight); }
.theme-attribute-pill.is-active {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}

.theme-attr-select-hidden { display: none !important; }

.single-product .variations.shop_attributes,
.single-product .variations { display: none; }
.single-product .variations tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }

.single-product form.variations_form.cart,
.single-product .theme-product-info form.cart {
	display: block;
	width: 100%;
	max-width: 100%;
}

/* Hide duplicate WC qty/button only inside the variation price shell */
.single-product .single_variation_wrap .woocommerce-variation-add-to-cart {
	display: none !important;
}

.single-product .theme-add-to-cart-button-wrap {
	display: block !important;
	width: 100%;
	margin-top: 2rem;
	clear: both;
	visibility: visible;
}

.single-product .theme-quantity-group {
	display: block;
	width: 100%;
	margin-top: 1.75rem;
	clear: both;
	text-align: left;
}

.single-product .theme-add-to-cart-button-wrap .single_add_to_cart_button {
	display: inline-flex !important;
	visibility: visible;
	opacity: 1;
}

.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	flex-shrink: 0;
	vertical-align: top;
}
.theme-qty-minus,
.theme-qty-plus {
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	font-size: 1.1rem;
	background: transparent;
	border: none;
	color: var(--color-foreground);
	cursor: pointer;
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3.5rem;
	height: 2.75rem;
	text-align: center;
	border: none;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	font-weight: 600;
	font-family: var(--font-body);
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button,
.theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-product-atc,
.single-product .theme-add-to-cart-button-wrap .single_add_to_cart_button {
	width: 100%;
	min-height: 3.5rem;
	height: 3.5rem;
}

.single-product .single_variation_wrap {
	display: none;
}

.theme-product-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	text-align: center;
	margin-top: 2.5rem;
}
.theme-product-feature { display: flex; flex-direction: column; align-items: center; }
.theme-product-feature svg { color: var(--color-highlight); margin-bottom: 0.75rem; }
.theme-product-feature__title {
	font-family: var(--font-condensed);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-foreground);
}
.theme-product-feature__sub {
	font-size: 11px;
	color: var(--color-muted-foreground);
	margin-top: 0.25rem;
	line-height: 1.3;
}

.theme-product-details { margin-top: 3rem; }
.theme-product-details__heading {
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-highlight);
	margin-bottom: 1.25rem;
}
.theme-product-description {
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.55;
	color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	overflow-wrap: break-word;
	word-break: break-word;
	white-space: pre-line;
}
.theme-product-details__content ul,
.single-product .woocommerce-product-details__short-description ul {
	list-style: disc;
	padding-left: 1.25rem;
	margin-top: 1.5rem;
	font-size: 14px;
	color: var(--color-muted-foreground);
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.theme-product-details__content li,
.single-product .woocommerce-product-details__short-description li { line-height: 1.625; }
.theme-product-details__content li::marker,
.single-product .woocommerce-product-details__short-description li::marker { color: var(--color-highlight); }

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.single-product .theme-atc-check[hidden] { display: none; }
.single-product .theme-product-atc.is-added .theme-atc-icon { display: none; }
.single-product .theme-product-atc.is-added .theme-atc-check { display: block; }

/* --------------------------------------------------------------------
   26. ADD TO CART: STYLE OVERRIDE (Section 11.4.1)
   -------------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !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;
	gap: 0.5rem;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !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;
}

/* Card compact button — overrides global rules (scoped after them) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: auto !important;
	padding: 0.25rem 0 !important;
	background: transparent !important;
	color: var(--color-highlight) !important;
	border-radius: 0 !important;
	font-family: var(--font-condensed) !important;
	font-size: 12px !important;
	letter-spacing: 0.24em !important;
	text-transform: uppercase !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background: transparent !important;
	color: var(--color-primary) !important;
	opacity: 1 !important;
}

/* --------------------------------------------------------------------
   27. RELATED PRODUCTS
   -------------------------------------------------------------------- */
.related-products-section { padding: 6rem 0; border-top: 1px solid var(--color-border); margin-top: 3rem; max-width: var(--container-wide-max); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .related-products-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.related-products-section__heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }

/* --------------------------------------------------------------------
   28. SHOP ARCHIVE PAGE (Section 19)
   -------------------------------------------------------------------- */
.archive-product-main { padding-bottom: 5rem; }
.archive-product__head { text-align: center; padding-bottom: 2.5rem; }
.archive-product__body .woocommerce-pagination { margin-top: 3rem; text-align: center; }
.archive-product__body .woocommerce-pagination ul { display: inline-flex; gap: 0.5rem; }
.archive-product__body .woocommerce-pagination a,
.archive-product__body .woocommerce-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 2.25rem; height: 2.25rem;
	border: 1px solid var(--color-border);
	font-size: 0.875rem;
}
.archive-product__body .woocommerce-pagination .current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* --------------------------------------------------------------------
   29. GENERIC PAGE / 404
   -------------------------------------------------------------------- */
.theme-page-main, .theme-generic-main { padding-bottom: 4rem; }
.theme-page-container .page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }
.entry-content { font-size: 1rem; line-height: 1.7; color: var(--color-muted-foreground); }
.entry-content a { color: var(--color-highlight); text-decoration: underline; }

.theme-404-main { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 6rem 0; width: 100%; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-highlight); text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------------------------
   30. WOOCOMMERCE GLOBAL FORM / NOTICE STYLING (Section 14)
   -------------------------------------------------------------------- */
.woocommerce-error, .woocommerce-message, .woocommerce-info {
	list-style: none;
	padding: 1rem 1.5rem;
	margin: 0 0 1.5rem;
	background: var(--color-secondary);
	border-left: 3px solid var(--color-highlight);
	font-size: 0.875rem;
	color: var(--color-foreground);
}
.woocommerce-error { border-left-color: #e05252; }

/* --------------------------------------------------------------------
   31. CHECKOUT BLOCK (Section 13) — native WooCommerce Checkout Block
   -------------------------------------------------------------------- */
body.woocommerce-checkout .site-main {
	padding-bottom: 4rem;
}
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout {
	display: block;
	font-family: var(--font-body);
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
body.woocommerce-checkout .wc-block-checkout__sidebar-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--checkout-gap);
	align-items: start;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__sidebar-layout {
		grid-template-columns: 1fr 1fr;
	}
}
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: var(--color-surface);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	color: var(--color-foreground);
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
	color: var(--color-muted-foreground);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius);
	font-family: var(--font-condensed);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background-color: var(--color-highlight) !important;
	color: var(--color-highlight-foreground) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.375rem;
	grid-column: 1 / -1;
}
body.woocommerce-checkout .wc-block-cart-items {
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border: 1px solid var(--color-background);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity span {
	color: var(--color-primary-foreground) !important;
}
body.woocommerce-checkout .page-title {
	max-width: var(--container-wide-max);
	margin: 0 auto 1.5rem;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding: 0 2.5rem; } }

/* Classic shortcode selectors kept for compatibility (not used by default) */
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	background: var(--color-background);
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
}

/* --------------------------------------------------------------------
   32. CART / ACCOUNT / THANK-YOU WIDTH PARITY (Section 13.7)
   -------------------------------------------------------------------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-bottom: 4rem;
}
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content {
	max-width: var(--container-wide-max);
	margin: 0 auto;
}

/* --------------------------------------------------------------------
   33. THANK YOU PAGE (Section 22.8)
   -------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-bottom: 4rem; }
.theme-thankyou { max-width: var(--container-wide-max); margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	list-style: none;
	padding: 1.5rem;
	margin: 1.5rem 0;
	background: var(--color-secondary);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	font-size: 0.875rem;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address {
	min-width: 0;
	max-width: 480px;
	overflow-wrap: break-word;
	border: 1px solid var(--color-border);
	padding: 1rem;
	font-size: 0.875rem;
}
