/*
 * Shanté King — main stylesheet.
 * Color tokens are emitted as CSS custom properties via wp_add_inline_style
 * (Section 6.1) and mirrored below only as safe fallbacks.
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
	--color-background: #f8f5f1;
	--color-foreground: #25181c;
	--color-primary: #511f30;
	--color-primary-foreground: #f8f5f1;
	--color-secondary: #ebe7e0;
	--color-muted: #e6e2db; /* Lovable muted: hsl(36 18% 88%) — distinct from secondary */
	--color-muted-foreground: #5e5054;
	--color-accent: #d8a031;
	--color-accent-foreground: #25181c;
	--color-border: #d8d3ca;
	--color-card: #fcfaf8;
	--wp-admin-bar-offset: 0px;
	--radius: 0.25rem;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--btn-radius: 0px;
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.75rem; /* text-xs */
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.24em;
	--btn-text-transform: uppercase;

	--card-radius: 0px;
	--section-padding: 2rem;
	--header-height: 92px;
	--announcement-height: 36px;
	--logo-height: 60px; /* Lovable desktop logo h-[60px] */
	--checkout-gap: 2rem;

	--shadow-soft: 0 6px 24px -8px rgba(37, 24, 28, 0.10);
	--shadow-elevated: 0 14px 40px -12px rgba(37, 24, 28, 0.18);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ------------------------------------------------------------------
 * Reset & base
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
/* Cover/fill images are excluded — that list must include cart drawer media */
img:not(.cover-img):not(.cover-contain):not(.theme-product-card__img):not(.theme-product-main-img):not(.category-tile__img):not(.featured-item__img):not(.mission-grid__img):not(.founder-grid__img):not(.promo-banner__img):not(.theme-cart-pair__img):not(.theme-cart-item__img):not(.theme-related-card__img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__img,
.category-tile__img,
.featured-item__img,
.mission-grid__img,
.founder-grid__img,
.promo-banner__img,
.theme-cart-pair__img,
.theme-cart-item__img,
.theme-related-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.cover-contain {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: var(--color-background);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: inherit;
	letter-spacing: -0.005em;
	margin: 0;
	text-transform: none;
}

/* Lovable: max-w-7xl (1280) / max-w-5xl (1024), px-6 lg:px-10 */
.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.container-wide-full { width: 100%; max-width: 100rem; margin: 0 auto; padding: 0; }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) {
	.container-wide, .container-editorial { padding: 0 2.5rem; }
}

.label-eyebrow {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-muted-foreground);
	display: inline-block;
}
.shop-section__header .label-eyebrow,
.services-section__header .label-eyebrow,
.memberships-section__header .label-eyebrow,
.testimonials-section__header .label-eyebrow {
	display: block;
	margin-bottom: 0.75rem;
}
.pricing-banner__eyebrow {
	display: block;
	margin-bottom: 0.75rem;
	color: color-mix(in srgb, #fff 90%, transparent) !important;
}
.offers-block__header .label-eyebrow {
	display: block;
	margin-bottom: 1rem;
}
.founder-grid__copy .label-eyebrow,
.mission-grid__copy .label-eyebrow {
	display: block;
	margin-bottom: 1.5rem;
}

.section-heading { font-family: var(--font-display); font-weight: 600; }

/* ------------------------------------------------------------------
 * Buttons — marketing CTAs match Lovable radius-0 / h-12 / text-xs
 * ------------------------------------------------------------------ */
.btn-fill, .btn-outline, .btn-outline-block, .btn-fill-block, .btn-hero-primary, .btn-hero-outline, .btn-fill-white, .btn-gold, .btn-outline-round {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 48px;
	padding: 0 2rem;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	border-radius: 0;
	transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	white-space: nowrap;
}
.btn-hero-primary, .btn-hero-outline { text-transform: uppercase; }
.btn-fill, .btn-gold { background: var(--color-accent); color: var(--color-accent-foreground); }
.btn-fill:hover, .btn-gold:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--color-foreground); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-outline-block { background: var(--color-background); color: var(--color-foreground); border: 1px solid var(--color-border); width: 100%; }
.btn-outline-block:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-fill-block { background: var(--color-primary); color: var(--color-primary-foreground); width: 100%; }
.btn-fill-block:hover { opacity: 0.9; }
.btn-fill-white { background: #fff; color: var(--color-foreground); }
.btn-fill-white:hover { background: var(--color-accent); color: var(--color-accent-foreground); }
.btn-hero-primary { background: var(--color-accent); color: var(--color-accent-foreground); font-weight: 700; letter-spacing: 0.28em; }
.btn-hero-primary:hover { opacity: 0.9; }
.btn-hero-outline { background: var(--color-background); color: var(--color-foreground); font-weight: 700; letter-spacing: 0.28em; }
.btn-hero-outline:hover { background: var(--color-foreground); color: var(--color-background); }
/* FAQ pill CTA — Lovable rounded-full uppercase tracking */
.btn-outline-round { border: 1px solid var(--color-foreground); border-radius: 999px; text-transform: uppercase; letter-spacing: 0.2em; height: auto; min-height: 46px; padding: 0.75rem 2rem; font-weight: 500; }
.btn-outline-round:hover { background: var(--color-foreground); color: var(--color-background); }

/* ------------------------------------------------------------------
 * Scroll reveal animation (Section 2.1)
 * ------------------------------------------------------------------ */
.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in { animation: fadeIn 0.3s ease forwards; }

/* ------------------------------------------------------------------
 * Announcement bar
 * ------------------------------------------------------------------ */
.theme-announcement { position: fixed; top: var(--wp-admin-bar-offset, 0px); left: 0; right: 0; z-index: 60; background: var(--color-primary); color: var(--color-primary-foreground); transition: top 0.3s ease; }
.theme-announcement__inner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 32px; padding: 6px 2rem; }
.theme-announcement__text { font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 600; text-align: center; }
.theme-announcement__close { position: absolute; right: 8px; padding: 4px; opacity: 1; transition: opacity 0.3s ease; }
.theme-announcement__close:hover { opacity: 0.6; }

/* ------------------------------------------------------------------
 * Header — Lovable: always bg-background/95 (never transparent over hero)
 * ------------------------------------------------------------------ */
.site-header {
	position: fixed;
	top: calc(var(--wp-admin-bar-offset, 0px) + var(--announcement-height, 0px));
	left: 0; right: 0; z-index: 50;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
	transition: top 0.5s var(--transition-smooth), background-color 0.5s var(--transition-smooth);
	overflow: visible;
}
body.admin-bar { --wp-admin-bar-offset: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar { --wp-admin-bar-offset: 46px; }
}
@media screen and (max-width: 600px) {
	body.admin-bar { --wp-admin-bar-offset: 0px; }
}
body.theme-no-hero .site-header,
.site-header.is-solid { background: color-mix(in srgb, var(--color-background) 95%, transparent); }
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 1rem; }
@media (min-width: 1024px) { .site-nav { height: 92px; } }

.mobile-menu-toggle { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; padding: 8px; }
.mobile-menu-toggle .bar { display: block; height: 2.5px; background: var(--color-foreground); border-radius: 1px; transition: all 0.3s ease-out; transform-origin: center; }
.mobile-menu-toggle .bar-1 { width: 20px; }
.mobile-menu-toggle .bar-2 { width: 28px; }
.mobile-menu-toggle .bar-3 { width: 14px; }
.mobile-menu-toggle:hover .bar-3 { width: 24px; }
body.mobile-menu-open .mobile-menu-toggle .bar-1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
body.mobile-menu-open .mobile-menu-toggle .bar-2 { opacity: 0; transform: scaleX(0); }
body.mobile-menu-open .mobile-menu-toggle .bar-3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.site-logo { display: flex; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 1024px) { .site-logo { position: static; transform: none; } }
/* Lovable: h-[52px] mobile / h-[60px] desktop + slight -translate-y */
.site-logo-img { height: 52px !important; width: auto !important; display: block; transform: translateY(-2px); }
@media (min-width: 1024px) {
	.site-logo-img { height: var(--logo-height) !important; }
}
.mobile-menu-drawer__header .site-logo-img,
.mobile-menu-drawer__logo-img { height: 50px !important; width: auto !important; transform: none; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }

.desktop-nav { display: none; }
@media (min-width: 1024px) {
	.desktop-nav { display: flex; align-items: center; justify-content: center; flex: 1; }
	.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; } /* gap-7 */
}
.nav-link { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-link:hover,
.nav-link.is-active { color: var(--color-primary); }
.nav-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.theme-nav-item.has-mega.is-open .nav-chevron,
.theme-nav-item.has-mega:hover .nav-chevron { transform: rotate(180deg); }

/* Mega menu — Lovable: panels are header siblings; only .is-open is display:block */
.theme-nav-item.has-mega { position: relative; }
.theme-nav-item.has-mega .nav-link.is-active,
.theme-nav-item.has-mega.is-open .nav-link { color: var(--color-primary); }
.theme-mega-panels {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	width: 100%;
	z-index: 40;
	pointer-events: none;
}
.theme-mega-menu {
	display: none;
	position: relative;
	width: 100%;
	pointer-events: none;
}
.theme-mega-menu.is-open {
	display: block;
	pointer-events: auto;
	animation: fadeIn 0.2s ease forwards;
}
/* Invisible hover bridge — only the slim strip under the nav labels (not full header) */
.theme-mega-menu.is-open::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 1.5rem;
	pointer-events: auto;
}
.theme-mega-menu__inner {
	background: var(--color-background);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
	position: relative;
	z-index: 1;
}
/* Lovable: container-wide py-12 (px-6 / lg:px-10) + grid gap-10 */
.theme-mega-menu__grid.container-wide,
.theme-mega-menu__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem; /* gap-10 */
	padding-top: 3rem; /* py-12 */
	padding-bottom: 3rem;
	padding-left: 1.5rem; /* px-6 */
	padding-right: 1.5rem;
}
@media (min-width: 1024px) {
	.theme-mega-menu__grid.container-wide,
	.theme-mega-menu__grid {
		padding-left: 2.5rem; /* lg:px-10 */
		padding-right: 2.5rem;
	}
	.theme-mega-menu__grid:has(.theme-mega-menu__feature) {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
		align-items: start;
	}
}
.theme-mega-menu__columns { display: grid; gap: 2.5rem; }
.theme-mega-menu__col-title {
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}
.theme-mega-menu__links { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-menu__link {
	display: block;
	text-align: left;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-foreground);
	transition: color 0.25s ease;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
}
.theme-mega-menu__link:hover { color: var(--color-primary); }
.theme-mega-menu__shop-all {
	margin-top: 2rem;
	align-self: flex-start;
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid var(--color-foreground);
	padding-bottom: 2px;
	transition: color 0.25s ease, border-color 0.25s ease;
}
.theme-mega-menu__shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-mega-menu__feature { display: none; }
@media (min-width: 1024px) {
	.theme-mega-menu__feature { display: block; position: relative; overflow: hidden; text-align: left; }
}
.theme-mega-menu__feature-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.theme-mega-menu__feature-media .cover-img { transition: transform 1.2s ease; }
.theme-mega-menu__feature:hover .cover-img { transform: scale(1.05); }
.theme-mega-menu__feature-scrim {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.2));
}
.theme-mega-menu__feature-eyebrow {
	position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
	color: color-mix(in srgb, #fff 95%, transparent);
}
.theme-mega-menu__feature-footer { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: #fff; }
.theme-mega-menu__feature-title {
	font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
	font-size: 1.5rem; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.theme-mega-menu__feature-cta {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
	border-bottom: 1px solid color-mix(in srgb, #fff 80%, transparent); padding-bottom: 2px;
}

.header-icons { display: flex; align-items: center; gap: 0.25rem; }
.header-icon-btn { position: relative; padding: 8px; transition: opacity 0.3s ease; }
.header-icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	width: 20px; height: 20px; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600;
	background: var(--color-accent); color: var(--color-accent-foreground);
}
.theme-cart-count:empty { display: none; }

/* ------------------------------------------------------------------
 * Mobile drawer — parity with Lovable Sheet (side=left, overlay bg-black/80)
 * ------------------------------------------------------------------ */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(0, 0, 0, 0.8); /* bg-black/80 */
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 91; /* ABOVE overlay — was same z-index + overlay after drawer = menu covered in black */
	width: 88vw; /* w-[88vw] */
	max-width: 24rem; /* max-w-sm */
	height: 100%;
	height: 100dvh;
	background: var(--color-background);
	border-right: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	padding: 0;
	transform: translateX(-100%);
	visibility: hidden;
	pointer-events: none;
	box-shadow: none;
	transition: transform 0.45s var(--transition-smooth), visibility 0.45s var(--transition-smooth);
}
body.mobile-menu-open .mobile-menu-overlay {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
body.mobile-menu-open .mobile-menu-drawer {
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}
body.mobile-menu-open { overflow: hidden; }

/* Header: logo left + close — NOT .site-logo absolute centered */
.mobile-menu-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.25rem; /* px-5 */
	height: 84px;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	flex-shrink: 0;
}
.mobile-menu-drawer__logo {
	display: flex;
	align-items: center;
	position: static;
	transform: none;
	left: auto;
}
.mobile-menu-drawer__logo-img {
	display: block;
	height: 50px !important; /* h-[50px] */
	width: auto !important;
	max-width: 160px;
	transform: none;
}
.mobile-menu-drawer__close {
	padding: 0.25rem; /* p-1 */
	opacity: 1;
	transition: opacity 0.2s ease;
	color: var(--color-foreground);
	line-height: 0;
}
.mobile-menu-drawer__close:hover { opacity: 0.6; }

/* Nav: flex-1 overflow-y-auto px-2 py-3 */
.mobile-menu-drawer__nav {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0.75rem 0.5rem; /* py-3 px-2 */
	-webkit-overflow-scrolling: touch;
}
.theme-nav-list-mobile {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-nav-list-mobile > li {
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); /* border-border/40 */
}
.theme-nav-list-mobile > li > a,
.theme-mobile-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1rem 0.75rem; /* py-4 px-3 */
	font-family: var(--font-display);
	font-size: 1.125rem; /* text-lg */
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	color: var(--color-foreground);
	background: transparent;
	border: 0;
	letter-spacing: -0.005em;
	text-transform: none;
	transition: color 0.2s ease;
}
.theme-nav-list-mobile > li > a:hover,
.theme-mobile-accordion__trigger:hover {
	color: var(--color-primary);
}
.theme-mobile-accordion__trigger svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.theme-mobile-accordion.is-open .theme-mobile-accordion__trigger svg {
	transform: rotate(180deg);
}
.theme-mobile-accordion__panel[hidden] { display: none; }
.theme-mobile-accordion__panel {
	padding: 0 0.75rem 0.75rem; /* pb-3 px-3 */
	animation: fadeIn 0.3s ease forwards;
}
.theme-mobile-accordion__col {
	margin-bottom: 1rem; /* mb-4 */
}
.theme-mobile-accordion__col:last-child {
	margin-bottom: 0.5rem; /* last:mb-2 */
}
.theme-mobile-accordion__col-title {
	font-size: 0.75rem; /* text-xs */
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
	margin: 0 0 0.5rem;
}
.theme-mobile-accordion__panel ul {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-mobile-accordion__panel a,
.theme-mobile-accordion__panel button {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.625rem 0; /* py-2.5 */
	font-family: var(--font-body);
	font-size: 0.875rem; /* text-sm */
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	background: transparent;
	border: 0;
	transition: color 0.2s ease;
}
.theme-mobile-accordion__panel a:hover,
.theme-mobile-accordion__panel button:hover {
	color: var(--color-primary);
}
.theme-mobile-accordion__all a {
	color: var(--color-primary);
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Footer actions — Lovable grid-cols-2 gap-2 */
.mobile-menu-drawer__footer {
	border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	padding: 1rem 0.75rem; /* py-4 px-3 */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem; /* gap-2 */
	flex-shrink: 0;
	background: var(--color-background);
}
.mobile-menu-drawer__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 0.5rem; /* py-3 */
	min-height: 48px;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 0.75rem; /* text-xs */
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 0;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}
.mobile-menu-drawer__action:hover {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.mobile-menu-drawer__action--cart {
	grid-column: 1 / -1;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.mobile-menu-drawer__action--cart:hover {
	opacity: 0.9;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}
.mobile-menu-drawer__action svg {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
}

@media (min-width: 1024px) {
	.mobile-menu-drawer,
	.mobile-menu-overlay { display: none !important; }
}

/* ------------------------------------------------------------------
 * Scroll progress
 * ------------------------------------------------------------------ */
.theme-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 70;
	height: 2px;
	pointer-events: none;
}
body.admin-bar .theme-scroll-progress { top: var(--wp-admin-bar-offset, 0px); }
.theme-scroll-progress__bar {
	display: block;
	height: 100%;
	width: 100%;
	transform-origin: 0 50%;
	transform: scaleX(0);
	background: var(--color-primary);
	transition: background-color 0.3s ease;
}
body:has(#theme-announcement:not([style*="display: none"])) .theme-scroll-progress__bar {
	background: var(--color-primary-foreground);
}

/* ------------------------------------------------------------------
 * Search overlay
 * ------------------------------------------------------------------ */
.theme-search-overlay {
	position: fixed; inset: 0; z-index: 95;
	visibility: hidden; opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.search-open .theme-search-overlay { visibility: visible; opacity: 1; }
body.search-open { overflow: hidden; }
.theme-search-overlay__backdrop {
	position: absolute; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 40%, transparent);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.theme-search-overlay__panel {
	position: relative;
	background: var(--color-background);
	max-height: 92vh;
	overflow-y: auto;
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
}
.theme-search-overlay__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 8px; z-index: 2; opacity: 0.7; }
@media (min-width: 1024px) {
	.theme-search-overlay__close { top: 1.75rem; right: 2rem; }
}
.theme-search-overlay__close:hover { opacity: 1; }
.theme-search-overlay__inner { padding: 2.5rem 0; }
@media (min-width: 1024px) { .theme-search-overlay__inner { padding: 3.5rem 0; } }
.theme-search-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
	.theme-search-layout { grid-template-columns: 260px 1fr; gap: 4rem; }
	.theme-search-main { padding-right: 4rem; }
}
.theme-search-cats__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-cats__list { display: flex; flex-direction: column; gap: 0.9rem; }
.theme-search-cats__list button {
	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.25s ease;
}
.theme-search-cats__list button:hover { color: var(--color-primary); }
.theme-search-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-input {
	flex: 1; background: transparent; border: none; outline: none;
	font-family: var(--font-display); font-size: 1.5rem;
}
.theme-search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-search-results { margin-top: 2.5rem; }
.theme-search-results__status { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-results__empty { font-size: 0.9rem; color: var(--color-muted-foreground); }
.theme-search-results__empty em { font-family: var(--font-display); font-style: italic; color: var(--color-foreground); }
.theme-search-results__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (min-width: 768px) { .theme-search-results__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .theme-search-results__grid { grid-template-columns: repeat(4, 1fr); } }
.theme-search-hit { text-align: left; }
.theme-search-hit__media {
	aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); margin-bottom: 0.75rem;
}
.theme-search-hit__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.7s ease;
}
.theme-search-hit:hover .theme-search-hit__media img { transform: scale(1.05); }
.theme-search-hit__label {
	font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase;
	line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-search-hit__price { margin-top: 0.25rem; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* ------------------------------------------------------------------
 * Contact modal
 * ------------------------------------------------------------------ */
.theme-modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
body.contact-modal-open .theme-modal { visibility: visible; opacity: 1; }
.theme-modal__overlay { position: absolute; inset: 0; background: rgba(37,24,28,0.5); }
.theme-modal__panel { position: relative; background: var(--color-background); border: 1px solid var(--color-border); max-width: 34rem; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; transform: scale(0.96); transition: transform 0.3s var(--transition-smooth); }
body.contact-modal-open .theme-modal__panel { transform: scale(1); }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; padding: 6px; }
.theme-modal__title { font-size: 1.5rem; margin-top: 0.5rem; }
.theme-modal__desc { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.6; color: var(--color-muted-foreground); }
.theme-modal__contact-info { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: 0.75rem; }
.theme-modal__contact-info a:hover { color: var(--color-foreground); }
.theme-contact-form { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 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 input, .theme-contact-form textarea {
	width: 100%; padding: 0.6rem 0.75rem; margin-top: 0.35rem;
	background: var(--color-background); border: 1px solid var(--color-border);
	font-size: 0.9rem; color: var(--color-foreground);
}
.theme-contact-form textarea { resize: none; }
.theme-contact-form input:focus, .theme-contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact-form__submit-row { display: flex; justify-content: flex-end; }
.theme-contact-form__success { text-align: center; padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.1rem; }

/* ------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------ */
body.theme-no-hero .site-main { padding-top: calc(var(--header-height) + var(--announcement-height, 0px) + var(--wp-admin-bar-offset, 0px)); }
/* Lovable ProductDetail: pt-28 lg:pt-32 — must beat the generic theme-no-hero rule */
body.theme-no-hero .site-main.single-product-main {
	padding-top: 7rem !important;
	padding-bottom: 0;
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main {
		padding-top: 8rem !important;
	}
}

.hero-section { position: relative; width: 100%; height: 100svh; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-overlay-1 { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 35%, transparent); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 60%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent); }
.hero-content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.hero-content-wrap .container-wide { width: 100%; padding-bottom: 6rem; }
@media (min-width: 768px) { .hero-content-wrap .container-wide { padding-bottom: 7rem; } }
.hero-content { max-width: 42rem; }
.hero-eyebrow { display: block; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-background) 90%, transparent); margin-bottom: 1.25rem; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.hero-title { font-size: 2.25rem; line-height: 1.02; color: var(--color-background); margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-description { font-size: 0.875rem; line-height: 1.7; color: color-mix(in srgb, var(--color-background) 95%, transparent); margin-bottom: 2rem; max-width: 34rem; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .hero-description { font-size: 1rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; gap: 0.75rem; } }
.hero-buttons .btn-hero-primary, .hero-buttons .btn-hero-outline { width: 240px; }

/* ------------------------------------------------------------------
 * About strip — Lovable: container-wide py-8 flex flex-col md:flex-row
 * md:items-center md:justify-between gap-4
 * ------------------------------------------------------------------ */
.about-strip { border-bottom: 1px solid var(--color-border); scroll-margin-top: 6rem; }
.about-strip__inner.container-wide,
.about-strip .about-strip__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem; /* gap-4 */
	/* py-8 + keep container-wide horizontal paddings (do not use padding shorthand) */
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 1.5rem; /* px-6 */
	padding-right: 1.5rem;
}
@media (min-width: 768px) {
	.about-strip__inner.container-wide,
	.about-strip .about-strip__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
@media (min-width: 1024px) {
	.about-strip__inner.container-wide,
	.about-strip .about-strip__inner {
		padding-left: 2.5rem; /* lg:px-10 */
		padding-right: 2.5rem;
	}
}
.about-strip__inner > .label-eyebrow {
	flex-shrink: 0;
	margin-bottom: 0;
}
.about-strip__heading {
	font-family: var(--font-display);
	font-size: 1rem; /* text-base */
	line-height: 1.375; /* leading-snug */
	font-weight: 600;
	margin: 0;
	color: var(--color-foreground);
}
@media (min-width: 768px) {
	.about-strip__heading {
		font-size: 1.125rem; /* md:text-lg */
		white-space: nowrap;
	}
}
@media (min-width: 1024px) {
	.about-strip__heading { font-size: 1.25rem; } /* lg:text-xl */
}
.about-strip__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
	font-size: 0.75rem; /* text-xs */
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-foreground);
	transition: color 0.3s ease;
	white-space: nowrap;
}
.about-strip__cta svg { transition: transform 0.3s ease; width: 1rem; height: 1rem; }
.about-strip__cta:hover { color: var(--color-primary); }
.about-strip__cta:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------
 * Shop categories
 * ------------------------------------------------------------------ */
.shop-categories-section { padding: 4rem 0 3rem; scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .shop-categories-section { padding: 5rem 0 4rem; } }
.shop-categories__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .shop-categories__header { margin-bottom: 2.5rem; } }
.shop-categories__heading { font-size: 1.875rem; } /* text-3xl */
@media (min-width: 768px) { .shop-categories__heading { font-size: 2.25rem; } }
.clear-filter-btn { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); }
.clear-filter-btn:hover { opacity: 0.7; }
.shop-categories__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.5rem; }
@media (min-width: 768px) { .shop-categories__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; } }
@media (min-width: 1024px) { .shop-categories__grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.category-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); text-align: left; }
.category-tile.is-active { box-shadow: inset 0 0 0 2px var(--color-primary); }
.category-tile__img { transition: transform 1.2s ease-out; }
.category-tile:hover .category-tile__img { transform: scale(1.05); }
.category-tile__scrim { position: absolute; inset-inline: 0; bottom: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); pointer-events: none; }
.category-tile__label { position: absolute; bottom: 1rem; left: 1rem; font-family: var(--font-display); font-size: 1.125rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .category-tile__label { font-size: 1.25rem; } }
.category-tile__arrow { position: absolute; bottom: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 999px; background: var(--color-background); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.category-tile:hover .category-tile__arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------
 * Promo banner
 * ------------------------------------------------------------------ */
.promo-banner { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .promo-banner { height: 70vh; } }
.promo-banner__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.promo-banner__content-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.promo-banner__content { max-width: 42rem; margin: 0 auto; text-align: center; padding: 0; }
.promo-banner__eyebrow { color: #fff; margin-bottom: 1rem; font-size: 11px; letter-spacing: 0.32em; }
.promo-banner__title { color: #fff; font-weight: 700; font-size: 2.25rem; line-height: 1.02; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .promo-banner__title { font-size: 3rem; } }
@media (min-width: 1024px) { .promo-banner__title { font-size: 3.75rem; } }
.promo-banner__description { color: #fff; font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .promo-banner__description { font-size: 1rem; } }
.promo-banner__content .btn-fill-white { width: 240px; }

/* ------------------------------------------------------------------
 * Featured pieces
 * ------------------------------------------------------------------ */
.featured-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .featured-section { padding: 6rem 0; } }
.featured-section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .featured-section__header { margin-bottom: 3rem; } }
.featured-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .featured-section__heading { font-size: 2.25rem; } }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .featured-grid { gap: 2rem; } }
.featured-item { display: block; }
.featured-item__image-wrap { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--color-background); }
.featured-item__img { transition: transform 1.2s ease-out; }
.featured-item:hover .featured-item__img { transform: scale(1.03); }
.featured-item__title { margin-top: 1.25rem; font-family: var(--font-display); font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s ease; }
@media (min-width: 768px) { .featured-item__title { font-size: 0.875rem; } }
@media (min-width: 1024px) { .featured-item__title { font-size: 1rem; } }
.featured-item:hover .featured-item__title { color: var(--color-primary); }
.featured-item__link { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s ease; }
.featured-item:hover .featured-item__link { color: var(--color-primary); }

/* ------------------------------------------------------------------
 * Shop section + product grid + card (shared, Section 31.13)
 * ------------------------------------------------------------------ */
.shop-section { padding-top: 5rem; }
@media (min-width: 1024px) { .shop-section { padding-top: 7rem; } }
.shop-section__header { text-align: center; margin-bottom: 0; padding-bottom: 3rem; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }
.shop-section__body { padding-bottom: 5rem; }
@media (min-width: 1024px) { .shop-section__body { padding-bottom: 7rem; } }

.shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .shop-filters { flex-direction: row; gap: 1rem; } }
.shop-filter-dropdown { position: relative; flex: 1; }
@media (min-width: 640px) { .shop-filter-dropdown { max-width: 20rem; } }
.shop-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; }
.shop-filter-dropdown__btn:hover { border-color: var(--color-primary); }
.shop-filter-dropdown.is-open .shop-filter-dropdown__btn svg { transform: rotate(180deg); }
.shop-filter-dropdown__btn svg { transition: transform 0.3s ease; }
.shop-filter-dropdown__labels { display: flex; flex-direction: column; align-items: flex-start; }
.shop-filter-dropdown__label { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-filter-dropdown__value { font-size: 0.875rem; margin-top: 2px; }
.shop-filter-dropdown__menu { position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px; z-index: 30; background: var(--color-background); border: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); max-height: 20rem; overflow-y: auto; display: none; }
.shop-filter-dropdown.is-open .shop-filter-dropdown__menu { display: block; }
.shop-filter-dropdown__menu button { width: 100%; text-align: left; padding: 0.65rem 1rem; font-size: 0.9rem; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.shop-filter-dropdown__menu button:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.shop-filter-dropdown__menu button.is-active::after {
	content: "";
	width: 0.45rem; height: 0.8rem;
	border-right: 2px solid var(--color-primary);
	border-bottom: 2px solid var(--color-primary);
	transform: rotate(45deg) translateY(-1px);
	flex-shrink: 0;
}
.shop-filter-clear-all { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-primary); align-self: center; }
@media (min-width: 640px) { .shop-filter-clear-all { align-self: flex-end; padding-bottom: 0.75rem; } }
.shop-filter-clear-all:hover { opacity: 0.7; }

/* Lovable shop grid: gap-x-2 md:gap-x-3 gap-y-3 (tight) — related uses gap-x-8 gap-y-12 */
.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	column-gap: 0.5rem;
	row-gap: 0.75rem;
}
@media (min-width: 640px) {
	.shop-product-grid, .theme-product-grid.shop-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 0.5rem;
		row-gap: 0.75rem;
	}
}
@media (min-width: 768px) {
	.shop-product-grid, .theme-product-grid.shop-product-grid {
		column-gap: 0.75rem;
	}
}
@media (min-width: 1024px) {
	.shop-product-grid, .theme-product-grid.shop-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 0.75rem;
		row-gap: 0.75rem;
	}
}

.theme-product-card-wrap { display: flex; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-muted); }
.theme-product-card__img { transition: transform 0.7s ease, opacity 0.3s ease; }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.03); }
.theme-product-card.is-sold-out .theme-product-card__img { opacity: 0.6; }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 4px 10px; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__info { padding-top: 1rem; padding-bottom: 0.25rem; flex: 1; }
.theme-product-card__title { font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 15px; font-family: var(--font-body); transition: color 0.3s ease; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.theme-product-card__price ins { text-decoration: none; color: var(--color-accent); }
.theme-product-card__price del { color: var(--color-muted-foreground); font-weight: 400; }

.shop-empty-state { padding: 5rem 0; text-align: center; border: 1px dashed var(--color-border); }
.shop-empty-state__heading { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty-state__text { font-size: 0.9rem; color: var(--color-muted-foreground); }
.shop-show-more-wrap { display: flex; justify-content: center; margin-top: 3rem; }

/* ------------------------------------------------------------------
 * Services
 * ------------------------------------------------------------------ */
.services-section { padding: 5rem 0; }
@media (min-width: 1024px) { .services-section { padding: 7rem 0; } }
.services-section__header { text-align: center; margin-bottom: 3.5rem; }
.services-heading { font-size: 2.25rem; line-height: 1.05; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-heading { font-size: 3.75rem; } }
.services-section__description { margin-top: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; color: var(--color-muted-foreground); font-size: 1rem; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.service-card { position: relative; background: color-mix(in srgb, var(--color-secondary) 40%, transparent); border: 1px solid var(--color-border); padding: 2rem; display: flex; flex-direction: column; overflow: hidden; transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
@media (min-width: 1024px) { .service-card { padding: 2.5rem; } }
.service-card:hover { background: color-mix(in srgb, var(--color-secondary) 70%, transparent); border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); transform: translateY(-6px); box-shadow: 0 18px 40px -24px color-mix(in srgb, var(--color-primary) 35%, transparent); }
.service-card__top-line { position: absolute; inset-inline: 0; top: 0; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease-out; }
.service-card:hover .service-card__top-line { transform: scaleX(1); }
.service-card__icon { width: 48px; height: 48px; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.3s ease; }
.service-card:hover .service-card__icon { background: var(--color-accent); transform: scale(1.1) rotate(-6deg); }
.service-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; transition: color 0.3s ease; }
.service-card__title--compact { font-size: 1.25rem; }
.service-card:hover .service-card__title { color: var(--color-primary); }
.service-card__body { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.service-card__bullets { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card__bullets li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.service-card__bullets svg { color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }
.service-card__cta { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); border-bottom: 1px solid var(--color-primary); padding-bottom: 4px; transition: color 0.3s ease, border-color 0.3s ease; }
.service-card__cta::after { content: "→"; }
.service-card__cta:hover { color: var(--color-accent); border-color: var(--color-accent); }

.pricing-banner { position: relative; margin-top: 4rem; width: 100%; overflow: hidden; min-height: 320px; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .pricing-banner { min-height: 420px; } }
.pricing-banner__video { object-position: 50% 22%; }
.pricing-banner__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.pricing-banner__content {
	position: absolute; inset: 0; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	padding: 4rem 1.5rem; text-align: center; color: #fff;
}
@media (min-width: 1024px) { .pricing-banner__content { padding: 6rem 3rem; } }
.pricing-banner__content-inner {
	padding: 2.5rem 2rem;
	max-width: 42rem;
	text-shadow: 0 2px 16px rgba(0,0,0,0.45);
	color: #fff;
}
@media (min-width: 768px) { .pricing-banner__content-inner { padding: 3rem; } }
.pricing-banner__title { font-size: 1.875rem; line-height: 1.2; margin: 0.75rem 0 1rem; font-weight: 600; color: #fff; }
@media (min-width: 768px) { .pricing-banner__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .pricing-banner__title { font-size: 3rem; } }
.pricing-banner__description { max-width: 36rem; margin: 0 auto 2rem; font-size: 0.9375rem; line-height: 1.7; color: color-mix(in srgb, #fff 90%, transparent); }
.pricing-banner__content .btn-fill-white { font-weight: 700; }

/* ------------------------------------------------------------------
 * Memberships
 * ------------------------------------------------------------------ */
.memberships-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .memberships-section { padding: 7rem 0; } }
.memberships-section__header { text-align: center; margin-bottom: 3.5rem; }
.memberships-heading { font-size: 2.25rem; line-height: 1.05; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .memberships-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .memberships-heading { font-size: 3.75rem; } }
.memberships-section__description { margin-top: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; color: var(--color-muted-foreground); font-size: 1rem; line-height: 1.7; }
/* Lovable: grid-cols-1 md:grid-cols-3 gap-6 lg:gap-8 */
.memberships-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem; /* gap-6 */
	align-items: stretch;
}
@media (min-width: 768px) {
	.memberships-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.memberships-grid { gap: 2rem; } /* lg:gap-8 */
}
.membership-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	padding: 2rem; /* p-8 */
}
@media (min-width: 1024px) { .membership-card { padding: 2.5rem; } } /* lg:p-10 */
.membership-card--highlight { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); box-shadow: var(--shadow-elevated); }
.membership-card__badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: var(--color-accent-foreground); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; padding: 4px 12px; white-space: nowrap; }
.membership-card__name { font-size: 1.875rem; margin-bottom: 0.5rem; font-family: var(--font-display); font-weight: 600; } /* text-3xl mb-2 */
.membership-card__tagline { font-size: 0.875rem; margin-bottom: 1rem; color: var(--color-muted-foreground); line-height: 1.5; } /* text-sm mb-4 */
.membership-card--highlight .membership-card__tagline { color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
.membership-card__price { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; color: var(--color-primary); } /* mb-6 */
.membership-card--highlight .membership-card__price { color: var(--color-accent); }
.membership-card__perks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; } /* space-y-3 mb-8 */
.membership-card__perks li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.membership-card--highlight .membership-card__perks li { color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); }
.membership-card__perks svg { color: var(--color-accent); margin-top: 2px; flex-shrink: 0; width: 1rem; height: 1rem; }
/* Lovable: flex flex-col gap-2 + primary CTA h-12 px-6 text-xs tracking-[0.24em] font-bold */
.membership-card__actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.membership-card__actions .btn-fill,
.membership-card__actions a.btn-fill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px; /* h-12 */
	height: auto;
	padding: 0.65rem 1.75rem; /* more lateral breathing room than px-6 */
	font-size: 0.6875rem; /* slightly under text-xs so long CTAs fit */
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	white-space: normal; /* override base .btn-fill nowrap */
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border: none;
	box-shadow: none;
	box-sizing: border-box;
}
.membership-card__actions .btn-fill:hover,
.membership-card__actions a.btn-fill:hover {
	opacity: 0.9;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}
.membership-card--highlight .membership-card__actions .btn-fill,
.membership-card--highlight .membership-card__actions a.btn-fill {
	background: var(--color-accent);
	color: var(--color-accent-foreground);
}
.membership-card--highlight .membership-card__actions .btn-fill:hover,
.membership-card--highlight .membership-card__actions a.btn-fill:hover {
	background: var(--color-accent);
	color: var(--color-accent-foreground);
}
/* Lovable secondary: h-11 px-6 text-[11px] tracking-[0.24em] font-semibold border-foreground */
.membership-card__actions .btn-outline,
.membership-card__actions a.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px; /* h-11 */
	padding: 0 1.5rem; /* px-6 */
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	background: transparent;
	border: 1px solid var(--color-foreground);
	color: var(--color-foreground);
}
.membership-card__actions .btn-outline:hover,
.membership-card__actions a.btn-outline:hover {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.membership-card--highlight .membership-card__actions .btn-outline,
.membership-card--highlight .membership-card__actions a.btn-outline {
	border-color: color-mix(in srgb, var(--color-primary-foreground) 40%, transparent);
	color: var(--color-primary-foreground);
}
.membership-card--highlight .membership-card__actions .btn-outline:hover,
.membership-card--highlight .membership-card__actions a.btn-outline:hover {
	background: var(--color-primary-foreground);
	color: var(--color-primary);
	border-color: var(--color-primary-foreground);
}
.memberships-section__note { margin-top: 2.5rem; text-align: center; font-size: 0.9rem; color: var(--color-muted-foreground); max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------
 * Testimonials
 * ------------------------------------------------------------------ */
.testimonials-section { background: var(--color-primary); color: var(--color-primary-foreground); padding: 5rem 0; }
@media (min-width: 1024px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-section__header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-section__eyebrow { color: var(--color-accent); }
.testimonials-heading { font-size: 2.25rem; line-height: 1.05; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .testimonials-heading { font-size: 3.75rem; } }
.testimonials-carousel__viewport { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%); }
.testimonials-carousel__track { display: flex; gap: 1.5rem; width: max-content; will-change: transform; }
.testimonial-card { width: 85vw; max-width: 420px; flex-shrink: 0; border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); background: color-mix(in srgb, var(--color-primary-foreground) 3%, transparent); padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 640px) { .testimonial-card { width: 380px; } }
@media (min-width: 1024px) { .testimonial-card { width: 420px; padding: 2.5rem; } }
.testimonial-card__stars { display: flex; gap: 4px; margin-bottom: 1.5rem; color: var(--color-accent); }
.testimonial-card__quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; margin-bottom: 1.5rem; flex: 1; }
.testimonial-card__meta { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); }
.testimonials-carousel__controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.testimonials-carousel__btn { width: 48px; height: 48px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 30%, transparent); display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); transition: background-color 0.3s ease, color 0.3s ease; }
.testimonials-carousel__btn:hover { background: var(--color-primary-foreground); color: var(--color-primary); }

/* ------------------------------------------------------------------
 * Mission
 * ------------------------------------------------------------------ */
.mission-grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; } }
.mission-grid__image-wrap { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .mission-grid__image-wrap { min-height: 100%; order: 1; } }
.mission-grid__copy { display: flex; flex-direction: column; justify-content: center; padding: 5rem 2rem; order: 1; }
@media (min-width: 768px) { .mission-grid__copy { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .mission-grid__copy { padding: 5rem 5rem; order: 2; } }
.mission-heading { font-size: 2.25rem; line-height: 1.05; margin: 1.5rem 0 2rem; }
@media (min-width: 768px) { .mission-heading { font-size: 3rem; } }
.mission-grid__text { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted-foreground); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 2.5rem; }
.mission-grid__quote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 768px) { .mission-grid__quote { font-size: 1.875rem; } }

/* ------------------------------------------------------------------
 * Founder / offers
 * ------------------------------------------------------------------ */
.founder-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .founder-section { padding: 7rem 0; } }
.founder-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; margin-bottom: 5rem; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 1fr 1fr; margin-bottom: 7rem; } }
.founder-grid__copy { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .founder-grid__copy { padding: 6rem 5rem; } }
.founder-grid__heading { font-size: clamp(3rem, 7vw, 6rem); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2.5rem; font-weight: 600; }
.founder-grid__text { display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 0.9375rem; line-height: 1.7; max-width: 36rem; }
.founder-grid__quote { font-family: var(--font-display); font-size: 1.5rem; padding-top: 1rem; }
@media (min-width: 1024px) { .founder-grid__quote { font-size: 1.875rem; } }
.founder-grid__image-wrap { position: relative; min-height: 400px; }
@media (min-width: 1024px) { .founder-grid__image-wrap { min-height: 700px; } }
.founder-grid__img { object-position: top center; }

.offers-block { scroll-margin-top: 7rem; }
.offers-block__header { text-align: center; margin-bottom: 2.5rem; }
.offerings-section__heading { font-size: 1.875rem; line-height: 1.05; }
@media (min-width: 768px) { .offerings-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .offerings-section__heading { font-size: 3rem; } }
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }
.offer-card { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--color-card); padding: 2rem; border: 1px solid color-mix(in srgb, var(--color-border) 5%, transparent); transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth); }
@media (min-width: 768px) { .offer-card { padding: 2.5rem; } }
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.offer-card__corner { position: absolute; width: 16px; height: 16px; border-color: var(--color-accent); opacity: 0; transition: opacity 0.7s ease; }
.offer-card__corner--tl { top: 1rem; left: 1rem; border-top: 1px solid; border-left: 1px solid; }
.offer-card__corner--br { bottom: 1rem; right: 1rem; border-bottom: 1px solid; border-right: 1px solid; }
.offer-card:hover .offer-card__corner { opacity: 1; }
.offer-card__eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.5rem; display: block; }
.offer-card__label { font-family: var(--font-display); font-size: 1.5rem; }
@media (min-width: 768px) { .offer-card__label { font-size: 1.875rem; } }
.offer-card__sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.75rem; max-width: 15rem; line-height: 1.6; }
.offer-card__rule { display: block; margin: 2rem auto 0; width: 32px; height: 1px; background: color-mix(in srgb, var(--color-muted-foreground) 20%, transparent); transition: width 0.5s ease, background-color 0.5s ease; }
.offer-card:hover .offer-card__rule { width: 64px; background: var(--color-accent); }

/* ------------------------------------------------------------------
 * FAQ + connect
 * ------------------------------------------------------------------ */
.faq-connect-section {
	padding: 5rem 0 0; /* connect pulls into footer via negative margin */
	overflow: visible; /* do not clip the -mb pull */
}
@media (min-width: 1024px) { .faq-connect-section { padding: 7rem 0 0; } }
.faq-block { scroll-margin-top: 7rem; }
.faq-block__heading { font-size: 3rem; letter-spacing: -0.02em; margin-bottom: 4rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; font-weight: 600; }
@media (min-width: 768px) { .faq-block__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-block__heading { font-size: 4.5rem; } }
.faq-block__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-block__grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.faq-block__aside-inner { display: flex; flex-direction: column; gap: 1.5rem; padding: 3rem 0; }
@media (min-width: 1024px) { .faq-block__aside-inner { position: sticky; top: 8rem; padding: 4rem 0; } }
.faq-block__aside-inner p { font-size: 1rem; line-height: 1.6; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-block__aside-inner p { font-size: 1.125rem; } }
.faq-block__list { border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.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; }
.faq-item__question span:first-child { font-size: 0.95rem; line-height: 1.5; transition: color 0.3s ease; }
.faq-item:hover .faq-item__question span:first-child { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; margin-top: 2px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.faq-item .icon-minus { display: none; }
.faq-item.is-open .icon-plus { display: none; }
.faq-item.is-open .icon-minus { display: block; }
.faq-item__answer { height: 0; overflow: hidden; transition: height 0.4s var(--transition-smooth); }
.faq-item.is-open .faq-item__answer { height: auto; }
.faq-item__answer p { padding: 0 3rem 1.5rem 0; color: var(--color-muted-foreground); font-size: 0.9375rem; line-height: 1.7; }

/* Lovable connect: mt-24 -mb-20 lg:-mb-28 rounded-sm — floats above footer */
.connect-band {
	position: relative;
	z-index: 2; /* above .site-footer so it is not buried under newsletter */
	margin-top: 6rem; /* mt-24 */
	margin-bottom: -5rem; /* -mb-20 */
	overflow: hidden;
	border-radius: 0.125rem; /* rounded-sm */
	background-size: cover;
	background-position: center;
	scroll-margin-top: 7rem;
}
@media (min-width: 1024px) {
	.connect-band {
		margin-top: 6rem;
		margin-bottom: -7rem; /* lg:-mb-28 */
	}
}
.connect-band__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
/* Lovable: container-editorial text-center relative py-24 md:py-32 */
.connect-band__content.container-editorial,
.connect-band .connect-band__content {
	position: relative;
	text-align: center;
	padding-top: 6rem; /* py-24 */
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 768px) {
	.connect-band__content.container-editorial,
	.connect-band .connect-band__content {
		padding-top: 8rem; /* md:py-32 */
		padding-bottom: 8rem;
	}
}
@media (min-width: 1024px) {
	.connect-band__content.container-editorial,
	.connect-band .connect-band__content {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.connect-band__eyebrow { color: color-mix(in srgb, var(--color-background) 80%, transparent); margin-bottom: 1.25rem; }
.connect-band__heading { color: var(--color-background); font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; font-weight: 600; }
@media (min-width: 768px) { .connect-band__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .connect-band__heading { font-size: 3.75rem; } }
.connect-band__description { max-width: 32rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--color-background) 85%, transparent); font-size: 0.9375rem; line-height: 1.7; }
/* Lovable: flex flex-col sm:flex-row gap-3 justify-center */
.connect-band__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem; /* gap-3 */
	width: 100%;
}
@media (min-width: 640px) {
	.connect-band__buttons {
		flex-direction: row;
		align-items: center;
	}
}
.connect-band__buttons .btn-gold,
.connect-band__buttons .btn-technical-inverse {
	/* width only — never flex-basis 220px in column (that became 220px HEIGHT on mobile) */
	box-sizing: border-box;
	width: 220px;
	max-width: 100%;
	flex: 0 0 auto;
	margin: 0;
	height: 48px;
	min-height: 48px;
	max-height: 48px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	line-height: 1;
}
/* Mobile only: slightly tighter vertical rhythm around CTAs */
@media (max-width: 639px) {
	.connect-band__content.container-editorial,
	.connect-band .connect-band__content {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.connect-band__eyebrow { margin-bottom: 0.875rem; }
	.connect-band__heading { margin-bottom: 1.25rem; }
	.connect-band__description { margin-bottom: 1.5rem; }
	.connect-band__buttons { gap: 0.625rem; }
	.connect-band__buttons .btn-gold,
	.connect-band__buttons .btn-technical-inverse {
		width: min(220px, 100%);
	}
}
.connect-band__buttons .btn-gold {
	letter-spacing: 0.18em;
	font-size: 0.875rem;
	font-weight: 700;
	border: 1px solid var(--color-accent);
}
.connect-band__buttons .btn-technical-inverse {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-background);
	color: var(--color-foreground);
	border: 1px solid var(--color-foreground);
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 2rem;
}
.connect-band__buttons .btn-technical-inverse:hover {
	background: var(--color-foreground);
	color: var(--color-background);
}
.btn-gold { box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--color-accent) 60%, transparent); }

/* ------------------------------------------------------------------
 * Footer — parity with src/components/layout/Footer.tsx
 * ------------------------------------------------------------------ */
.site-footer {
	position: relative;
	z-index: 1; /* sit under .connect-band pull */
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	/* Clear the connect -mb overlap so newsletter content is not covered */
	padding-top: 5rem; /* matches connect -mb-20 */
}
@media (min-width: 1024px) {
	.site-footer {
		padding-top: 7rem; /* matches connect lg:-mb-28 */
	}
}

/* —— Newsletter band ——
 * Lovable: border-b border-primary-foreground/15
 *          container-wide py-14 lg:py-16 grid grid-cols-1 lg:grid-cols-12 gap-10 items-center
 */
.footer-newsletter-band {
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
}
.site-footer .footer-newsletter-band__inner.container-wide {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem; /* gap-10 */
	align-items: center;
	/* Longhands only — never padding shorthand (would wipe container px) */
	padding-top: 3.5rem; /* py-14 */
	padding-bottom: 3.5rem;
	padding-left: 1.5rem; /* px-6 */
	padding-right: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.site-footer .footer-newsletter-band__inner.container-wide {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		padding-top: 4rem; /* lg:py-16 */
		padding-bottom: 4rem;
		padding-left: 2.5rem; /* lg:px-10 */
		padding-right: 2.5rem;
	}
	.site-footer .footer-newsletter-band__copy {
		grid-column: 1 / span 6;
		min-width: 0;
	}
	.site-footer .footer-newsletter-form {
		grid-column: 7 / span 6;
		min-width: 0;
	}
}
.footer-newsletter-band__eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.32em; /* tracking-[0.32em] */
	text-transform: uppercase;
	font-weight: 600;
	color: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent);
	margin: 0 0 0.75rem; /* mb-3 */
}
.footer-newsletter-band__heading {
	font-family: var(--font-display);
	font-size: 1.875rem; /* text-3xl */
	line-height: 1.1; /* leading-[1.1] */
	font-weight: 600;
	letter-spacing: -0.005em;
	margin: 0;
	color: var(--color-primary-foreground);
}
@media (min-width: 1024px) {
	.footer-newsletter-band__heading { font-size: 2.25rem; } /* lg:text-4xl */
}
.footer-newsletter-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
}
.footer-newsletter-form__input {
	flex: 1 1 auto;
	min-width: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 40%, transparent);
	padding: 0.75rem 0.25rem; /* py-3 px-1 */
	font-size: 0.875rem; /* text-sm */
	font-family: var(--font-body);
	line-height: 1.5;
	color: var(--color-primary-foreground);
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.footer-newsletter-form__input::placeholder {
	color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent);
	opacity: 1;
}
.footer-newsletter-form__input:focus {
	outline: none;
	border-bottom-color: var(--color-primary-foreground);
}
.footer-newsletter-form__submit {
	flex: 0 0 auto;
	margin-left: 0.75rem; /* ml-3 */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0 1.5rem; /* px-6 */
	height: 48px; /* h-12 */
	background: var(--color-accent);
	color: var(--color-accent-foreground);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	border: 0;
	border-radius: 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
	cursor: pointer;
}
.footer-newsletter-form__submit:hover { opacity: 0.9; }
.footer-newsletter-form__submit svg {
	width: 0.875rem; /* w-3.5 */
	height: 0.875rem;
	flex-shrink: 0;
}

/* —— Main grid ——
 * Lovable: container-wide py-16 lg:py-20
 *          grid grid-cols-1 md:grid-cols-2 lg:grid-cols-12 gap-10 lg:gap-12
 *          brand lg:col-span-4 · link cols lg:col-span-2 each
 */
.site-footer .footer-main.container-wide {
	padding-top: 4rem; /* py-16 */
	padding-bottom: 4rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.site-footer .footer-main.container-wide {
		padding-top: 5rem; /* lg:py-20 */
		padding-bottom: 5rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.site-footer .footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem; /* gap-10 */
	align-items: start;
}
@media (min-width: 768px) {
	.site-footer .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.site-footer .footer-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 3rem; /* lg:gap-12 */
	}
	/* Critical: brand must win over link columns (same base class) */
	.site-footer .footer-col--brand {
		grid-column: span 4 / span 4;
		min-width: 0;
	}
	.site-footer .footer-col--links {
		grid-column: span 2 / span 2;
		min-width: 0;
	}
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
/* Lovable: h-16 w-auto — beat global `img { height: auto }` */
.site-footer .footer-logo .footer-logo-img {
	display: block;
	height: 64px !important; /* h-16 */
	width: auto !important;
	max-width: none;
	max-height: 64px;
	filter: brightness(0) invert(1);
	transform: none;
}
.footer-logo-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--color-primary-foreground);
}
.footer-col--brand__text {
	margin: 1.5rem 0 0; /* mt-6 */
	font-size: 0.875rem; /* text-sm */
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent);
	max-width: 24rem; /* max-w-sm */
	line-height: 1.625; /* leading-relaxed */
}
.footer-social {
	display: flex;
	align-items: center;
	gap: 1rem; /* gap-4 */
	margin-top: 1.75rem; /* mt-7 */
}
.footer-social a {
	display: inline-flex;
	color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent);
	transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--color-primary-foreground); }
.footer-social svg { display: block; width: 1.25rem; height: 1.25rem; } /* w-5 h-5 */

.footer-col__title {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent);
	margin: 0 0 1.25rem; /* mb-5 */
}

/* Kill WP menu chrome inside footer */
.site-footer .footer-link-list,
.site-footer .footer-link-list .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 0.75rem; /* space-y-3 */
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer .footer-link-list .menu-item,
.site-footer .footer-link-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer .footer-link-list a {
	display: inline;
	font-size: 0.875rem; /* text-sm */
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.5;
	color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent);
	transition: color 0.3s ease;
	text-decoration: none;
	background: none;
	border: 0;
	padding: 0;
	box-shadow: none;
}
.site-footer .footer-link-list a:hover {
	color: var(--color-primary-foreground);
}

/* Contact column — Lovable Mail/Phone rows */
.footer-contact-list__item {
	display: flex;
	gap: 0.5rem; /* gap-2 */
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent);
}
.footer-contact-list__item--email { align-items: flex-start; }
.footer-contact-list__item--phone { align-items: center; }
.footer-contact-list__item svg {
	width: 1rem; /* w-4 */
	height: 1rem;
	flex-shrink: 0;
	margin-top: 0.125rem; /* mt-0.5 on email */
	color: inherit;
}
.footer-contact-list__item--phone svg { margin-top: 0; }
.footer-contact-list__item a {
	color: inherit;
	word-break: break-all; /* break-all on email */
}
.footer-contact-list__item a:hover { color: var(--color-primary-foreground); }

.footer-bottom {
	margin-top: 4rem; /* mt-16 */
	padding-top: 1.5rem; /* pt-6 */
	border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-align: center;
}
@media (min-width: 640px) {
	.footer-bottom { flex-direction: row; }
}
.footer-bottom p {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-primary-foreground) 55%, transparent);
	margin: 0;
}

/* ------------------------------------------------------------------
 * Side cart drawer + overlay
 * ------------------------------------------------------------------ */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 150; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; }
body.cart-open #theme-cart-overlay { visibility: visible; opacity: 1; }
#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background); z-index: 151; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s 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); }
.theme-cart-drawer__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 4px; }
.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__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; }
/* Lovable: w-24 h-32 overflow-hidden + object-cover */
.theme-cart-item__image {
	position: relative;
	display: block;
	width: 96px; /* w-24 */
	height: 128px; /* h-32 */
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
}
.theme-cart-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item__name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__variation { font-size: 0.8rem; color: var(--color-muted-foreground); font-style: italic; margin-top: 0.35rem; }
.theme-cart-item__price { font-size: 0.9rem; margin-top: 0.35rem; }
.theme-cart-item__controls { 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: 6px 10px; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty span { padding: 0 12px; min-width: 28px; text-align: center; font-size: 0.9rem; }
.theme-cart-item__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__tax-note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; letter-spacing: 0.28em; }
/* Lovable: Pair it with... flex gap-3, w-32, aspect-[3/4] object-cover */
.theme-cart-pair { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-pair__title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.theme-cart-pair__track {
	display: flex;
	gap: 0.75rem; /* gap-3 */
	overflow-x: auto;
	padding-bottom: 0.5rem;
	margin-left: -0.25rem;
	margin-right: -0.25rem;
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}
.theme-cart-pair__item {
	flex: 0 0 8rem; /* w-32 */
	width: 8rem;
	max-width: 8rem;
	display: block;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: inherit;
	font: inherit;
}
.theme-cart-pair__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--color-secondary);
	margin-bottom: 0.5rem; /* mb-2 */
}
.theme-cart-pair__img {
	transition: transform 0.7s ease;
}
.theme-cart-pair__item:hover .theme-cart-pair__img { transform: scale(1.05); }
.theme-cart-pair__name {
	display: block;
	font-size: 0.75rem; /* text-xs */
	font-family: var(--font-body);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.theme-cart-pair__price {
	display: block;
	margin-top: 0.125rem;
	font-size: 0.75rem;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
}

/* View cart link injected by WooCommerce after AJAX add — not in design */
.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; }

/* ------------------------------------------------------------------
 * Add to cart button overrides (Section 11.4.1)
 * ------------------------------------------------------------------ */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border: 1px solid var(--color-primary) !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: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
	width: 100%;
	text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	background-color: transparent !important;
	color: var(--color-primary) !important;
}
/* Lovable ATC: bg-foreground / hover primary */
.single-product-main .single_add_to_cart_button.button,
.single-product-main a.single_add_to_cart_button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-color: var(--color-foreground) !important;
	min-height: 3.5rem !important;
	height: 3.5rem !important;
	letter-spacing: 0.28em !important;
	font-size: 0.75rem !important;
}
.single-product-main .single_add_to_cart_button.button:hover,
.single-product-main a.single_add_to_cart_button:hover {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-color: var(--color-primary) !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-foreground) !important;
	color: var(--color-background) !important;
}
.single-product-main .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 notices — scoped visibility (Section 14.1)
 * ------------------------------------------------------------------ */
.single-product-main .woocommerce-message,
.single-product-main .woocommerce-info,
.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: 1px solid var(--color-border);
	border-top: 3px solid var(--color-primary);
	background: var(--color-card);
	padding: 1rem 1.5rem;
	list-style: none;
	font-size: 0.9rem;
}
.woocommerce-error { border-top-color: #b3261e; }

/* ------------------------------------------------------------------
 * Single product — Lovable ProductDetail.tsx
 * ------------------------------------------------------------------ */
.single-product-main {
	background: var(--color-background);
	min-width: 0;
}
.single-product-main .theme-product-single {
	margin: 0;
	padding: 0;
	max-width: none;
	float: none !important;
	width: 100% !important;
}
.theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	min-width: 0;
}
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 1fr) 440px;
	}
}
@media (min-width: 1280px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 1fr) 500px;
	}
}
.theme-product-gallery,
.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; }
.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; padding: 1.5rem; }
}
.theme-product-thumbnails--mobile {
	display: flex;
	gap: 0.5rem;
	padding: 1rem;
	overflow-x: auto;
}
@media (min-width: 768px) {
	.theme-product-thumbnails--mobile { display: none; }
}
.theme-product-thumb {
	width: 4rem;
	height: 4rem;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid transparent;
	opacity: 0.6;
	transition: opacity 0.3s ease, border-color 0.3s ease;
	padding: 0;
	background: none;
}
@media (min-width: 1024px) {
	.theme-product-thumbnails--desktop .theme-product-thumb {
		width: 4rem;
		height: 4rem;
	}
}
.theme-product-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	position: static !important;
	display: block;
}
.theme-product-thumb.is-active,
.theme-product-thumb:hover {
	opacity: 1;
	border-color: var(--color-foreground);
}
.theme-product-main-image-wrap {
	flex: 1;
	min-width: 0;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
@media (min-width: 768px) {
	.theme-product-main-image-wrap {
		min-height: 78vh;
		padding: 2rem;
	}
}
@media (min-width: 1024px) {
	.theme-product-main-image-wrap { min-height: 88vh; }
}
.theme-product-main-img {
	position: static !important;
	width: 100% !important;
	height: auto !important;
	max-height: 88vh;
	object-fit: contain !important;
	display: block;
}

.theme-product-info { padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 3rem; } }
.theme-product-breadcrumb {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	margin-bottom: 1.5rem;
}
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin: 0 0.5rem; }
.product-title {
	font-family: var(--font-body) !important;
	font-weight: 400;
	font-size: 0.9375rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .product-title { font-size: 1rem; } }
.theme-product-info__sku {
	margin-top: 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
}
.theme-product-info__rule {
	height: 1px;
	background: var(--color-border);
	margin: 1.75rem 0;
}
.theme-product-info__price {
	font-family: var(--font-body);
	font-size: 1.125rem;
	color: var(--color-foreground);
	margin: 0;
}
.theme-product-info__note {
	margin-top: 1.75rem;
	background: color-mix(in srgb, var(--color-secondary) 70%, transparent);
	padding: 1rem 1.25rem;
	font-size: 13px;
	line-height: 1.6;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	overflow-wrap: break-word;
}
.theme-product-sizes { margin-top: 1.75rem; }
.theme-product-sizes__label {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.theme-product-sizes__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-size-chip {
	min-width: 56px;
	padding: 0.625rem 1rem;
	font-size: 0.75rem;
	font-family: var(--font-body);
	letter-spacing: 0.05em;
	border: 1px solid var(--color-border);
	background: transparent;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-size-chip:hover { border-color: var(--color-foreground); }
.theme-size-chip.is-selected {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.theme-product-cta { margin-top: 2rem; }
.theme-attr-select-hidden { display: none !important; }

.theme-product-details { margin-top: 3rem; }
.theme-product-details__title {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-foreground);
	margin: 0 0 1.25rem;
}
.theme-product-details__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;
	white-space: pre-line;
}
.theme-product-details__description p { margin: 0 0 1rem; }
.theme-product-details__description p:last-child { margin-bottom: 0; }
.theme-product-details__list {
	list-style: disc;
	padding-left: 1.25rem;
	margin: 1.5rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.theme-product-details__list li {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.theme-product-details__list li::marker { color: var(--color-primary); }

.related-products-section {
	padding: 6rem 0;
	border-top: 1px solid var(--color-border);
	margin-top: 3rem;
}
.related-products__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.related-products__heading {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1.15;
	margin: 0;
}
@media (min-width: 768px) { .related-products__heading { font-size: 2.25rem; } }
.related-products__heading-em { font-style: italic; font-weight: inherit; }
.related-products__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	column-gap: 2rem;
	row-gap: 3rem;
}
@media (min-width: 640px) {
	.related-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
	.related-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.theme-related-card { display: block; min-width: 0; }
.theme-related-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--color-muted);
}
.theme-related-card__media img {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.7s ease, opacity 0.3s ease;
}
.theme-related-card:hover .theme-related-card__media img { transform: scale(1.03); }
.theme-related-card__media img.is-sold-out { opacity: 0.6; }
.theme-related-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 4px 10px;
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-related-card__body { padding-top: 1rem; padding-bottom: 0.25rem; }
.theme-related-card__title {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 15px;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.theme-related-card:hover .theme-related-card__title { color: var(--color-primary); }
.theme-related-card__price {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	font-family: var(--font-body);
}

/* Hide leftover WC chrome on single */
.single-product-main .woocommerce-product-gallery,
.single-product-main .woocommerce-tabs,
.single-product-main .product_meta,
.single-product-main .onsale,
.single-product-main .woocommerce-breadcrumb { display: none !important; }

/* ------------------------------------------------------------------
 * Shop archive (category/tag pages)
 * ------------------------------------------------------------------ */
.shop-archive { padding-top: calc(var(--header-height) + 3rem); padding-bottom: 5rem; }
.shop-archive__header { margin-bottom: 2.5rem; }
.page-title { font-family: var(--font-display); font-size: 2.25rem; }
.shop-archive__pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.shop-archive__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border: 1px solid var(--color-border); font-size: 0.85rem; }
.shop-archive__pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* ------------------------------------------------------------------
 * 404
 * ------------------------------------------------------------------ */
.page-404 { padding-top: calc(var(--header-height) + 6rem); padding-bottom: 6rem; text-align: center; max-width: 40rem; }
.page-404__title { font-size: 2.25rem; margin-bottom: 1rem; }
.page-404__text { color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* ------------------------------------------------------------------
 * Generic page shell (page.php)
 * ------------------------------------------------------------------ */
.page-shell { padding-top: calc(var(--header-height) + 3rem); padding-bottom: 5rem; }
.page-shell .page-title { margin-bottom: 2rem; }

/* ------------------------------------------------------------------
 * Checkout Block overrides (Section 13)
 * ------------------------------------------------------------------ */
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
	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-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-card);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
	margin-top: 1.5rem;
}
@media (min-width: 768px) { body.woocommerce-checkout .wc-block-checkout__sidebar { margin-top: 0; } }
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);
	border: 1px solid var(--color-border);
	border-radius: var(--btn-radius);
	background: var(--color-background);
	color: var(--color-foreground);
	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;
	border-color: var(--color-primary);
}
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) !important;
	font-family: var(--font-body) !important;
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: var(--card-radius); }
body.woocommerce-checkout h2, body.woocommerce-checkout h3 { font-family: var(--font-display); font-weight: 400; }

/* ------------------------------------------------------------------
 * Cart / My Account width parity (Section 13.7)
 * ------------------------------------------------------------------ */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-cart .entry-content, body.woocommerce-account .entry-content { max-width: 100%; }
body.woocommerce-cart .wc-block-cart, body.woocommerce-account .woocommerce-MyAccount-content { background: var(--color-card); padding: var(--section-padding); }

/* ------------------------------------------------------------------
 * Thank-you page (Section 22.8)
 * ------------------------------------------------------------------ */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 3rem); padding-bottom: 5rem; }
body.theme-thankyou-page .woocommerce-order { max-width: 900px; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; padding: 0 0 1rem; }
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-card); }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.85rem; }
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; }
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; font-style: normal; line-height: 1.7; }

/* ------------------------------------------------------------------
 * Utilities
 * ------------------------------------------------------------------ */
[hidden] { display: none !important; }
