/* ==========================================================================
   Buddy Reds Smokehouse — theme.css
   ========================================================================== */

:root {
	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--color-background: #f7f5f2;
	--color-foreground: #1e1e1e;
	--color-primary: #711c1c;
	--color-accent: #e0722b;
	--color-button-text: #f7f6f4;
	--color-primary-foreground: #f7f6f4;
	--color-charcoal: #141414;
	--color-charcoal-card: #1f1f1f;
	--color-card: #ebebeb;
	--color-muted: #d9d9d9;
	--color-muted-foreground: #525252;
	--color-border: #d1d1d1;
	--color-nopal: #711c1c;
	--color-marigold: #f0a333;
	--color-teal: #7a7a7a;
	--color-lilac: #ba3d21;
	--color-button-text: #f7f6f4;
	--logo-height: 56px;
	--header-height: 88px;
	--section-padding: 5rem;
	--card-radius: 1rem;
	--btn-radius: 9999px;
	--btn-height: 48px;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.75rem;
	--checkout-gap: 2rem;

	--shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
	--shadow-elevated: 0 8px 40px -8px rgba(0, 0, 0, 0.22);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------- RESET / BASE --------------------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.15;
}
.font-display { font-family: var(--font-display); font-weight: inherit; font-size: inherit; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
dl, dt, dd { margin: 0; padding: 0; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }

img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.theme-product-main-img):not(.merch-hero-img):not(.merch-card-img):not(.footer-logo-img):not(.about-media-img):not(.team-photo) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.hero-bg-img,
.theme-product-card-img,
.merch-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 84rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.text-center { text-align: center; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ---------------------------------- REVEAL / ANIMATIONS --------------------- */
@media (prefers-reduced-motion: no-preference) {
	.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth); }
	.reveal-item.fade-in-item { transform: translateY(16px); }
	.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { opacity: 1; transform: none; }
}
body.is-customizer .reveal-item,
body.is-customizer .reveal-item.fade-in-item {
	opacity: 1 !important;
	transform: none !important;
}

@keyframes brs-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes brs-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes brs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes brs-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes brs-smoke-slow { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.18; } 50% { transform: translateY(-28px) translateX(14px) scale(1.06); opacity: 0.06; } }
@keyframes brs-smoke-medium { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.12; } 50% { transform: translateY(-20px) translateX(-10px) scale(1.05); opacity: 0.04; } }
@keyframes brs-smoke-fast { 0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.18; } 50% { transform: translateY(-34px) translateX(8px) scale(1.08); opacity: 0.06; } }
@keyframes brs-ember-pulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }

.animate-fade-in { animation: brs-fade-in 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: brs-slide-up 0.6s var(--transition-smooth) forwards; }
.animate-float { animation: brs-float 5s ease-in-out infinite; }
.animate-smoke-slow { animation: brs-smoke-slow 22s ease-in-out infinite; }
.animate-smoke-medium { animation: brs-smoke-medium 16s ease-in-out infinite; }
.animate-smoke-fast { animation: brs-smoke-fast 18s ease-in-out infinite; }

.smoke-overlay { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.smoke-blob { position: absolute; border-radius: 9999px; filter: blur(64px); background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); }
.smoke-blob--1 { bottom: -15%; left: -10%; width: 55%; height: 55%; opacity: 0.2; }
.smoke-blob--2 { bottom: -10%; left: 25%; width: 45%; height: 45%; opacity: 0.15; }
.smoke-blob--3 { bottom: -20%; right: -10%; width: 60%; height: 60%; opacity: 0.2; }

/* ---------------------------------- BUTTONS --------------------------------- */
.btn-hero-primary, .btn-hero-outline, .btn-hero-outline-light, .btn-hero-inverse, .btn-outline-nopal, .btn-outline-accent, .theme-inline-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: all 0.25s ease;
	cursor: pointer;
}
.btn-hero-primary, .btn-hero-outline, .btn-hero-outline-light, .btn-hero-inverse, .btn-outline-nopal, .btn-outline-accent {
	padding: 1rem 2.5rem;
}
.btn-hero-primary { background: var(--color-accent); color: var(--color-background); }
.btn-hero-primary:hover { background: color-mix(in srgb, var(--color-accent) 90%, transparent); }
.btn-hero-outline { border: 1px solid rgba(247,246,244,0.8); color: var(--color-background); }
.btn-hero-outline:hover { background: rgba(247,246,244,0.15); border-color: var(--color-background); }
.btn-hero-outline-light { border: 1px solid rgba(247,246,244,0.7); color: var(--color-background); }
.btn-hero-outline-light:hover { border-color: var(--color-background); background: rgba(247,246,244,0.1); }
.btn-hero-inverse { background: var(--color-background); color: var(--color-foreground); border: 1px solid var(--color-foreground); }
.btn-hero-inverse:hover { background: var(--color-foreground); color: var(--color-background); }
.btn-outline-nopal { border: 1px solid var(--color-nopal); color: var(--color-nopal); background: transparent; }
.btn-outline-nopal:hover { background: var(--color-nopal); color: var(--color-background); }
.btn-outline-accent { border: 1px solid var(--color-accent); color: var(--color-accent); background: transparent; padding: 0.9rem 2rem; }
.btn-outline-accent:hover { background: var(--color-accent); color: var(--color-background); }
.theme-inline-link { display: inline; padding: 0; text-transform: none; letter-spacing: normal; font-size: inherit; font-weight: inherit; text-decoration: underline; text-underline-offset: 4px; }

/* ---------------------------------- ANNOUNCEMENT BAR ------------------------ */
.theme-announce-bar { position: relative; background: var(--color-nopal); color: var(--color-background); overflow: hidden; }
.theme-announce-track { display: flex; padding: 0.5rem 0; animation: brs-marquee 60s linear infinite; white-space: nowrap; width: max-content; }
.theme-announce-item { display: inline-flex; align-items: center; gap: 1rem; padding: 0 1.5rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.theme-announce-icon { color: var(--color-accent); flex-shrink: 0; }
.theme-announce-close { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); opacity: 0.7; padding: 0.25rem; }
.theme-announce-close:hover { opacity: 1; }

/* ---------------------------------- HEADER --------------------------------- */
.site-header {
	position: sticky;
	top: var(--wp-admin-bar-height, 0px);
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--color-background);
	border-top: 2px solid color-mix(in srgb, var(--color-nopal) 60%, transparent);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.is-solid { background: color-mix(in srgb, var(--color-background) 95%, transparent); border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent); backdrop-filter: blur(6px); }
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 80px; }
@media (min-width: 768px) { .site-nav { height: 96px; } }
.theme-nav-list { display: flex; align-items: center; gap: 2.5rem; margin: 0; padding: 0; list-style: none; flex: 1; }
.theme-nav-list--right { justify-content: flex-end; }
.site-nav__left, .site-nav__right { flex: 1; display: none; }
@media (min-width: 1024px) { .site-nav__left, .theme-nav-list--right-wrap { display: flex; } }
.site-nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex: 1; }
.theme-nav-link { position: relative; font-size: 13px; color: var(--color-accent); }
.theme-nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--transition-smooth); }
.theme-nav-link:hover::after { transform: scaleX(1); }

.site-logo { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; }
@media (min-width: 768px) {
	.site-logo-img { height: calc(var(--logo-height) + 1rem) !important; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; }

.theme-mobile-menu-toggle { display: inline-flex; padding: 0.5rem; margin-left: -0.5rem; transition: opacity 0.2s ease; }
.theme-mobile-menu-toggle:hover { opacity: 0.6; }
@media (min-width: 1024px) { .theme-mobile-menu-toggle { display: none; } }
.theme-mobile-menu-toggle .icon-close { display: none; }
.theme-mobile-menu-toggle.is-open .icon-menu { display: none; }
.theme-mobile-menu-toggle.is-open .icon-close { display: block; }

.theme-cart-button { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); font-size: 13px; font-weight: 500; line-height: 1; transition: all 0.3s ease; }
.theme-cart-count { display: inline-block; min-width: 1ch; color: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; }
.theme-cart-button:hover { border-color: var(--color-accent); color: var(--color-accent); transform: scale(1.1); }

/* Mobile nav + fixed header — desktop rules above/below stay unchanged */
@media (max-width: 1023px) {
	.site-header {
		position: fixed;
		width: 100%;
	}

	body.theme-no-hero {
		padding-top: calc(80px + var(--wp-admin-bar-height, 0px));
	}

	.site-header.mobile-nav-open {
		background: color-mix(in srgb, var(--color-background) 98%, transparent);
		border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent);
		backdrop-filter: blur(8px);
	}

	.theme-mobile-menu-backdrop {
		position: fixed;
		inset: 0;
		top: calc(80px + var(--wp-admin-bar-height, 0px));
		z-index: 40;
		background: rgba(30, 30, 30, 0.35);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	body.mobile-menu-open .theme-mobile-menu-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.theme-mobile-menu {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: calc(80px + var(--wp-admin-bar-height, 0px));
		z-index: 45;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		background: color-mix(in srgb, var(--color-background) 98%, transparent);
		backdrop-filter: blur(10px);
		border-bottom: 1px solid transparent;
		box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.28);
		transition:
			max-height 0.45s var(--transition-smooth),
			opacity 0.35s var(--transition-smooth),
			border-color 0.35s var(--transition-smooth);
	}

	.theme-mobile-menu.is-open {
		max-height: min(32rem, calc(100vh - 80px - var(--wp-admin-bar-height, 0px)));
		opacity: 1;
		overflow-y: auto;
		border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent);
	}

	.theme-mobile-menu .container-wide {
		padding-top: 1rem;
		padding-bottom: 1.25rem;
	}

	.theme-mobile-menu-links {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.theme-mobile-menu-links a {
		display: block;
		padding: 0.875rem 0;
		font-size: 0.875rem;
		line-height: 1.4;
		letter-spacing: normal;
		text-transform: none;
		color: var(--color-foreground);
		border-bottom: 1px solid color-mix(in srgb, var(--color-border) 45%, transparent);
		opacity: 0;
		transform: translateY(-8px);
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.35s var(--transition-smooth),
			transform 0.35s var(--transition-smooth),
			color 0.2s ease;
	}

	.theme-mobile-menu-links a:last-child {
		border-bottom: none;
	}

	.theme-mobile-menu.is-open .theme-mobile-menu-links a {
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
		pointer-events: auto;
	}

	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(1) { transition-delay: 0.04s; }
	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(2) { transition-delay: 0.08s; }
	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(3) { transition-delay: 0.12s; }
	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(4) { transition-delay: 0.16s; }
	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(5) { transition-delay: 0.2s; }
	.theme-mobile-menu.is-open .theme-mobile-menu-links a:nth-child(6) { transition-delay: 0.24s; }

	.theme-mobile-menu-links a:hover,
	.theme-mobile-menu-links a:focus-visible {
		color: var(--color-muted-foreground);
	}

	.theme-mobile-menu-footer {
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid color-mix(in srgb, var(--color-border) 45%, transparent);
	}

	.theme-mobile-menu-cart {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.625rem;
		width: 100%;
		padding: 0.875rem 1rem;
		border-radius: 9999px;
		border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
		font-size: 0.875rem;
		font-weight: 500;
		transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
	}

	.theme-mobile-menu-cart:hover {
		border-color: var(--color-accent);
		color: var(--color-accent);
	}

	.theme-mobile-menu-cart-icon {
		width: 1rem;
		height: 1rem;
	}

	.theme-mobile-menu-cart-icon svg {
		width: 1rem;
		height: 1rem;
		display: block;
	}

	.theme-mobile-menu-cart-count {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 1.5rem;
		height: 1.5rem;
		padding: 0 0.35rem;
		border-radius: 9999px;
		background: var(--color-accent);
		color: var(--color-charcoal);
		font-size: 0.75rem;
		font-weight: 700;
		line-height: 1;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}
}

@media (min-width: 1024px) {
	.theme-mobile-menu,
	.theme-mobile-menu-backdrop {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	@media (max-width: 1023px) {
		.theme-mobile-menu,
		.theme-mobile-menu-backdrop,
		.theme-mobile-menu-links a {
			transition: none;
			transform: none;
			opacity: 1;
		}
	}
}

/* ---------------------------------- SECTION HEADINGS ------------------------ */
.section-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-nopal); margin-bottom: 0.75rem; font-weight: 500; }
.section-kicker--light { color: var(--color-accent); font-weight: 600; }
.section-heading { font-weight: 400; letter-spacing: -0.02em; }
.category-heading, .featured-heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .category-heading, .featured-heading { font-size: 2.25rem; } }
.featured-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .featured-heading { font-size: 3rem; } }

/* ---------------------------------- HERO ------------------------------------ */
.hero-section { position: relative; background: var(--color-background); }
.hero-media { position: relative; width: 100%; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); pointer-events: none; }
.hero-scrim-bottom { position: absolute; inset-inline: 0; bottom: 0; height: 33%; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); pointer-events: none; }
.hero-content-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 64rem; padding: 0 0.5rem; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { display: block; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-accent); font-weight: 600; margin-bottom: 1.5rem; }
.hero-title { font-style: italic; color: var(--color-background); line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(2.5rem, 8vw, 6.5rem); font-weight: 400; }
.hero-subtitle { margin-top: 1.5rem; max-width: 42rem; color: rgba(247,246,244,0.85); font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* ---------------------------------- CATEGORY STRIP -------------------------- */
.category-strip-section { padding: 4rem 0; }
@media (min-width: 768px) { .category-strip-section { padding: 5rem 0; } }
.section-heading-wrap { margin-bottom: 2.5rem; }
.featured-section { padding: 4rem 0; }
@media (min-width: 768px) { .featured-section { padding: 6rem 0; } }
.featured-section .section-heading-wrap { margin-bottom: 3.5rem; }
.category-tiles-wrap { position: relative; }
.category-tiles { display: flex; overflow-x: auto; gap: 1.5rem; padding: 1.5rem 0 0.5rem; justify-content: flex-start; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
@media (min-width: 768px) { .category-tiles { justify-content: center; gap: 2.5rem; padding-bottom: 1rem; scroll-snap-type: none; } }
.category-tiles::-webkit-scrollbar { display: none; }
.category-tile { scroll-snap-align: start; }
.category-tiles-scroll-hint { display: none; }
@media (max-width: 767px) {
	.category-tiles-wrap::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 2rem;
		width: 3.5rem;
		background: linear-gradient(to left, var(--color-background), transparent);
		pointer-events: none;
		opacity: 1;
		transition: opacity 0.3s ease;
	}
	.category-tiles-wrap.is-scroll-end::after,
	.category-tiles-wrap.is-no-overflow::after { opacity: 0; }
	.category-tiles-scroll-hint {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.35rem;
		margin: 0;
		padding-top: 0.25rem;
		font-size: 11px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--color-muted-foreground);
		opacity: 1;
		visibility: visible;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.category-tiles-scroll-hint__icon { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
	.category-tiles-wrap.is-scroll-end .category-tiles-scroll-hint,
	.category-tiles-wrap.is-no-overflow .category-tiles-scroll-hint { opacity: 0; visibility: hidden; }
}
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.category-tile__icon-wrap { width: 6rem; height: 6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; color: var(--color-foreground); }
@media (min-width: 640px) { .category-tile__icon-wrap { width: 7rem; height: 7rem; } }
@media (min-width: 768px) { .category-tile__icon-wrap { width: 10rem; height: 10rem; } }
.category-tile:hover .category-tile__icon-wrap { transform: scale(1.05); }
.category-tile__icon { width: 2rem; height: 2rem; }
@media (min-width: 768px) { .category-tile__icon { width: 2.75rem; height: 2.75rem; } }
.category-tile__icon-wrap--marigold { background: color-mix(in srgb, var(--color-marigold) 80%, transparent); }
.category-tile__icon-wrap--nopal { background: var(--color-nopal); color: var(--color-background); }
.category-tile__icon-wrap--lilac { background: color-mix(in srgb, var(--color-lilac) 80%, transparent); color: var(--color-background); }
.category-tile__icon-wrap--accent { background: color-mix(in srgb, var(--color-accent) 80%, transparent); color: var(--color-background); }
.category-tile__icon-wrap--teal { background: color-mix(in srgb, var(--color-teal) 70%, transparent); color: var(--color-background); }
.category-tile__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .category-tile__label { font-size: 14px; } }

/* ---------------------------------- PRODUCT GRID / CARDS -------------------- */
.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid--featured { gap: 3rem; } }

.theme-product-card-wrap { display: flex; }
.theme-product-card { position: relative; display: flex; flex-direction: column; width: 100%; }
.theme-card-image-link { position: absolute; inset: 0; z-index: 1; }
.theme-product-card .add_to_cart_button,
.theme-product-card .theme-badge { pointer-events: auto; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; border-radius: var(--card-radius); overflow: hidden; background: var(--color-card); margin-bottom: 1.25rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.5s ease, transform 0.5s ease; }
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: var(--shadow-elevated); transform: translateY(-6px) rotate(-0.4deg); }
.theme-product-card__image-wrapper::after {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(to top right, transparent, transparent, color-mix(in srgb, var(--color-accent) 20%, transparent));
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}
.theme-product-card:hover .theme-product-card__image-wrapper::after { opacity: 1; }
.theme-product-card__image-wrapper img.theme-product-card-img,
.theme-product-card__image-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.1); }

.theme-badge { position: absolute; top: 1rem; left: 1rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 6px; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
.theme-badge--soldout { top: 1rem; right: 1rem; left: auto; background: var(--color-foreground); color: var(--color-background); }

.theme-card-add-btn.add_to_cart_button.ajax_add_to_cart {
	position: absolute; z-index: 3; left: 1rem; right: 1rem; bottom: 1rem;
	min-height: unset !important; height: auto !important;
	padding: 0.75rem 1rem !important;
	border-radius: var(--btn-radius) !important;
	background-color: var(--color-teal) !important;
	color: var(--color-button-text) !important;
	border: 1px solid var(--color-teal) !important;
	font-size: 11px !important; letter-spacing: 0.22em !important; text-transform: uppercase !important; font-weight: 600 !important;
	opacity: 0; transform: translateY(0.75rem);
	transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.2s ease, color 0.2s ease !important;
}
.theme-product-card:hover .theme-card-add-btn.add_to_cart_button.ajax_add_to_cart { opacity: 1; transform: translateY(0); }
.theme-card-add-btn.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-background) !important; color: var(--color-teal) !important; }

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.theme-product-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); }
.theme-product-card__cat a { color: inherit; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { font-size: inherit; }

.featured-cta-wrap { margin-top: 3.5rem; }
.shop-showmore-wrap { margin-top: 3rem; }
.shop-showmore-wrap #shop-showmore-btn[hidden],
.theme-product-card-wrap[hidden],
.shop-empty-state[hidden] { display: none !important; }

/* ---------------------------------- ABOUT SECTION --------------------------- */
.about-section { position: relative; background: var(--color-charcoal); overflow: hidden; padding-bottom: 6rem; }
@media (min-width: 768px) { .about-section { padding-bottom: 8rem; } }
.about-media-full { margin-bottom: 4rem; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: 55vh; min-height: 360px; overflow: hidden; }
@media (min-width: 768px) { .about-media-full { height: 75vh; } }
.about-media-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); margin-top: -1px; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
	.about-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
	.about-hook { grid-column: span 7 / span 7; min-width: 0; }
	.about-detail { grid-column: span 5 / span 5; min-width: 0; }
}
.eyebrow-row { display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.eyebrow-line { display: inline-block; height: 1px; width: 3rem; background: var(--color-accent); }
.eyebrow-line--light { background: var(--color-accent); }
.eyebrow-text { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-accent); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; }
.eyebrow-dot { display: inline-block; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--color-accent); animation: brs-ember-pulse 2.4s ease-in-out infinite; }
.about-section .section-heading { font-size: 2.25rem; line-height: 1.1; color: var(--color-background); }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 3.75rem; } }
.about-heading em { font-style: italic; color: var(--color-accent); }
.about-card { background: var(--color-charcoal-card); border: 1px solid rgba(247,246,244,0.1); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .about-card { padding: 2.5rem; } }
.about-body { color: rgba(247,246,244,0.7); font-size: 1.125rem; line-height: 1.7; }
.about-quote-block { padding: 1.5rem 0; border-top: 1px solid rgba(247,246,244,0.1); border-bottom: 1px solid rgba(247,246,244,0.1); }
.about-quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.2; color: var(--color-accent); margin-bottom: 0.5rem; }
@media (min-width: 768px) { .about-quote { font-size: 1.875rem; } }
.about-quote-label { font-size: 11px; font-weight: 600; color: rgba(247,246,244,0.5); text-transform: uppercase; letter-spacing: 0.22em; }
.about-cta { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 2rem; border: 2px solid var(--color-accent); color: var(--color-accent); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; transition: background 0.2s ease, color 0.2s ease; }
.about-cta:hover { background: var(--color-accent); color: var(--color-charcoal); }
.about-cta svg { transition: transform 0.2s ease; }
.about-cta:hover svg { transform: translateX(0.5rem); }

/* ---------------------------------- TEAM ------------------------------------ */
.team-section { padding: 5rem 0 7rem; }
.team-intro-wrap, .team-sub-heading-wrap { max-width: 48rem; margin: 0 auto 3.5rem; }
.team-heading { font-size: 2.25rem; line-height: 1.05; margin: 0.5rem 0 1.5rem; }
@media (min-width: 768px) { .team-heading { font-size: 3rem; } }
.team-intro-text { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.team-card { background: var(--color-card); border-radius: 1rem; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-foreground) 5%, transparent); transition: transform 0.5s ease, box-shadow 0.5s ease; }
.team-card:hover { transform: translateY(-0.5rem); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.3); }
.team-photo-wrap { aspect-ratio: 4/5; background: var(--color-muted); position: relative; overflow: hidden; }
.team-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.team-card:hover .team-photo { transform: scale(1.1); }
.team-initials-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--color-nopal); color: var(--color-background); }
.team-initials-fallback span { font-family: var(--font-display); font-size: 3.5rem; animation: brs-float 5s ease-in-out infinite; }
.team-card-body { padding: 1.5rem; text-align: center; }
.team-name { font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.25rem; }
.team-role { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-nopal); font-weight: 600; }
.team-quote-wrap { margin-top: 3.5rem; max-width: 48rem; margin-inline: auto; text-align: center; }
@media (min-width: 768px) { .team-quote-wrap { margin-top: 5rem; } }
.team-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.375; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .team-quote { font-size: 1.5rem; } }
.team-outro-wrap { margin-top: 3.5rem; max-width: 42rem; margin-inline: auto; text-align: center; }
@media (min-width: 768px) { .team-outro-wrap { margin-top: 4.5rem; } }
.team-outro { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.625; }
.team-outro-link { color: var(--color-nopal); text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s ease; }
.team-outro-link:hover { color: var(--color-foreground); }

/* ---------------------------------- SERVICES --------------------------------- */
.services-section { position: relative; overflow: hidden; }
.services-bg-img { transform: scale(1.1); }
.services-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.85); pointer-events: none; }
.services-content { position: relative; z-index: 1; padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .services-content { padding-top: 7rem; padding-bottom: 7rem; } }
.services-heading-wrap { max-width: 48rem; margin: 0 auto 4rem; }
.services-heading { color: var(--color-background); font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 3.75rem; } }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 84rem; margin: 0 auto; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 2rem; } }
.service-card { display: flex; flex-direction: column; text-align: center; background: var(--color-background); border-radius: 1rem; padding: 2rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 5%, transparent); transition: all 0.5s ease; }
.service-card:hover { transform: translateY(-0.5rem); box-shadow: 0 18px 40px -18px rgba(0,0,0,0.25); border-color: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.service-icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: transform 0.5s ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-icon-svg { width: 2.5rem; height: 2.5rem; }
.service-icon--accent { color: var(--color-accent); }
.service-icon--nopal { color: var(--color-nopal); }
.service-icon--lilac { color: var(--color-lilac); }
.service-icon--marigold { color: var(--color-marigold); }
.service-title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--color-foreground); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.service-cta { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-nopal); transition: color 0.2s ease; }
.service-cta:hover { color: var(--color-foreground); }

/* ---------------------------------- SHOP ------------------------------------- */
.shop-section { padding: 4rem 0; }
@media (min-width: 768px) { .shop-section { padding: 6rem 0; } }
.shop-heading-wrap { max-width: 48rem; margin: 0 auto 3rem; }
.shop-heading { font-size: 1.875rem; margin: 0.5rem 0 1.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-note { display: inline-block; margin: 0 auto 2rem; border: 1px solid var(--color-border); background: var(--color-card); border-radius: 0.75rem; padding: 1rem 1.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--color-border); border-radius: 0; padding: 0.5rem 0 0.5rem 1.75rem; font-size: 0.9rem; }
.shop-search-input:focus { outline: none; border-color: var(--color-foreground); }
.shop-category-pills { display: flex; overflow-x: auto; gap: 0.5rem; margin-bottom: 1rem; justify-content: center; flex-wrap: wrap; }
.theme-cat-filter { flex-shrink: 0; padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 9999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground); transition: all 0.3s ease; }
.theme-cat-filter:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-cat-filter.is-active { background: var(--color-nopal); color: var(--color-background); border-color: var(--color-nopal); }
.shop-price-filter-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.3s ease; }
.shop-price-toggle:hover { color: var(--color-foreground); }
.shop-price-toggle svg { transition: transform 0.3s ease; }
.shop-price-toggle.is-open svg { transform: rotate(180deg); }
.shop-price-panel { width: 100%; max-width: 24rem; margin: 0 auto; padding: 0.5rem 0; }
.shop-price-panel[hidden] { display: none !important; }
.price-range-wrapper { position: relative; height: 1.5rem; margin-bottom: 0.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 2px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); box-shadow: 0 1px 4px rgba(0,0,0,0.3); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); }
.shop-empty-state p { color: var(--color-muted-foreground); padding: 5rem 0; }
.shop-footnote { margin-top: 2.5rem; max-width: 42rem; margin-inline: auto; font-size: 0.75rem; color: var(--color-muted-foreground); }
.shop-footnote p { margin-bottom: 0.5rem; }

/* ---------------------------------- PAY APPS ---------------------------------- */
.pay-section { position: relative; background: var(--color-charcoal); padding: 5rem 0 7rem; overflow: hidden; }
.pay-heading-wrap { max-width: 42rem; margin: 0 auto 4rem; }
.pay-heading { color: var(--color-background); font-size: 2.25rem; line-height: 1.05; margin: 0.5rem 0 1.25rem; }
@media (min-width: 768px) { .pay-heading { font-size: 3rem; } }
.pay-subtitle { color: rgba(247,246,244,0.75); font-size: 1rem; }
@media (min-width: 768px) { .pay-subtitle { font-size: 1.125rem; } }
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px) { .pay-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.pay-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--color-charcoal-card); border: 1px solid rgba(247,246,244,0.1); border-radius: 1rem; padding: 1.5rem; transition: all 0.3s ease; }
.pay-card:hover { transform: translateY(-0.25rem); border-color: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.pay-icon { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); margin-bottom: 1rem; }
.pay-icon-svg { width: 1.25rem; height: 1.25rem; }
.pay-name { font-size: 1.25rem; color: var(--color-background); margin-bottom: 0.25rem; }
.pay-handle { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,246,244,0.5); font-weight: 600; margin-bottom: 1.25rem; }
.pay-qr { background: #fff; padding: 0.75rem; border-radius: 0.75rem; border: 1px solid rgba(247,246,244,0.1); margin-bottom: 1.25rem; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.pay-qr svg { width: 100%; height: 100%; }
.pay-link { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); transition: color 0.2s ease; }
.pay-link:hover { color: color-mix(in srgb, var(--color-accent) 80%, transparent); }
.pay-footnote { text-align: center; font-size: 0.75rem; color: rgba(247,246,244,0.5); margin-top: 2.5rem; max-width: 36rem; margin-inline: auto; }

/* ---------------------------------- PORTFOLIO ---------------------------------- */
.portfolio-section { padding: 5rem 0 7rem; }
.portfolio-heading-wrap { max-width: 42rem; margin: 0 auto 4rem; }
.portfolio-heading { font-size: 2.25rem; line-height: 1.05; margin: 0.5rem 0 1.25rem; }
@media (min-width: 768px) { .portfolio-heading { font-size: 3rem; } }
.portfolio-body { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
@media (min-width: 768px) { .portfolio-body { font-size: 1.125rem; } }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; } }
.portfolio-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 0.75rem; background: var(--color-card); border: 1px solid var(--color-border); cursor: pointer; }
.portfolio-img { transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }
.portfolio-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,30,30,0.7), rgba(30,30,30,0.1) 60%, transparent); }
.portfolio-hover-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; background: rgba(30,30,30,0); opacity: 0; transition: opacity 0.3s ease, background-color 0.3s ease; }
.portfolio-item:hover .portfolio-hover-content { opacity: 1; background: rgba(30,30,30,0.6); }
.portfolio-play-icon { width: 2rem; height: 2rem; color: var(--color-background); margin-bottom: 0.5rem; }
.portfolio-hover-label { color: var(--color-background); font-size: 1.125rem; line-height: 1.2; font-family: var(--font-display); }
.portfolio-hover-tag { color: rgba(247,246,244,0.7); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 0.25rem; }
.portfolio-static-caption { position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; transition: opacity 0.3s ease; }
.portfolio-item:hover .portfolio-static-caption { opacity: 0; }
.portfolio-tag { color: rgba(247,246,244,0.8); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; }
.portfolio-label { color: var(--color-background); font-family: var(--font-display); font-size: 1rem; line-height: 1.2; }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-section { position: relative; background: var(--color-charcoal); padding: 5rem 0 7rem; overflow: hidden; }
@media (max-width: 1023px) {
	.faq-section > .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
	.faq-item-question { gap: 1rem; }
	.faq-item-answer p { padding-right: 0; }
}
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-layout { grid-template-columns: 4fr 8fr; gap: 4rem; } }
.faq-sidebar-inner { position: static; }
@media (min-width: 1024px) { .faq-sidebar-inner { position: sticky; top: 7rem; } }
.faq-heading { color: var(--color-background); font-size: 1.875rem; line-height: 1.05; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.faq-subtitle { color: rgba(247,246,244,0.7); margin-bottom: 1.5rem; }
.faq-contact-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .faq-contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .faq-contact-cards { grid-template-columns: 1fr; } }
.faq-contact-card { display: flex; align-items: flex-start; gap: 1rem; border-radius: 1rem; border: 1px solid rgba(247,246,244,0.1); background: var(--color-charcoal-card); padding: 1.25rem; transition: all 0.3s ease; }
.faq-contact-card:hover { transform: translateY(-0.125rem); border-color: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.faq-contact-icon { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: 0.75rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); }
.faq-contact-label { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,246,244,0.5); font-weight: 600; margin-bottom: 0.25rem; }
.faq-contact-value { display: block; color: var(--color-background); }
.faq-topic-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .faq-topic-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .faq-topic-cards { grid-template-columns: repeat(3, 1fr); } }
.faq-topic-card { text-align: left; border-radius: 1rem; border: 1px solid rgba(247,246,244,0.1); background: var(--color-charcoal-card); padding: 1rem; transition: all 0.3s ease; }
.faq-topic-card:hover { border-color: color-mix(in srgb, var(--color-accent) 30%, transparent); transform: translateY(-0.125rem); }
.faq-topic-card.is-active { background: color-mix(in srgb, var(--color-accent) 10%, transparent); border-color: var(--color-accent); }
.faq-topic-icon { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent); margin-bottom: 0.5rem; transition: background 0.3s ease, color 0.3s ease; }
.faq-topic-icon svg { width: 1.25rem; height: 1.25rem; display: block; flex-shrink: 0; }
.faq-topic-card.is-active .faq-topic-icon { background: var(--color-accent); color: var(--color-charcoal); }
.faq-topic-label { display: block; font-family: var(--font-display); font-size: 1.125rem; color: var(--color-background); margin-bottom: 0.125rem; }
.faq-topic-card.is-active .faq-topic-label { color: var(--color-accent); }
.faq-topic-count { display: block; font-size: 11px; color: rgba(247,246,244,0.5); text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600; }
.faq-panel { display: none; border-top: 1px solid rgba(247,246,244,0.15); }
.faq-panel.is-active { display: block; animation: brs-fade-in 0.3s ease; }
.faq-panel-title { font-size: 1.5rem; color: var(--color-accent); margin-bottom: 0.5rem; padding-top: 1.5rem; }
@media (min-width: 768px) { .faq-panel-title { font-size: 1.875rem; } }
.faq-panel-hint { color: rgba(247,246,244,0.5); font-size: 0.875rem; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid rgba(247,246,244,0.1); }
.faq-item:last-child { border-bottom: none; }
.faq-item-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item-question span:first-child { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-background); line-height: 1.3; }
@media (min-width: 768px) { .faq-item-question span:first-child { font-size: 1.25rem; } }
.faq-item-toggle { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--color-accent); color: var(--color-accent); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.faq-item.is-open .faq-item-toggle { background: var(--color-accent); color: var(--color-charcoal); }
.faq-chevron { transition: transform 0.3s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-item-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-item-answer { max-height: 400px; }
.faq-item-answer p { color: rgba(247,246,244,0.7); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 3rem; max-width: 48rem; }

/* ---------------------------------- TESTIMONIALS ---------------------------------- */
.testimonials-section { background: color-mix(in srgb, var(--color-nopal) 15%, var(--color-background)); padding: 4rem 0; }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3rem; margin-bottom: 3.5rem; } }
.testimonials-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3rem; margin-bottom: 3.5rem; } }
.testimonials-carousel { position: relative; max-width: 72rem; margin: 0 auto; overflow: hidden; width: 100%; }
.testimonials-carousel .testimonials-track { display: flex; width: 100%; transition: transform 0.7s ease-out; will-change: transform; }
.testimonial-slide { flex: 0 0 100%; width: 100%; min-width: 100%; max-width: 100%; box-sizing: border-box; display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 0 1rem; }
@media (min-width: 768px) { .testimonial-slide { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 0 1.5rem; } }
.testimonial-image-card { aspect-ratio: 1/1; background: var(--color-muted); border-radius: 1rem; overflow: hidden; position: relative; }
.testimonial-image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote-card { aspect-ratio: 1/1; background: var(--color-nopal); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .testimonial-quote-card { padding: 3rem; } }
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; color: var(--color-marigold); }
.testimonial-quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.6; text-align: center; color: #fff; }
@media (min-width: 768px) { .testimonial-quote { font-size: 1.5rem; } }
.testimonial-attribution { margin-top: 2rem; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; }
.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.testimonial-arrow { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--color-nopal); color: var(--color-nopal); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.testimonial-arrow:hover { background: var(--color-nopal); color: var(--color-background); }
.testimonial-dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-dot { height: 0.5rem; width: 0.5rem; border-radius: 9999px; background: color-mix(in srgb, var(--color-nopal) 30%, transparent); transition: all 0.3s ease; }
.testimonial-dot.is-active { width: 2rem; background: var(--color-nopal); }

@media (max-width: 767px) {
	.testimonials-section { padding: 3.5rem 0; }
	.testimonials-section > .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
	.testimonials-heading {
		max-width: 18rem;
		margin: 0 auto 2rem;
		font-size: 2rem;
		line-height: 1.1;
	}
	.testimonials-carousel { border-radius: 1rem; box-shadow: 0 1rem 2.5rem rgba(30,30,30,0.12); }
	.testimonial-slide {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 0;
	}
	.testimonial-image-card {
		aspect-ratio: 16 / 10;
		border-radius: 1rem 1rem 0 0;
	}
	.testimonial-quote-card {
		aspect-ratio: auto;
		min-height: 17rem;
		border-radius: 0 0 1rem 1rem;
		padding: 2rem 1.5rem;
	}
	.testimonial-stars { gap: 0.2rem; margin-bottom: 1rem; }
	.testimonial-stars svg { width: 0.875rem; height: 0.875rem; }
	.testimonial-quote { font-size: 1.125rem; line-height: 1.5; }
	.testimonial-attribution { margin-top: 1.25rem; font-size: 10px; line-height: 1.5; }
	.testimonials-controls { gap: 1rem; margin-top: 1.5rem; }
	.testimonial-arrow { width: 2.75rem; height: 2.75rem; }
	.testimonial-dots { gap: 0.375rem; }
	.testimonial-dot { width: 0.375rem; height: 0.375rem; }
	.testimonial-dot.is-active { width: 1.5rem; }
}

/* ---------------------------------- CONTACT / FINAL CTA ---------------------------------- */
.contact-cta-section { position: relative; overflow: hidden; }
.contact-cta-grid { display: grid; grid-template-columns: 1fr; min-height: 480px; }
@media (min-width: 1024px) { .contact-cta-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-cta-image { position: relative; overflow: hidden; min-height: 280px; }
@media (min-width: 1024px) { .contact-cta-image { min-height: 520px; } }
.contact-cta-panel { position: relative; background: var(--color-nopal); color: var(--color-background); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; }
@media (min-width: 768px) { .contact-cta-panel { padding: 6rem 4rem; } }
.contact-cta-inner { max-width: 28rem; text-align: center; }
.contact-cta-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(247,246,244,0.8); font-weight: 600; margin-bottom: 1.25rem; }
.contact-cta-title { color: var(--color-background); font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-cta-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-cta-title { font-size: 3.75rem; } }
.contact-cta-body { color: rgba(247,246,244,0.9); line-height: 1.7; margin-bottom: 2rem; }
.contact-cta-list { display: inline-flex; flex-direction: column; gap: 0.5rem; text-align: left; font-size: 0.875rem; color: rgba(247,246,244,0.9); margin-bottom: 2.5rem; }
.contact-cta-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-cta-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }
.contact-cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .contact-cta-buttons { flex-direction: row; } }
.contact-cta-social { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.contact-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(247,246,244,0.5); transition: all 0.2s ease; }
.contact-social-btn:hover { background: var(--color-background); color: var(--color-foreground); }
.contact-social-btn--text { font-size: 11px; font-weight: 700; }

/* ---------------------------------- FOOTER ---------------------------------- */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid rgba(247,246,244,0.1); background: var(--color-charcoal); color: rgba(247,246,244,0.9); }
.site-footer__content { position: relative; z-index: 10; padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__content { padding-top: 5rem; padding-bottom: 5rem; } }
.footer-brand-row { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,246,244,0.1); }
@media (min-width: 640px) { .footer-brand-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-logo { flex-shrink: 0; }
.footer-logo-img { height: 5rem; width: auto; max-width: 100%; object-fit: contain; border-radius: 0.375rem; display: block; }
@media (min-width: 640px) { .footer-logo-img { height: 7rem; } }
.footer-tagline-wrap { max-width: 36rem; }
@media (min-width: 640px) { .footer-tagline-wrap { text-align: right; margin-left: auto; } }
.footer-tagline { font-size: 0.875rem; color: rgba(247,246,244,0.7); line-height: 1.625; }
.footer-contact-line { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(247,246,244,0.7); }
.footer-contact-line a { color: inherit; transition: color 0.2s ease; }
.footer-contact-line a:hover { color: var(--color-accent); }
.footer-dot { margin: 0 0.5rem; color: rgba(247,246,244,0.4); }
.footer-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
@media (min-width: 768px) { .footer-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-columns { gap: 3rem; } }
.footer-col-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.2; color: var(--color-background); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a,
.footer-links button,
.footer-links .theme-nav-link { font-size: 0.875rem; color: rgba(247,246,244,0.7); transition: color 0.2s ease; text-align: left; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.footer-links a:hover,
.footer-links button:hover,
.footer-links .theme-nav-link:hover { color: var(--color-accent); }
.footer-col--reach { grid-column: span 2 / span 2; }
@media (min-width: 768px) { .footer-col--reach { grid-column: span 1 / span 1; } }
.footer-links--reach a,
.footer-address { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: rgba(247,246,244,0.8); font-size: 0.875rem; line-height: 1.5; }
.footer-links--reach a { align-items: center; }
.footer-links--reach a:hover { color: var(--color-accent); }
.footer-reach-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-reach-icon--top { margin-top: 0.125rem; }
.footer-reach-icon svg { width: 1rem; height: 1rem; display: block; }
.footer-social { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(247,246,244,0.3); color: var(--color-background); transition: all 0.2s ease; }
.footer-social-btn:hover { border-color: var(--color-accent); background: var(--color-accent); color: var(--color-charcoal); }
.footer-social-btn--text { font-size: 11px; font-weight: 700; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,246,244,0.1); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; position: relative; z-index: 10; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; } }
.footer-quote { font-size: 12px; color: var(--color-accent); font-family: var(--font-display); font-style: italic; letter-spacing: 0.025em; margin: 0; }
.footer-copyright { font-size: 12px; color: rgba(247,246,244,0.5); letter-spacing: 0.025em; margin: 0; }
.footer-copyright a { text-decoration: underline; color: inherit; transition: color 0.2s ease; }
.footer-copyright a:hover { color: var(--color-accent); }

/* ---------------------------------- CONTACT MODAL ---------------------------------- */
.theme-modal { position: fixed; inset: 0; z-index: 100; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); animation: brs-fade-in 0.25s ease; }
.theme-modal-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(32rem, 92vw); max-height: 90vh; overflow-y: auto; background: var(--color-background); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-elevated); animation: brs-slide-up 0.3s ease; }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem; opacity: 0.7; }
.theme-modal-close:hover { opacity: 1; }
.theme-modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal-desc { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal-contact-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-modal-contact-row a:hover { color: var(--color-foreground); }
.theme-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.theme-form-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.theme-form-field label { font-size: 0.875rem; font-weight: 500; }
.theme-form-field input, .theme-form-field textarea { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--color-border); border-radius: 6px; background: var(--color-background); font-size: 1rem; }
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-status { margin-top: 0.75rem; font-size: 0.875rem; }
.theme-form-status.is-error { color: #b91c1c; }
body.contact-modal-open { overflow: hidden; }

/* ---------------------------------- MERCH PAGE ---------------------------------- */
.merch-page { padding-top: 1.5rem; }
@media (min-width: 1024px) { .merch-page { padding-top: 2rem; } }

.merch-hero { position: relative; min-height: 100vh; overflow: hidden; }
.merch-hero-scrim { position: absolute; inset: 0; background: rgba(30,30,30,0.65); }
.merch-hero-content {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.merch-hero-text { max-width: 48rem; color: var(--color-background); }
.merch-hero-kicker { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); margin-bottom: 1rem; }
.merch-hero-title { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .merch-hero-title { font-size: 3.75rem; } }
.merch-hero-body { max-width: 42rem; font-size: 1rem; color: rgba(247,246,244,0.85); line-height: 1.7; margin-bottom: 2rem; }
@media (min-width: 768px) { .merch-hero-body { font-size: 1.125rem; } }
.merch-collection { padding: 4rem 0 6rem; }
@media (min-width: 768px) { .merch-collection { padding: 6rem 0; } }
.merch-collection-intro { max-width: 42rem; margin-bottom: 3rem; }
.merch-collection-title { font-size: 1.875rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .merch-collection-title { font-size: 3rem; } }
.merch-collection-body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }
.merch-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .merch-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.merch-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-card); height: 100%; }
.merch-card-img-link { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--color-muted); position: relative; }
.merch-card-img-link .merch-card-img,
.merch-card-img-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.merch-card-img-link:hover .merch-card-img,
.merch-card-img-link:hover img { transform: scale(1.05); }
.merch-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.merch-card-cat { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.merch-card-title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.merch-card-body a:hover .merch-card-title { color: var(--color-primary); }
.merch-card-price { font-size: 1.125rem; margin-bottom: 0.75rem; }
.merch-card-details { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; flex: 1; }
.merch-card-details li { font-size: 0.875rem; color: var(--color-muted-foreground); }
.merch-card-cta { width: 100%; }

/* ---------------------------------- SINGLE PRODUCT ---------------------------------- */
body.theme-no-hero .site-main.single-product-main {
	padding-top: 1.5rem !important;
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main {
		padding-top: 2rem !important;
	}
}

.theme-product-layout-page { padding-top: 1.5rem; }
@media (min-width: 1024px) { .theme-product-layout-page { padding-top: 2rem; } }

.single-product-top {
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.back-to-shop-link { display: inline-flex; align-items: center; font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.back-to-shop-link:hover { color: var(--color-foreground); }
.back-to-shop-icon { width: 1rem; height: 1rem; margin-right: 0.5rem; }

.single-product-portion-note {
	border-radius: 0.75rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
	padding: 1rem 1.25rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
@media (min-width: 768px) { .single-product-portion-note { font-size: 1rem; } }

.single-product-breadcrumb { padding-bottom: 1.5rem; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.single-product-breadcrumb a:hover { color: var(--color-foreground); }
.single-product-breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }
.single-product-breadcrumb-current { color: var(--color-foreground); opacity: 1; }

.theme-product-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; padding-bottom: 6rem; padding-top: 1rem; min-width: 0; align-items: start; }
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
	.theme-product-gallery { grid-column: span 7 / span 7; }
	.theme-product-info { grid-column: span 5 / span 5; padding-left: 1rem; position: sticky; top: 7rem; align-self: start; }
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery-mobile { display: block; }
.theme-product-gallery-desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery-mobile { display: none; }
	.theme-product-gallery-desktop { display: flex; flex-direction: column; gap: 1rem; }
}

.theme-product-image-frame {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-muted);
	overflow: hidden;
}
.theme-product-main-img {
	position: static !important;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.theme-product-main-img.theme-product-img--contain { object-fit: contain; }

.theme-product-mobile-thumbs {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}
.theme-thumb-btn {
	position: relative;
	width: 5rem;
	height: 5rem;
	overflow: hidden;
	background: var(--color-muted);
	flex-shrink: 0;
	border: none;
	border-radius: 0;
	opacity: 0.6;
	transition: opacity 0.2s ease;
	padding: 0;
}
.theme-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-thumb-btn.is-active, .theme-thumb-btn:hover { opacity: 1; }
.theme-thumb-btn.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
}

.theme-product-cat { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-title { font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; font-family: var(--font-display); font-weight: 400; }
@media (min-width: 768px) { .theme-product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-title { font-size: 2.75rem; } }
.theme-product-price { font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-body); }
.theme-product-lead { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 2rem; font-size: 1rem; }
.theme-stock-indicator--out { display: inline-block; margin-bottom: 1.25rem; padding: 0.375rem 0.9rem; background: var(--color-foreground); color: var(--color-background); border-radius: 6px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }

.theme-option-group, .theme-attribute-group { margin-bottom: 1.5rem; }
.theme-option-label, .theme-attribute-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-option-pills, .theme-attribute-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-option-pill, .theme-attribute-pill { padding: 0.5rem 1rem; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid var(--color-border); border-radius: 9999px; transition: all 0.2s ease; }
.theme-option-pill:hover, .theme-attribute-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-option-pill.is-active, .theme-attribute-pill.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-option-pill--color.is-active { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); color: var(--color-foreground); }

.theme-quantity-block { margin-bottom: 1rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 0; overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; display: flex; align-items: center; transition: background 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-muted); }
.theme-qty-display { padding: 0.5rem 1rem; min-width: 2.75rem; text-align: center; font-size: 0.875rem; }
.theme-qty-input { display: none !important; }

.single-product-main .theme-product-atc-btn,
.single-product-main .single_add_to_cart_button.theme-product-atc-btn {
	width: 100%;
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: 9999px !important;
	padding: 1rem 2rem !important;
	min-height: unset !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background 0.2s ease, opacity 0.2s ease !important;
}
.single-product-main .theme-product-atc-btn:hover,
.single-product-main .single_add_to_cart_button.theme-product-atc-btn:hover {
	background: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	opacity: 1 !important;
}
.single-product-main .theme-product-atc-btn.is-disabled,
.single-product-main .theme-product-atc-btn:disabled,
.single-product-main .theme-product-atc-btn.disabled {
	opacity: 0.6 !important;
	pointer-events: none !important;
	cursor: not-allowed !important;
}

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion-chevron { width: 1rem; height: 1rem; transition: transform 0.3s ease; }
.theme-accordion.is-open .theme-accordion-chevron { transform: rotate(180deg); }
.theme-accordion-panel { display: none; padding-bottom: 1.5rem; }
.theme-accordion.is-open .theme-accordion-panel { display: block; }
.theme-product-description, .theme-product-detail-list, .woocommerce-product-details__short-description { color: var(--color-muted-foreground); font-size: 0.9375rem; line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.theme-product-detail-list li { display: flex; align-items: flex-start; margin-bottom: 0.5rem; }
.theme-product-detail-list li::before { content: ''; width: 4px; height: 4px; background: var(--color-foreground); border-radius: 50%; margin: 0.55rem 0.75rem 0 0; flex-shrink: 0; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.related-products-heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; margin: 0; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }
.related-products-heading-wrap { margin-bottom: 3rem; }
.theme-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.theme-related-card { display: flex; flex-direction: column; color: inherit; }
.theme-related-card__image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-muted); margin-bottom: 1rem; }
.theme-related-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.theme-related-card:hover .theme-related-card__image img { transform: scale(1.05); }
.theme-related-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); margin-bottom: 0.35rem; }
.theme-related-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.35; transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-related-card__title { font-size: 1.125rem; } }
.theme-related-card:hover .theme-related-card__title { color: var(--color-primary); }
.theme-related-card__price { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); margin-top: 0.35rem; }

/* Variations table — hidden native selects for pill UI */
.single-product .variations[aria-hidden="true"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.single-product .woocommerce-variation-price,
.single-product .woocommerce-variation-availability,
.single-product .reset_variations { display: none !important; }

/* ---------------------------------- WOOCOMMERCE GLOBAL OVERRIDES ---------------------------------- */
.woocommerce-product-gallery, .woocommerce-tabs, .woocommerce-Reviews { display: none; }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}

/* 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;
}

.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; }

.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; }

/* Single product ATC — Lovable uses foreground, not primary */
body.single-product-page .single-product-main .theme-product-atc-btn,
body.single-product-page .single-product-main .single_add_to_cart_button.theme-product-atc-btn {
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
}
body.single-product-page .single-product-main .theme-product-atc-btn:hover,
body.single-product-page .single-product-main .single_add_to_cart_button.theme-product-atc-btn:hover {
	background: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	color: var(--color-background) !important;
}

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	font-family: var(--font-body);
	border-radius: 0.5rem;
	padding: 1rem 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
	list-style: none;
}
.woocommerce-error { border-color: #d13c3c; background: #fdecec; color: #7a1717; }

/* ---------------------------------- SIDE CART DRAWER ---------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open { overflow: hidden; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 26rem;
	background: var(--color-background); z-index: 95; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s 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: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer-close { padding: 0.25rem; opacity: 0.7; }
.theme-cart-drawer-close:hover { opacity: 1; }
.theme-cart-empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-empty-state p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-img { width: 5rem; height: 6rem; flex-shrink: 0; overflow: hidden; background: var(--color-muted); border-radius: 0.375rem; display: block; }
.theme-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-name { display: block; font-size: 0.875rem; font-weight: 500; }
.theme-cart-item-name:hover { opacity: 0.7; }
.theme-cart-item-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item-variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item-qty-row { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 4px; transition: background 0.2s ease; display: inline-flex; }
.theme-cart-qty-btn:hover { background: var(--color-muted); }
.theme-cart-item-qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-remove-btn { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-remove-btn:hover { color: var(--color-foreground); }
.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-checkout-btn { width: 100%; }
.theme-cart-empty-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* ---------------------------------- CHECKOUT / CART / ACCOUNT BLOCKS ---------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: 2rem;
	padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title {
	font-size: 2rem;
	margin-bottom: 2rem;
}

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 {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner {
	grid-column: 1 / -1;
}
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 {
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background: var(--color-background);
	width: 100% !important;
	max-width: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input::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-button-text) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
body.woocommerce-checkout .wc-block-components-text-input input {
	padding: revert;
}

/* ---------------------------------- THANK YOU PAGE ---------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
}
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	padding: 0 0 1rem 0;
	font-size: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	border: none;
	padding: 0;
}
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;
	margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
}

/* ---------------------------------- SHOP ARCHIVE FALLBACK ---------------------------------- */
.shop-archive-page { padding: 3rem 0 5rem; }
.shop-archive-title { margin-bottom: 2rem; }

/* ---------------------------------- 404 ---------------------------------- */
.theme-404-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 0; background: var(--color-muted); }
.theme-404-content { text-align: center; }
.theme-404-code { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.theme-404-message { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-home-link { color: var(--color-primary); text-decoration: underline; }
.theme-404-home-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ---------------------------------- MISC UTILITIES ---------------------------------- */
.entry-content { max-width: 100%; }
.theme-basic-article { padding: 3rem 0; }
