/* =========================================================================
   Bayou Diva Defense — theme.css
   ========================================================================= */

:root {
	--color-background: #100a0c;
	--color-foreground: #f6f1ea;
	--color-primary: #6fa630;
	--color-primary-foreground: #f9f6f1;
	--color-accent: #f2369a;
	--color-accent-foreground: #f9f6f1;
	--color-ivory: #1b1316;
	--color-linen: #1d1618;
	--color-border: #3b2b30;
	--color-button-text: var(--color-primary-foreground);

	--color-muted-foreground: #bab0a1;
	--color-sparkle-gold: #edc76e;
	--color-sparkle-cream: #f1e4d0;
	--color-destructive: #dd2c38;

	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--container-max: 1400px;
	--header-height: 104px;
	--logo-height: 48px;

	--radius-lg: 0.75rem;
	--radius-md: 0.5625rem;
	--radius-sm: 0.4375rem;

	--btn-radius: 9999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--shadow-soft: 0 4px 20px -8px rgba(0, 0, 0, 0.55);
	--shadow-elevated: 0 24px 60px -20px rgba(50, 5, 20, 0.75);
}

/* -------------------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.6;
	font-feature-settings: 'ss01', 'cv11';
	-webkit-font-smoothing: antialiased;
	background-image:
		radial-gradient(ellipse at 20% -10%, color-mix(in srgb, var(--color-accent) 10%, transparent), transparent 55%),
		radial-gradient(ellipse at 85% 110%, color-mix(in srgb, var(--color-primary) 8%, transparent), transparent 60%);
	background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: inherit;
	letter-spacing: -0.014em;
	margin: 0;
	line-height: 1.15;
}

p { margin: 0; }
a, button, [role="button"], label[for], summary,
.theme-btn, .theme-nav-link, .theme-cat-filter, .theme-swatch,
.theme-faq-item__question, .site-header__burger,
.site-header__cart-btn, .theme-cart-drawer__close,
.theme-product-thumb, .theme-shop-cat-link,
.theme-product-card__view-btn, .theme-contact__social-btn,
.theme-cart-item__qty-btn, .theme-cart-item__remove,
.theme-qty-minus, .theme-qty-plus,
.theme-related-products__viewall,
.theme-promo-banner__close,
input[type="submit"], input[type="button"], input[type="reset"],
.theme-mobile-nav-list a {
	cursor: pointer;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image):not(.theme-product-gallery__img):not(.theme-related-card__img):not(.theme-product-thumb img):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__image,
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.theme-product-thumb { position: relative; }
.theme-product-gallery__main { position: relative; }
.theme-product-gallery__img,
.theme-related-card__img {
	position: static !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

section[id] { scroll-margin-top: 80px; }

.container-wide {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }

.theme-no-hero .theme-page,
.theme-no-hero .theme-archive-shop,
.theme-no-hero .single-product-main,
.theme-no-hero .theme-404,
body:not(.theme-no-hero) .site-main.theme-home { }
.theme-no-hero .site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main.single-product-main {
	padding-top: 6rem !important;
	padding-bottom: 5rem;
	background: var(--color-ivory);
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main { padding-top: 7rem !important; }
}
/* Cart & checkout — match React Checkout.tsx (pt-24 lg:pt-28 + container py-10) */
body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main {
	padding-top: 6rem;
	padding-bottom: 4rem;
	background: var(--color-ivory);
}
@media (min-width: 1024px) {
	body.woocommerce-cart .site-main,
	body.woocommerce-checkout .site-main {
		padding-top: 7rem;
	}
}
body.woocommerce-cart .site-main .container-wide,
body.woocommerce-checkout .site-main .container-wide {
	padding-top: 2.5rem;
	padding-bottom: 0;
}

/* -------------------------------------------------------------------------
   REVEAL / SCROLL ANIMATION SYSTEM
   ---------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal-item[data-reveal-type="fade"] { transform: none; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
body.is-customizer .theme-shop-item--extra {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.site-header__mobile-panel {
		animation: none;
	}
	.theme-promo-banner { animation: none; }
}

/* -------------------------------------------------------------------------
   SPARKLE FIELD
   ---------------------------------------------------------------------- */
.theme-sparkle-field {
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}
.theme-sparkle-particle {
	position: absolute;
	top: 0;
	width: var(--size, 6px);
	height: var(--size, 6px);
	background: var(--color-sparkle-gold);
	border-radius: 9999px;
	box-shadow: 0 0 6px color-mix(in srgb, var(--color-sparkle-gold) 80%, transparent), 0 0 12px color-mix(in srgb, var(--color-sparkle-gold) 35%, transparent);
	animation: sparkle-fall var(--fall, 14s) linear var(--delay, 0s) infinite, sparkle-twinkle var(--twinkle, 2.4s) ease-in-out var(--delay, 0s) infinite;
	will-change: transform, opacity;
}
.theme-sparkle-particle.is-fuchsia { background: var(--color-accent); box-shadow: 0 0 6px color-mix(in srgb, var(--color-accent) 75%, transparent), 0 0 14px color-mix(in srgb, var(--color-accent) 35%, transparent); }
.theme-sparkle-particle.is-cream { background: var(--color-sparkle-cream); box-shadow: 0 0 6px color-mix(in srgb, var(--color-sparkle-cream) 70%, transparent), 0 0 12px color-mix(in srgb, var(--color-sparkle-cream) 30%, transparent); }
@keyframes sparkle-fall {
	0% { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translate3d(var(--drift, 0), 110vh, 0) rotate(360deg); opacity: 0; }
}
@keyframes sparkle-twinkle {
	0%, 100% { opacity: var(--tw-min, 0.35); transform: scale(0.8); }
	50% { opacity: 1; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
	.theme-sparkle-particle { animation: none; opacity: 0.6; }
}

/* -------------------------------------------------------------------------
   ZEBRA EDGES
   ---------------------------------------------------------------------- */
.zebra-edges { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.zebra-edges::before, .zebra-edges::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: clamp(28px, 5vw, 72px);
	opacity: 0.55;
	background-image: repeating-linear-gradient(112deg,
		transparent 0 14px,
		color-mix(in srgb, var(--color-accent) 55%, transparent) 14px 16px,
		transparent 16px 34px,
		color-mix(in srgb, var(--color-accent) 28%, transparent) 34px 36px,
		transparent 36px 72px);
	mix-blend-mode: screen;
	filter: blur(0.3px);
	-webkit-mask-image: linear-gradient(to right, black 0%, black 55%, transparent 100%);
	mask-image: linear-gradient(to right, black 0%, black 55%, transparent 100%);
}
.zebra-edges::before { left: 0; }
.zebra-edges::after { right: 0; transform: scaleX(-1); }

/* -------------------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: 1px solid transparent;
	white-space: nowrap;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.theme-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.theme-btn--primary { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn--primary:hover { opacity: 0.9; }
.theme-btn--outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.theme-btn--outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn--glass { background: color-mix(in srgb, white 10%, transparent); color: #fff; border-color: color-mix(in srgb, white 40%, transparent); backdrop-filter: blur(12px); }
.theme-btn--glass:hover { background: color-mix(in srgb, white 20%, transparent); }
.theme-btn--ghost { background: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-btn--ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-btn--lg { height: 48px; padding: 0 1.75rem; }
.theme-btn--sm { height: 36px; padding: 0 1rem; }
.theme-btn--full { width: 100%; }
.theme-btn.disabled, .theme-btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; cursor: not-allowed; }

/* -------------------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.announcement-bar {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.announcement-bar__highlight { background: color-mix(in srgb, var(--color-primary) 80%, transparent); color: var(--color-primary-foreground); padding: 0.1rem 0.35rem; border-radius: 3px; }
.announcement-bar__prefix, .announcement-bar__suffix { opacity: 0.9; }

.site-header__bar { transition: background-color 500ms ease, border-color 500ms ease, backdrop-filter 500ms ease; background: transparent; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar,
.site-header__bar.is-solid,
.site-header.is-menu-open .site-header__bar {
	background: color-mix(in srgb, var(--color-ivory) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
	gap: 1rem;
}
@media (min-width: 1024px) {
	.site-header__inner {
		height: 5rem;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}
	.site-header__brand { grid-column: 1; grid-row: 1; }
	.site-header__nav { grid-column: 2; grid-row: 1; }
	.site-header__actions { grid-column: 3; grid-row: 1; }
}

.site-header__burger { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; color: #fff; transition: background-color 0.2s, color 0.2s; order: 1; flex-shrink: 0; }
.site-header.is-solid .site-header__burger,
.site-header__bar.is-solid .site-header__burger,
.site-header.is-menu-open .site-header__burger { color: var(--color-foreground); }
.site-header__burger:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
@media (min-width: 1024px) { .site-header__burger { display: none; } }

.site-header__brand { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; order: 2; min-width: 0; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-header__brand .site-logo-img {
	height: 2.5rem;
	width: auto;
	max-width: none;
	display: block;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
	transition: filter 0.5s ease, height 0.3s ease;
}
@media (min-width: 768px) {
	.site-header__brand .site-logo-img { height: var(--logo-height, 3rem); }
}
.site-header.is-solid .site-header__brand .site-logo-img,
.site-header__bar.is-solid .site-header__brand .site-logo-img,
.site-header.is-menu-open .site-header__brand .site-logo-img { filter: none; }
.site-header__brand .site-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: #fff; }
.site-header.is-solid .site-header__brand .site-logo-text,
.site-header__bar.is-solid .site-header__brand .site-logo-text { color: var(--color-foreground); }
.site-header__brand-name {
	display: none;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	white-space: nowrap;
	color: #fff;
	transition: color 0.5s ease;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.site-header.is-solid .site-header__brand-name,
.site-header__bar.is-solid .site-header__brand-name,
.site-header.is-menu-open .site-header__brand-name { color: var(--color-foreground); filter: none; }
@media (min-width: 640px) { .site-header__brand-name { display: inline; } }
@media (min-width: 768px) { .site-header__brand-name { font-size: 17px; } }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) { .site-header__nav { display: flex; justify-self: center; order: 2; } }
.site-header__nav .theme-nav-list { display: flex; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-link {
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, #fff 85%, transparent);
	transition: color 0.3s ease;
	position: relative;
	background: none;
	border: none;
	padding: 0;
	line-height: 1.4;
}
.site-header.is-solid .theme-nav-link,
.site-header__bar.is-solid .theme-nav-link { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-nav-link:hover,
.theme-nav-link.is-active { color: #fff; }
.site-header.is-solid .theme-nav-link:hover,
.site-header.is-solid .theme-nav-link.is-active,
.site-header__bar.is-solid .theme-nav-link:hover,
.site-header__bar.is-solid .theme-nav-link.is-active { color: var(--color-primary); }
.theme-nav-link.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 9999px;
	background: #fff;
	transform: scaleX(0);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.theme-nav-link.is-active::after { transform: scaleX(1); opacity: 1; }
.site-header.is-solid .theme-nav-link.is-active::after,
.site-header__bar.is-solid .theme-nav-link.is-active::after { background: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; order: 3; justify-self: end; flex-shrink: 0; }
.site-header__cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; color: #fff; transition: background-color 0.2s, color 0.2s; }
.site-header.is-solid .site-header__cart-btn,
.site-header__bar.is-solid .site-header__cart-btn,
.site-header.is-menu-open .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background: color-mix(in srgb, currentColor 8%, transparent); }
.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 9999px;
	background: var(--color-accent);
	color: var(--color-accent-foreground);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu — mirrors src/components/layout/Header.tsx */
.site-header__mobile-panel {
	display: block;
	border-top: 1px solid transparent;
	background: color-mix(in srgb, var(--color-ivory) 95%, transparent);
	backdrop-filter: blur(20px);
	animation: theme-fade-in 0.35s ease;
}
.site-header__mobile-panel[hidden] {
	display: none !important;
}
.site-header__mobile-panel.is-open {
	border-top-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
@media (min-width: 1024px) {
	.site-header__mobile-panel { display: none !important; }
}

.site-header__mobile-inner {
	padding-block: 1rem;
}

.theme-mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.theme-mobile-nav-list li {
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.theme-mobile-nav-list li:last-child {
	border-bottom: none;
}
.theme-mobile-nav-list a,
.theme-mobile-nav-link {
	display: block;
	padding: 0.75rem 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	background: none;
	border: none;
	transition: color 0.2s ease;
	opacity: 1;
	transform: none;
}
.theme-mobile-nav-list a:hover,
.theme-mobile-nav-link:hover,
.theme-mobile-nav-list a.is-active,
.theme-mobile-nav-link.is-active {
	color: var(--color-primary);
}
.theme-mobile-nav-list a::after,
.theme-mobile-nav-link::after {
	display: none;
}
.site-header.is-solid .theme-mobile-nav-list a,
.site-header.is-solid .theme-mobile-nav-link,
.site-header.is-menu-open .theme-mobile-nav-list a,
.site-header.is-menu-open .theme-mobile-nav-link {
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.site-header.is-solid .theme-mobile-nav-list a:hover,
.site-header.is-solid .theme-mobile-nav-link:hover,
.site-header.is-solid .theme-mobile-nav-list a.is-active,
.site-header.is-solid .theme-mobile-nav-link.is-active,
.site-header.is-menu-open .theme-mobile-nav-list a:hover,
.site-header.is-menu-open .theme-mobile-nav-link:hover,
.site-header.is-menu-open .theme-mobile-nav-list a.is-active,
.site-header.is-menu-open .theme-mobile-nav-link.is-active {
	color: var(--color-primary);
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-promo-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------------------
   PROMO BANNER
   ---------------------------------------------------------------------- */
.theme-promo-banner {
	position: fixed;
	bottom: 1.5rem;
	left: 1rem;
	right: 1rem;
	z-index: 55;
	max-width: 26rem;
	margin-left: auto;
	margin-right: auto;
	background: var(--color-foreground);
	color: var(--color-background);
	border-radius: 1rem;
	box-shadow: var(--shadow-elevated);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	animation: theme-promo-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 640px) {
	.theme-promo-banner { left: auto; right: 1.5rem; margin-right: 0; }
}
.theme-promo-banner.is-hidden { display: none; }
.theme-promo-banner__text { font-size: 13px; line-height: 1.6; flex: 1; }
@media (min-width: 640px) { .theme-promo-banner__text { font-size: 15px; } }
.theme-promo-banner__highlight { font-weight: 600; }
.theme-promo-banner__close {
	flex-shrink: 0;
	margin-top: 0.1rem;
	padding: 0.35rem;
	border-radius: 9999px;
	color: inherit;
	transition: background-color 0.2s;
}
.theme-promo-banner__close:hover { background: color-mix(in srgb, white 10%, transparent); }

/* -------------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */
.theme-hero { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.theme-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-hero__scrim { position: absolute; inset: 0; pointer-events: none; }
.theme-hero__scrim--dark { background: rgba(0,0,0,0.5); }
.theme-hero__scrim--dark55 { background: rgba(0,0,0,0.55); }
.theme-hero__scrim--radial { background-image: radial-gradient(at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.78) 100%); }
.theme-hero__content { position: relative; z-index: 10; text-align: center; color: #fff; padding: 10rem 0 6rem; }
@media (max-width: 639px) {
	.theme-hero__content {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
@media (min-width: 640px) and (max-width: 1023px) {
	.theme-hero__content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) { .theme-hero__content { padding: 13rem 0 8rem; } }

.theme-hero__badge-wrap { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.theme-hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border-radius: 9999px; background: color-mix(in srgb, #fff 10%, transparent); border: 1px solid color-mix(in srgb, #fff 30%, transparent); backdrop-filter: blur(12px); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }

.theme-hero__title { font-family: var(--font-display); color: #fff; line-height: 1.02; letter-spacing: -0.02em; max-width: 64rem; margin: 0 auto; text-shadow: 0 2px 30px rgba(0,0,0,0.55); font-size: 2rem; }
@media (min-width: 480px) { .theme-hero__title { font-size: 2.75rem; } }
@media (min-width: 768px) { .theme-hero__title { font-size: 3.6rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 4.4rem; } }
.theme-hero__break { display: none; }
@media (min-width: 640px) { .theme-hero__break { display: block; } }
.theme-hero__emphasis { font-style: italic; position: relative; display: inline-block; }
.theme-hero__emphasis-bg { position: absolute; left: -0.08em; right: -0.08em; top: 0.22em; bottom: 0.08em; z-index: -1; border-radius: 2px; background: color-mix(in srgb, var(--color-primary) 72%, transparent); transform: skew(-6deg); }
.theme-hero__emphasis-text { position: relative; }

.theme-hero__subtext { margin: 1.75rem auto 0; max-width: 42rem; font-size: 14px; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.7; }
@media (min-width: 640px) { .theme-hero__subtext { font-size: 15px; } }
.theme-hero__cta-row { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .theme-hero__cta-row { flex-direction: row; gap: 1rem; } }

/* -------------------------------------------------------------------------
   GENERIC SECTION LAYOUT
   ---------------------------------------------------------------------- */
.theme-section { position: relative; background: transparent; padding: 6rem 0; }
@media (min-width: 768px) { .theme-section { padding: 8rem 0; } }
.theme-section__inner { position: relative; z-index: 10; }
.theme-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; font-weight: 500; }
.theme-subtext { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; }
@media (min-width: 768px) { .theme-subtext { font-size: 15px; } }

/* -------------------------------------------------------------------------
   SHOP SECTION
   ---------------------------------------------------------------------- */
.theme-shop__header { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .theme-shop__header { flex-direction: row; align-items: flex-end; } }
.theme-shop__header-copy { max-width: 42rem; }
.theme-shop__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-shop__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop__heading { font-size: 3.2rem; } }
.theme-shop__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .theme-shop__search { width: 20rem; } }
.theme-shop__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-shop__search input { width: 100%; height: 44px; padding: 0 1rem 0 2.75rem; border-radius: 9999px; background: var(--color-linen); border: 1px solid var(--color-border); font-size: 14px; color: var(--color-foreground); }
.theme-shop__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-shop__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.theme-shop__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-cat-filter { height: 40px; padding: 0 1.25rem; border-radius: 9999px; font-size: 14px; font-weight: 500; border: 1px solid var(--color-border); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-shop__empty-msg { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-shop__viewmore { margin-top: 3rem; display: flex; justify-content: center; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem 1.5rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; width: 100%; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background: var(--color-linen); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card__image-wrapper > *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper img { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }

.theme-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; display: inline-flex; align-items: center; gap: 0.3rem; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; padding: 0.3rem 0.7rem; border-radius: 9999px; }
.theme-badge--soldout { background: var(--color-foreground); color: var(--color-background); font-size: 11px; letter-spacing: normal; text-transform: none; }
.theme-badge--addon { background: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground); border: 1px solid var(--color-border); }
.theme-badge--mystery { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-badge--lg { font-size: 11px; padding: 0.4rem 0.9rem; top: 1rem; left: 1rem; }

.theme-product-card__quick-actions { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 3; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; pointer-events: auto; }
.theme-product-card__quick-actions > * { pointer-events: auto; }
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	flex: 1 1 auto;
	min-height: 40px !important;
	height: 40px;
	border-radius: 9999px !important;
	background: color-mix(in srgb, var(--color-background) 95%, transparent) !important;
	color: var(--color-foreground) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	backdrop-filter: blur(6px);
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	text-transform: none !important;
	padding: 0 1rem !important;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover { background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; }
.theme-product-card__view-btn { width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground); display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); transition: background-color 0.3s, color 0.3s; }
.theme-product-card__view-btn:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__body { display: block; padding: 0 0.125rem; }
.theme-product-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.4rem; font-weight: 500; min-height: 1em; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; color: var(--color-foreground); transition: color 0.3s; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.4rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { font-weight: 500; }

/* -------------------------------------------------------------------------
   MARQUEE
   ---------------------------------------------------------------------- */
.theme-marquee { background: var(--color-primary); padding: 1.25rem 0; overflow: hidden; }
.theme-marquee__track { display: flex; white-space: nowrap; width: max-content; animation: theme-marquee 22s linear infinite; }
@media (prefers-reduced-motion: reduce) { .theme-marquee__track { animation: none; } }
.theme-marquee__item { display: flex; align-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--color-primary-foreground) 95%, transparent); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-marquee__item { font-size: 1.25rem; } }
.theme-marquee__text { margin: 0 1.5rem; }
@media (min-width: 768px) { .theme-marquee__text { margin: 0 2rem; } }
.theme-marquee__dot { color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); font-size: 0.9rem; }
@keyframes theme-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }

/* -------------------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------------- */
.theme-services__header { max-width: 48rem; margin-bottom: 3.5rem; }
.theme-offerings-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-offerings-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-offerings-heading { font-size: 3.2rem; } }
.theme-services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .theme-services__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.theme-service-card { background: var(--color-linen); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s; }
.theme-service-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-service-card__image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.theme-service-card__image { transition: transform 0.7s; }
.theme-service-card:hover .theme-service-card__image { transform: scale(1.05); }
.theme-service-card__body { padding: 2rem; }
.theme-service-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground); margin-bottom: 1.5rem; }
.theme-service-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.theme-service-card__text { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* -------------------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------------- */
.theme-about__top { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-about__top { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-about__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-about__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-about__heading { font-size: 3.4rem; } }
.theme-about__quote { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.35; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); border-left: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .theme-about__quote { font-size: 1.5rem; } }
.theme-about__body { display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
@media (min-width: 1024px) { .theme-about__body { padding-left: 1.5rem; } }

.theme-about__pillars { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .theme-about__pillars { grid-template-columns: repeat(3, 1fr); } }
.theme-pillar-card { border-radius: 1rem; overflow: hidden; border: 1px solid var(--color-border); background: var(--color-ivory); box-shadow: var(--shadow-soft); }
.theme-pillar-card__image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.theme-pillar-card__image { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-pillar-card:hover .theme-pillar-card__image { transform: scale(1.05); }
.theme-pillar-card__body { padding: 1.5rem; }
.theme-pillar-card__body h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.theme-pillar-card__body p { font-size: 13px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.theme-faq-section { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-faq__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-faq__grid { grid-template-columns: 4fr 8fr; } }
.theme-faq__side .theme-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-faq__side .theme-heading { font-size: 3rem; } }
.theme-faq__card { display: none; margin-top: 2.5rem; border-radius: 1rem; border: 1px solid var(--color-border); background: var(--color-ivory); padding: 1.75rem; }
@media (min-width: 1024px) { .theme-faq__card { display: block; } }
.theme-faq__card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground); margin-bottom: 1.25rem; }
.theme-faq__card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-faq__card p { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }

.theme-faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; }
@media (min-width: 768px) { .theme-faq-item__question span:first-child { font-size: 1.25rem; } }
.theme-faq-item__icon { flex-shrink: 0; color: var(--color-primary); }
.theme-faq-item__icon .icon-minus { display: none; }
.theme-faq-item.is-open .theme-faq-item__icon .icon-plus { display: none; }
.theme-faq-item.is-open .theme-faq-item__icon .icon-minus { display: block; }
.theme-faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease-out; }
.theme-faq-item.is-open .theme-faq-item__panel { grid-template-rows: 1fr; }
.theme-faq-item__panel-inner { overflow: hidden; }
.theme-faq-item__panel-inner p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; }
@media (min-width: 768px) { .theme-faq-item__panel-inner p { font-size: 15px; } }

/* -------------------------------------------------------------------------
   PRE-CONTACT CTA
   ---------------------------------------------------------------------- */
.theme-precta { position: relative; overflow: hidden; }
.theme-precta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-precta__content { position: relative; z-index: 10; padding: 7rem 0 10rem; text-align: center; color: #fff; }
@media (max-width: 639px) {
	.theme-precta__content {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
@media (min-width: 640px) and (max-width: 1023px) {
	.theme-precta__content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 768px) {
	.theme-precta__content {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
}
.theme-precta__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, #fff 85%, transparent); margin-bottom: 1.5rem; font-weight: 500; width: 100%; }
.theme-precta__rule { height: 1px; width: 2rem; background: color-mix(in srgb, #fff 60%, transparent); }
.theme-precta__title { font-family: var(--font-display); color: #fff; line-height: 1.05; max-width: 56rem; margin: 0 auto; text-shadow: 0 2px 30px rgba(0,0,0,0.55); font-size: 2rem; }
@media (min-width: 480px) { .theme-precta__title { font-size: 2.5rem; } }
@media (min-width: 768px) { .theme-precta__title { font-size: 3.2rem; } }
@media (min-width: 1280px) { .theme-precta__title { font-size: 4rem; } }
.theme-precta__subtext { margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.7; }
.theme-precta__content > div:last-child { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------------- */
.theme-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-contact__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.theme-contact__side { display: flex; flex-direction: column; height: 100%; }
.theme-contact-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact-title { font-size: 3.4rem; } }
.theme-contact__list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-contact__item { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s; }
.theme-contact__item:hover { color: var(--color-primary); }
.theme-contact__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-ivory); border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s; }
.theme-contact__item:hover .theme-contact__icon { border-color: var(--color-primary); }
.theme-contact__text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.theme-contact__label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact__value { font-size: 15px; font-weight: 500; word-break: break-word; }
.theme-contact__socials { display: flex; gap: 0.75rem; padding-top: 0.5rem; }
.theme-contact__social-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--color-ivory); border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; color: var(--color-foreground); transition: color 0.2s, border-color 0.2s; }
.theme-contact__social-btn:hover { color: var(--color-primary); border-color: var(--color-primary); }

.theme-contact__quote-card { position: relative; margin-top: auto; padding-top: 2.5rem; }
.theme-contact__quote-card::before { content: none; }
.theme-contact__quote-card { border-radius: 1rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.75rem; margin-top: 2.5rem; position: relative; }
.theme-contact__quote-badge { position: absolute; top: -0.9rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.75rem; border-radius: 9999px; background: var(--color-primary); color: var(--color-primary-foreground); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.theme-contact__quote { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .theme-contact__quote { font-size: 1.25rem; } }
.theme-contact__quote-author { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); letter-spacing: 0.02em; }

.theme-contact-form { background: var(--color-ivory); border: 1px solid var(--color-border); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; height: 100%; gap: 1rem; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .theme-contact-form { padding: 2rem; } }
.theme-contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.theme-form-group label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row { grid-template-columns: 1fr 1fr; } }
.theme-input { width: 100%; height: 48px; padding: 0 1rem; background: var(--color-linen); border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 14px; color: var(--color-foreground); transition: border-color 0.2s; }
.theme-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-input:focus { outline: none; border-color: var(--color-primary); }
.theme-textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-select-wrap { position: relative; }
.theme-select { appearance: none; padding-right: 2.5rem; }
.theme-select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact-form__submit { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.theme-contact-form__note { font-size: 12px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   FOOTER (mirrors src/components/layout/Footer.tsx)
   ---------------------------------------------------------------------- */
.site-footer {
	position: relative;
	background: transparent;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-footer__inner {
	position: relative;
	z-index: 10;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}
@media (min-width: 1024px) {
	.site-footer__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 640px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}
@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.72fr) minmax(0, 0.72fr) minmax(17rem, 1fr);
		gap: 2.5rem;
	}
}
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-img { height: 3.5rem; width: auto; }
.site-footer__brand-name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
	white-space: nowrap;
	color: var(--color-foreground);
}
.site-footer__description {
	margin-top: 1rem;
	font-size: 14px;
	line-height: 1.625;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	max-width: 20rem;
}
.site-footer__social { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.site-footer__social-link {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s, border-color 0.2s;
}
.site-footer__social-link:hover { color: var(--color-primary); border-color: var(--color-primary); }
.site-footer__heading {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--color-foreground);
	margin-bottom: 1rem;
}
.site-footer__links,
.site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.site-footer__contact { gap: 0.75rem; }
.site-footer__links a,
.theme-shop-cat-link {
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	transition: color 0.2s;
	background: none;
	border: none;
	text-align: left;
	padding: 0;
}
.site-footer__links a:hover,
.theme-shop-cat-link:hover { color: var(--color-primary); }
.site-footer__contact-link {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.2s;
}
.site-footer__contact-link svg {
	flex-shrink: 0;
	margin-top: 0.125rem;
}
.site-footer__contact-link.theme-mailto {
	white-space: nowrap;
}
.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__contact-static {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.site-footer__contact-static svg {
	flex-shrink: 0;
	margin-top: 0.125rem;
}
.site-footer__bottom {
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	text-align: center;
	font-size: 12px;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}

/* -------------------------------------------------------------------------
   CART DRAWER + OVERLAY
   ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; visibility: hidden; }
body.cart-open #theme-cart-overlay,
#theme-cart-overlay.is-open { opacity: 1; pointer-events: auto; visibility: visible; }

#theme-cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-ivory); z-index: 61; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); visibility: hidden; }
body.cart-open #theme-cart-drawer,
#theme-cart-drawer.is-open { transform: translateX(0); visibility: visible; }
body.admin-bar #theme-cart-drawer { top: 32px; height: calc(100% - 32px); }
@media (max-width: 782px) {
	body.admin-bar #theme-cart-drawer { top: 46px; height: calc(100% - 46px); }
}
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.4rem; border-radius: 50%; transition: background-color 0.2s; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 14px; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 80px; height: 96px; background: var(--color-linen); border-radius: 6px; overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; transition: color 0.2s; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.15rem; }
.theme-cart-item__variation { margin-top: 0.35rem; display: flex; flex-direction: column; gap: 0.15rem; }
.theme-cart-item__variation-line { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.4; }
.theme-cart-item__variation-label {
	display: inline;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 10px;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-primary) 90%, transparent);
	margin-right: 0.35rem;
}
.theme-cart-item__prefs { margin-top: 0.5rem; display: inline-flex; gap: 0.4rem; padding: 0.3rem 0.5rem; border-radius: 6px; background: color-mix(in srgb, var(--color-accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); max-width: 100%; }
.theme-cart-item__prefs-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--color-accent); font-weight: 500; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 0.2s; font-size: 14px; line-height: 1; }
.theme-cart-item__qty-btn:hover { background: var(--color-linen); }
.theme-cart-item__qty { font-size: 13px; width: 24px; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s; }
.theme-cart-item__remove:hover { color: var(--color-destructive); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* Hide WooCommerce's own "View cart" link after AJAX add */
.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 loading state */
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* -------------------------------------------------------------------------
   WOOCOMMERCE GLOBAL PRICE + NOTICES
   ---------------------------------------------------------------------- */
.woocommerce-Price-amount { font-family: inherit; }
del .woocommerce-Price-amount { opacity: 0.5; text-decoration: line-through; margin-right: 0.4rem; }
ins { text-decoration: none; }

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-sm);
	background: var(--color-ivory);
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	font-size: 14px;
}
.woocommerce-error { border-color: var(--color-destructive); }

/* -------------------------------------------------------------------------
   ADD TO CART BUTTON — GLOBAL OVERRIDE (Section 11.4.1)
   ---------------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
/* Card compact button — overrides global rules above */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 40px !important;
}

/* -------------------------------------------------------------------------
   SINGLE PRODUCT PAGE (mirrors ProductDetail.tsx)
   ---------------------------------------------------------------------- */
.theme-breadcrumbs { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumbs a { transition: color 0.2s; }
.theme-breadcrumbs a:hover { color: var(--color-primary); }
.theme-breadcrumbs__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumbs__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; padding-bottom: 5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; }
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; align-self: start; } }

.theme-product-gallery__main { aspect-ratio: 1 / 1; width: 100%; background: var(--color-linen); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.625rem; max-width: 100%; }
.theme-product-thumb { aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: 6px; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:not(.is-active):hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

.theme-product-info__cat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.theme-product-info__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	color: var(--color-foreground);
	margin-bottom: 1rem;
}
@media (min-width: 768px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__description { font-size: 15px; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p + p { margin-top: 1rem; }

.theme-mystery-prefs { margin-bottom: 1.5rem; }
.theme-mystery-prefs__label { display: block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 0.625rem; }
.theme-mystery-prefs__hint { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); text-transform: none; letter-spacing: normal; }
.theme-mystery-prefs__input { width: 100%; height: 44px; padding: 0 1rem; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); border-radius: 9999px; font-size: 14px; color: var(--color-foreground); }
.theme-mystery-prefs__input:focus { outline: none; border-color: var(--color-primary); }
.theme-mystery-prefs__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-mystery-prefs__note { margin-top: 0.5rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.theme-product-variations { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-variation-row { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-variation-label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0;
}
.theme-variation-selected {
	font-weight: 500;
	color: var(--color-foreground);
	letter-spacing: 0.08em;
	text-transform: none;
}

.theme-variation-select {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	border: 0;
}

.theme-swatch-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.theme-swatch {
	flex-shrink: 0;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.theme-swatch:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--color-background), 0 0 0 4px var(--color-primary);
}

.theme-swatch--text {
	min-height: 40px;
	padding: 0 1.25rem;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	border: 1px solid var(--color-border);
	background: transparent;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.theme-swatch--text:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.theme-swatch--text.is-selected {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}

.theme-swatch--color {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
}
.theme-swatch--color .theme-swatch__fill {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--swatch-color);
	border: 2px solid color-mix(in srgb, var(--color-foreground) 22%, transparent);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-foreground) 8%, transparent);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.theme-swatch--color.is-light .theme-swatch__fill {
	border-color: color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
.theme-swatch--color:hover .theme-swatch__fill {
	border-color: var(--color-primary);
	transform: scale(1.06);
}
.theme-swatch--color.is-selected .theme-swatch__fill {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px var(--color-ivory), 0 0 0 4px var(--color-primary);
	transform: scale(1.02);
}

.theme-variations-form .single_add_to_cart_button[disabled] { opacity: 0.5; cursor: not-allowed; }

.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 9999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 44px; transition: color 0.2s; line-height: 1; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-display { padding: 0 1rem; min-width: 44px; text-align: center; font-size: 14px; font-weight: 500; }
.theme-qty-input { display: none !important; }

.theme-product-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0; }
@media (min-width: 640px) {
	.theme-product-actions { flex-direction: row; }
	.theme-product-actions .theme-btn { flex: 1 1 0; }
}
.theme-product-actions .single_add_to_cart_button { min-width: 0; }

.theme-product-info__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); margin-bottom: 0; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__details-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; }
.theme-product-info__details-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--color-primary); margin: 0.625rem 0.75rem 0 0; flex-shrink: 0; }

.theme-product-info__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-trust-item { text-align: center; }
.theme-trust-item svg { margin: 0 auto 0.5rem; color: var(--color-primary); display: block; }
.theme-trust-item span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-related-products { padding: 5rem 0 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-related-products__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.theme-related-products__heading { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; }
@media (min-width: 768px) { .theme-related-products__heading { font-size: 2.25rem; } }
.theme-related-products__viewall { display: none; align-items: center; gap: 0.4rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s; }
@media (min-width: 640px) { .theme-related-products__viewall { display: inline-flex; } }
.theme-related-products__viewall:hover { color: var(--color-primary); }

.theme-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-related-card { display: block; color: inherit; transition: color 0.2s; }
.theme-related-card:hover .theme-related-card__title { color: var(--color-primary); }
.theme-related-card__image-wrap { aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; }
.theme-related-card__body { padding: 0 0.125rem; }
.theme-related-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.4rem; font-weight: 500; }
.theme-related-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.3; color: var(--color-foreground); transition: color 0.3s; font-weight: 400; }
@media (min-width: 768px) { .theme-related-card__title { font-size: 1.3rem; } }
.theme-related-card__price { margin-top: 0.4rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }

/* WooCommerce leftovers — hide on single product */
.single-product-main .woocommerce-product-gallery,
.single-product-main .woocommerce-tabs,
.single-product-main .product_meta,
.single-product-main .woocommerce-notices-wrapper { display: none !important; }
.single-product-main .product { float: none !important; width: 100% !important; max-width: 100% !important; }
.single-product-main .woocommerce-product-details__short-description { display: none !important; }

/* -------------------------------------------------------------------------
   SHOP ARCHIVE PAGE
   ---------------------------------------------------------------------- */
.theme-archive-shop { padding-top: 7rem; padding-bottom: 5rem; }
.theme-archive-shop__header { padding: 1rem 0 2.5rem; }
.page-title { font-size: 2.5rem; }
.theme-archive-shop__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   404
   ---------------------------------------------------------------------- */
.theme-404 { min-height: 70vh; display: flex; align-items: center; padding-top: 7rem; }
.theme-404__inner { text-align: center; max-width: 32rem; margin: 0 auto; }
.theme-404__title { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__text { margin-bottom: 2rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* -------------------------------------------------------------------------
   GENERIC PAGE
   ---------------------------------------------------------------------- */
.theme-page { padding-bottom: 4rem; }
body:not(.woocommerce-cart):not(.woocommerce-checkout) .theme-page { padding-top: 7rem; }
.theme-page .page-title { margin-bottom: 2rem; }
.entry-content { font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.entry-content p + p { margin-top: 1rem; }

/* -------------------------------------------------------------------------
   WOOCOMMERCE THANK YOU PAGE (Section 22.8)
   ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 7rem; }
body.theme-thankyou-page .woocommerce-order { max-width: 48rem; margin: 0 auto; }
body.theme-thankyou-page h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.75rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 1.5rem;
	margin: 0 0 2rem;
	background: var(--color-ivory);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}
@media (min-width: 640px) { body.theme-thankyou-page .woocommerce-order-overview { grid-template-columns: repeat(4, 1fr); } }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 13px; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-size: 15px; margin-top: 0.25rem; }
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;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	font-style: normal;
	background: var(--color-ivory);
}
body.theme-thankyou-page .woocommerce-order-details { margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 14px;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* -------------------------------------------------------------------------
   WOOCOMMERCE CART & CHECKOUT BLOCKS
   ---------------------------------------------------------------------- */
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content {
	max-width: 100%;
}
body.woocommerce-cart .entry-content > :first-child,
body.woocommerce-checkout .entry-content > :first-child {
	margin-top: 0;
}
body.woocommerce-cart .wc-block-cart,
body.woocommerce-checkout .wc-block-checkout {
	margin-top: 0;
	padding-top: 0;
}
body.woocommerce-cart .page-title,
body.woocommerce-checkout .page-title,
body.woocommerce-account .page-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
	max-width: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout {
	font-family: var(--font-body);
	color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout__main { order: 1; }
	body.woocommerce-checkout .wc-block-checkout__sidebar { order: 2; }
}
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-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-ivory);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	position: sticky;
	top: calc(7rem + 1.5rem);
	align-self: start;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-foreground);
	background: var(--color-linen);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-label,
body.woocommerce-checkout .wc-blocks-components-select__label,
body.woocommerce-checkout .wc-block-components-select label {
	color: #000;
}

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);
	text-transform: none;
	height: var(--btn-height);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	background: var(--color-ivory);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-foreground);
}

/* -------------------------------------------------------------------------
   RESPONSIVE UTILITIES
   ---------------------------------------------------------------------- */
@media (max-width: 767px) {
	.theme-precta__title { font-size: 2rem; }
}
