/* ==========================================================================
   Candle Bunkhouse — theme.css
   ==========================================================================
   Color tokens are injected at runtime via theme_get_theme_colors() in
   inc/theme-colors.php (PHP :root). HSL source of truth: src/index.css :root.

   Customizer-editable tokens (12) — Lovable → WordPress mapping:
   --background         → --color-background
   --foreground         → --color-foreground
   --primary            → --color-primary
   --primary-foreground → --color-primary-foreground
   --secondary          → --color-secondary
   --accent             → --color-accent
   --muted-foreground   → --color-muted-foreground
   --border             → --color-border
   --panel              → --color-panel
   --hairline           → --color-hairline
   --forest             → --color-forest
   --cream              → --color-cream

   Structural tokens (fixed in CSS, not in Customizer): --color-muted,
   --color-primary-hover, --color-panel-foreground.
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. RESET / BASE                                                            */
/* -------------------------------------------------------------------------- */

:root {
	--font-display: 'Bitter', Georgia, serif;
	--font-body: 'Barlow', 'Helvetica Neue', sans-serif;
	--font-condensed: 'Barlow Condensed', 'Barlow', sans-serif;

	--radius: 0.25rem;
	--radius-pill: 999px;
	--card-radius: 0.5rem;

	--shadow-soft: 0 6px 24px -8px rgba(30, 20, 10, 0.10);
	--shadow-elevated: 0 14px 40px -12px rgba(30, 20, 10, 0.18);
	--shadow-hover: 0 18px 44px -20px rgba(30, 20, 10, 0.30);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);

	--header-offset: 148px;
	--header-height: 80px;
	--checkout-gap: 2rem;

	--btn-radius: var(--radius-pill);
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.24em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0 0.9rem;

	--color-muted: color-mix(in srgb, var(--color-secondary) 100%, transparent);
	--color-primary-hover: color-mix(in srgb, var(--color-primary) 90%, black 4%);
}

* { box-sizing: border-box; }
html {
	scroll-padding-top: var(--header-offset, 148px);
}
html, body { overflow-x: clip; max-width: 100%; }

body {
	margin: 0;
	background-color: 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, svg { max-width: 100%; display: block; }
img:not(.cover-img):not(.theme-product-card__image):not(.hero-slider__slide):not(.theme-product-gallery__main):not(.theme-product-thumb__img):not(.category-tile__image):not(.contact-banner__bg):not(.story-banner__image) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__image,
.hero-slider__slide,
.category-tile__image,
.contact-banner__bg,
.story-banner__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button,
[role="button"],
.theme-dropdown__toggle,
.theme-dropdown__item,
.category-tile,
.faq-item__question,
.site-nav__icon-btn,
.site-nav__hamburger,
.theme-modal__close,
.theme-search-overlay__close,
.theme-search-overlay__scrim,
.hero-slider__dot,
.hero-slider__arrow,
.theme-product-card,
.nav-link,
.footer-anchor-link,
.announcement-bar__close {
	cursor: pointer;
}
button:disabled,
.theme-dropdown__item:disabled {
	cursor: not-allowed;
}
button { 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: inherit;
	font-size: inherit;
	font-weight: 500;
	letter-spacing: 0.005em;
	margin: 0;
}

.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding-inline: 1.5rem; }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .container-wide, .container-editorial { padding-inline: 2.5rem; } }

.page-top { padding-top: var(--header-offset, 148px); }

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 70;
	height: 2px;
	pointer-events: none;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: 0 50%;
	will-change: transform;
}

.ticker-label {
	font-family: var(--font-condensed);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: var(--color-muted-foreground);
}
.ticker-label--cream { color: color-mix(in srgb, var(--color-cream) 70%, transparent); }

.label-eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-family: var(--font-condensed);
	font-weight: 600;
	color: var(--color-muted-foreground);
}

.section-heading {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.15;
	color: var(--color-foreground);
}

/* Heading emphasis — mirrors Lovable .accent-italic (text-primary) */
.heading-accent {
	font-style: italic;
	color: var(--color-primary);
}

.hero-slider__title .heading-accent {
	color: rgba(255, 255, 255, 0.9);
}

.maker-section__heading .heading-accent {
	color: color-mix(in srgb, var(--color-cream) 85%, transparent);
}

.contact-banner__heading .heading-accent {
	color: inherit;
}

/* -------------------------------------------------------------------------- */
/* 2. SCROLL REVEAL ANIMATION (mirrors framer-motion fadeUp / staggerContainer) */
/* -------------------------------------------------------------------------- */

.reveal-item {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item,
.theme-product-card-wrap.reveal-item { opacity: 1; transform: none; }
body.is-customizer .theme-product-card-wrap.reveal-item { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}

.animate-fade-in { animation: themeFadeIn 0.8s var(--transition-smooth) forwards; }
.animate-slide-up { animation: themeSlideUp 0.8s var(--transition-smooth) forwards; }
@keyframes themeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes themeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------------------- */
/* 3. BUTTONS                                                                 */
/* -------------------------------------------------------------------------- */

.theme-btn-pill,
.theme-btn-pill-outline,
.theme-btn-primary,
.theme-btn-outline,
.theme-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 48px;
	padding: 0 1.75rem 0 1.75rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-condensed);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	border: 1px solid transparent;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.theme-btn-pill { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); box-shadow: var(--shadow-soft); padding-right: 0.5rem; }
.theme-btn-pill:hover { background: var(--color-primary-hover); }
.theme-btn-pill__icon {
	display: flex; align-items: center; justify-content: center;
	width: 2rem; height: 2rem; border-radius: 50%;
	background: color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
}
.theme-btn-pill__icon--dark { background: color-mix(in srgb, var(--color-foreground) 10%, transparent); color: var(--color-foreground); }
.theme-btn-pill--cream { background: var(--color-cream); border-color: var(--color-cream); color: var(--color-foreground); }
.theme-btn-pill--cream:hover { background: color-mix(in srgb, var(--color-cream) 90%, transparent); }

.theme-btn-pill-outline { background: color-mix(in srgb, var(--color-background) 80%, transparent); color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); backdrop-filter: blur(4px); height: 44px; padding: 0 1.25rem; }
.theme-btn-pill-outline:hover { border-color: color-mix(in srgb, var(--color-foreground) 50%, transparent); background: var(--color-background); }
.theme-btn-pill-outline--cream { border-color: color-mix(in srgb, var(--color-cream) 50%, transparent); color: var(--color-cream); background: transparent; }
.theme-btn-pill-outline--cream:hover { background: color-mix(in srgb, var(--color-cream) 10%, transparent); }

.theme-btn-primary { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); border-radius: var(--radius-pill); }
.theme-btn-primary:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-btn-outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.theme-btn-secondary { background: var(--color-secondary); color: var(--color-foreground); }
.theme-btn-secondary:hover { background: color-mix(in srgb, var(--color-secondary) 80%, transparent); }

/* -------------------------------------------------------------------------- */
/* 4. HEADER                                                                  */
/* -------------------------------------------------------------------------- */

.theme-header-shell { position: fixed; inset-inline: 0; top: 0; z-index: 50; }
body.admin-bar .theme-header-shell { top: var(--wp-admin--admin-bar--height, 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .theme-header-shell { top: 46px; }
}

.announcement-bar { background: var(--color-forest); color: var(--color-cream); }
.announcement-bar__inner { position: relative; display: flex; min-height: 36px; align-items: center; justify-content: center; padding-block: 0.5rem; }
.announcement-bar__text { text-align: center; font-family: var(--font-condensed); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; }
.announcement-bar__close { position: absolute; right: 4px; height: 32px; width: 32px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: var(--color-cream); border-radius: 50%; }
.announcement-bar__close:hover { background: color-mix(in srgb, var(--color-cream) 10%, transparent); }

.site-header {
	border-bottom: 1px solid var(--color-border);
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(8px);
	transition: all 0.3s ease-out;
	padding: 0.75rem 0;
}
.site-header.scrolled { padding: 0.25rem 0; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 104px; transition: height 0.3s ease-out; }
.site-header.scrolled .site-nav { height: 56px; }
@media (min-width: 1024px) {
	.site-nav { height: 124px; }
	.site-header.scrolled .site-nav { height: 68px; }
}

.site-nav__side { display: flex; flex: 1 1 0; align-items: center; gap: 0.25rem; }
.site-nav__side--right { justify-content: flex-end; }
.site-nav__hamburger { background: none; border: none; color: var(--color-foreground); padding: 0.5rem; }
@media (min-width: 1024px) { .site-nav__hamburger { display: none; } }
.site-nav__links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .site-nav__links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-family: var(--font-condensed); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; padding: 0.75rem 0.25rem; background: none; border: none; color: var(--color-foreground); transition: color 0.3s; }
.nav-link:hover { color: var(--color-primary); }

.site-nav__logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.site-logo-img { height: var(--logo-height, 78px) !important; width: auto !important; display: block; transition: height 0.3s ease-out; }
.site-header.scrolled .site-logo-img { height: calc(var(--logo-height, 78px) * 0.62) !important; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: var(--logo-height, 78px); display: block; }

.site-nav__icon-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; color: var(--color-foreground); border-radius: 50%; }
.site-nav__icon-btn:hover { background: color-mix(in srgb, var(--color-accent) 12%, transparent); }
.theme-cart-count { position: absolute; top: 0; right: 0; display: flex; align-items: center; justify-content: center; height: 20px; width: 20px; border-radius: 50%; background: var(--color-accent); color: var(--color-primary-foreground); font-size: 11px; }
.theme-cart-count:empty { display: none; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.3s; z-index: 69; pointer-events: none; }
.mobile-menu.is-open ~ .mobile-menu__overlay, .mobile-menu__overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__panel { position: fixed; left: 0; top: 0; bottom: 0; width: 88vw; max-width: 380px; background: var(--color-background); transform: translateX(-100%); transition: transform 0.35s var(--transition-smooth); display: flex; flex-direction: column; z-index: 71; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; height: 104px; padding: 0 1.25rem; border-bottom: 1px solid var(--color-border); color: var(--color-primary); }
.mobile-menu__nav { padding: 1rem; flex: 1; overflow-y: auto; }
.mobile-menu__list li a { display: flex; align-items: center; height: 56px; width: 100%; padding: 0 0.75rem; border-bottom: 1px solid var(--color-border); font-family: var(--font-display); font-size: 1.125rem; text-transform: uppercase; }
.mobile-menu__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 1rem; border-top: 1px solid var(--color-border); }

/* -------------------------------------------------------------------------- */
/* 5. HERO SLIDER                                                             */
/* -------------------------------------------------------------------------- */

.hero-slider { position: relative; height: calc(100svh - var(--header-offset, 148px)); min-height: 520px; width: 100%; overflow: hidden; isolation: isolate; }
.hero-slider__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slider__slide { opacity: 0; z-index: 0; pointer-events: none; transition: opacity 1.4s var(--transition-smooth), transform 1.4s var(--transition-smooth); transform: scale(1.04); }
.hero-slider__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slider__gradient { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.2)); pointer-events: none; }
.hero-slider__content-wrap { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; pointer-events: none; }
.hero-slider__content-wrap a,
.hero-slider__content-wrap button { pointer-events: auto; }
.hero-slider__content { width: 100%; padding-bottom: 7rem; }
@media (min-width: 768px) { .hero-slider__content { padding-bottom: 8rem; } }
.hero-slider__text { max-width: 48rem; animation: heroTextIn 1.2s var(--transition-smooth) 0.3s both; }
@keyframes heroTextIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-slider__eyebrow { display: block; margin-bottom: 1.25rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.32em; color: rgba(255,255,255,0.9); }
.hero-slider__title { margin-bottom: 1.5rem; font-family: var(--font-display); font-size: 3rem; line-height: 1.02; color: #fff; }
@media (min-width: 768px) { .hero-slider__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-slider__title { font-size: 5.25rem; } }
.hero-slider__subtitle { margin-bottom: 2.25rem; max-width: 36rem; font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.9); }
.hero-slider__controls { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 1rem; }
.hero-slider__count { font-family: var(--font-condensed); font-size: 12px; letter-spacing: 0.18em; color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }
.hero-slider__dots { display: flex; align-items: center; gap: 0.5rem; }
.hero-slider__dot { height: 2px; border-radius: 0; padding: 0; border: none; background: rgba(255,255,255,0.4); width: 32px; transition: all 0.3s; }
.hero-slider__dot:hover { background: rgba(255,255,255,0.6); }
.hero-slider__dot.is-active { width: 56px; background: #fff; }
.hero-slider__arrows { display: flex; align-items: center; gap: 0.25rem; }
.hero-slider__arrow { display: flex; align-items: center; justify-content: center; height: 32px; width: 32px; border-radius: 50%; background: transparent; border: none; color: #fff; }
.hero-slider__arrow:hover { background: rgba(255,255,255,0.15); }

/* -------------------------------------------------------------------------- */
/* 6. TICKER BAR                                                              */
/* -------------------------------------------------------------------------- */

.ticker-bar { border-top: 1px solid var(--color-hairline); border-bottom: 1px solid var(--color-hairline); background: var(--color-panel); }
.ticker-bar__inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding-block: 1.25rem; text-align: center; }
@media (min-width: 768px) { .ticker-bar__inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.ticker-bar__middle { display: none; }
@media (min-width: 768px) { .ticker-bar__middle { display: inline; } }

/* -------------------------------------------------------------------------- */
/* 7. CATEGORY TILES                                                          */
/* -------------------------------------------------------------------------- */

.categories-section { background: var(--color-background); }
.categories-section__inner { padding-block: 4rem; }
@media (min-width: 1024px) { .categories-section__inner { padding-block: 6rem; } }
.categories-section__head { margin-bottom: 2rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.categories-section__heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .categories-section__heading { font-size: 2.25rem; } }
.categories-section__tiles { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.categories-section__tiles::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .categories-section__tiles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: visible; padding-bottom: 0; } }
.category-tile { position: relative; aspect-ratio: 3 / 4; width: 68%; flex-shrink: 0; scroll-snap-align: start; overflow: hidden; border-radius: var(--card-radius); background: var(--color-secondary); border: none; padding: 0; text-align: left; }
@media (min-width: 768px) { .category-tile { width: auto; } }
.category-tile__image { transition: transform 1.2s ease; }
.category-tile:hover .category-tile__image { transform: scale(1.04); }
.category-tile__overlay { position: absolute; pointer-events: none; }
.category-tile__overlay--left { inset-block: 0; left: 0; width: 40%; background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 70%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent); }
.category-tile__overlay--top { inset-inline: 0; top: 0; height: 40%; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-foreground) 45%, transparent), transparent); }
.category-tile__overlay--bottom { inset-inline: 0; bottom: 0; height: 33%; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 40%, transparent), transparent); }
.category-tile__name { position: absolute; left: 1rem; top: 1.25rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1; letter-spacing: 0.02em; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.7); writing-mode: vertical-rl; }
@media (min-width: 768px) { .category-tile__name { font-size: 1.875rem; } }
.category-tile__cta { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); border-radius: var(--radius-pill); background: var(--color-background); padding: 0.5rem 1rem; font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-foreground); box-shadow: var(--shadow-soft); opacity: 0; transition: opacity 0.3s; }
.category-tile:hover .category-tile__cta { opacity: 1; }
.category-tile.is-active { box-shadow: 0 0 0 2px var(--color-primary) inset; }
.categories-section__swipe-hint { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; }
@media (min-width: 768px) { .categories-section__swipe-hint { display: none; } }

/* -------------------------------------------------------------------------- */
/* 8. STORY BANNER                                                            */
/* -------------------------------------------------------------------------- */

.story-banner__media { position: relative; height: 60vh; width: 100%; overflow: hidden; }
@media (min-width: 768px) { .story-banner__media { height: 70vh; } }
.story-banner__tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.story-banner__content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.story-banner__content-wrap .container-wide { width: 100%; padding-bottom: 3rem; }
@media (min-width: 768px) { .story-banner__content-wrap .container-wide { padding-bottom: 4rem; } }
.story-banner__panel { max-width: 36rem; border-radius: var(--card-radius); padding: 2rem; background: color-mix(in srgb, var(--color-panel) 92%, transparent); color: var(--color-panel-foreground, var(--color-foreground)); backdrop-filter: blur(6px); }
@media (min-width: 768px) { .story-banner__panel { padding: 2.5rem; } }
.story-banner__heading { margin: 1rem 0 1.75rem; font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .story-banner__heading { font-size: 3rem; } }

/* -------------------------------------------------------------------------- */
/* 9. SHOP SECTION + PRODUCT GRID/CARD                                        */
/* -------------------------------------------------------------------------- */

.shop-section { background: var(--color-panel); }
.shop-section__inner { padding-block: 5rem; }
@media (min-width: 1024px) { .shop-section__inner { padding-block: 7rem; } }
.shop-section__head { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-heading { font-size: 2.25rem; line-height: 1.2; margin-top: 0.75rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-section__filters { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .shop-section__filters { flex-direction: row; justify-content: flex-end; } }

.theme-dropdown { position: relative; }
.theme-dropdown__toggle { width: 100%; justify-content: space-between; height: 44px; }
@media (min-width: 640px) { #cat-dropdown { width: 14rem; } #price-dropdown { width: 12rem; } }
.theme-dropdown__toggle svg { transition: transform 0.2s; }
.theme-dropdown.is-open .theme-dropdown__toggle svg { transform: rotate(180deg); }
.theme-dropdown__menu { position: absolute; left: 0; right: 0; top: 100%; z-index: 30; margin-top: 0.5rem; max-height: 20rem; overflow-y: auto; border-radius: var(--card-radius); border: 1px solid var(--color-hairline); background: var(--color-background); padding: 0.25rem; box-shadow: var(--shadow-elevated); display: none; }
.theme-dropdown.is-open .theme-dropdown__menu { display: block; }
.theme-dropdown__item { display: flex; width: 100%; align-items: center; justify-content: space-between; border-radius: calc(var(--card-radius) - 2px); padding: 0.6rem 0.75rem; font-size: 0.875rem; background: transparent; border: none; text-align: left; }
.theme-dropdown__item:hover { background: color-mix(in srgb, var(--color-accent) 12%, transparent); }
.theme-dropdown__check { display: none; }
.theme-dropdown__item.is-active .theme-dropdown__check { display: inline-flex; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.related-products-section .theme-product-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2rem 2rem; }
@media (min-width: 640px) { .related-products-section .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .related-products-section .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { height: 100%; display: flex; }
.theme-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	overflow: hidden;
	border-radius: var(--card-radius);
	background: var(--color-panel);
	border: 1px solid var(--color-hairline);
	transition: box-shadow 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}
.theme-product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: color-mix(in srgb, var(--color-muted-foreground) 15%, transparent); }
.theme-product-card__image { transition: opacity 0.7s ease, transform 0.7s ease; }
.theme-product-card__image--main.has-hover { }
.theme-product-card:hover .theme-product-card__image--main.has-hover { opacity: 0; transform: scale(1.03); }
.theme-product-card__image--hover { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--hover { opacity: 1; transform: scale(1.03); }
.theme-product-card__image.is-out-of-stock { opacity: 0.6; }
.theme-product-card__badge { position: absolute; left: 0.75rem; top: 0.75rem; border-radius: var(--radius-pill); background: var(--color-foreground); padding: 0.25rem 0.75rem; font-family: var(--font-condensed); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-background); }
.theme-product-card__info { flex: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; padding: 1rem; min-width: 0; }
.theme-product-card__text { min-width: 0; }
.theme-product-card__title { margin-top: 0.375rem; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.3s; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 0.875rem; font-variant-numeric: tabular-nums; color: var(--color-foreground); font-weight: 600; }
.theme-product-card__price del { color: var(--color-muted-foreground); font-weight: 400; margin-left: 0.35em; }
.theme-product-card__price ins { text-decoration: none; color: var(--color-accent); }
.theme-product-card__arrow { display: flex; flex-shrink: 0; align-items: center; justify-content: center; height: 2.25rem; width: 2.25rem; border-radius: 50%; border: 1px solid var(--color-hairline); background: var(--color-background); color: var(--color-foreground); transition: all 0.3s; }
.theme-product-card:hover .theme-product-card__arrow { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-foreground); }

.shop-section__empty-state,
.shop-archive__empty { border-radius: var(--card-radius); border: 1px dashed var(--color-hairline); padding: 5rem 1rem; text-align: center; font-family: var(--font-display); font-size: 1.5rem; }
.shop-section__empty { text-align: center; padding: 3rem 0; font-family: var(--font-display); font-size: 1.25rem; }

/* -------------------------------------------------------------------------- */
/* 10. MEET THE MAKER / PROCESS                                               */
/* -------------------------------------------------------------------------- */

.maker-section { position: relative; overflow: hidden; background: var(--color-forest); color: var(--color-cream); }
.maker-section__inner { position: relative; padding-block: 5rem; }
@media (min-width: 1024px) { .maker-section__inner { padding-block: 7rem; } }
.maker-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .maker-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.maker-section__copy-inner { max-width: 36rem; }
.maker-section__heading { margin: 2rem 0; font-family: var(--font-display); font-size: 2.25rem; font-weight: 400; line-height: 1.25; color: var(--color-cream); }
@media (min-width: 768px) { .maker-section__heading { font-size: 3rem; } }
.maker-section__text { margin-bottom: 2.25rem; display: flex; flex-direction: column; gap: 1rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-cream) 75%, transparent); }
.maker-section__media { position: relative; aspect-ratio: 4 / 5; width: 100%; overflow: hidden; border-radius: var(--card-radius); }
@media (min-width: 1024px) { .maker-section__media { aspect-ratio: 1 / 1; } }
.deco-svg { position: absolute; pointer-events: none; color: color-mix(in srgb, var(--color-cream) 9%, transparent); }
.maker-section__deco--1 { left: -4rem; top: 2rem; height: 460px; width: 300px; }
.maker-section__deco--2 { right: -2.5rem; bottom: 1rem; height: 340px; width: 340px; }

.process-section__inner { padding-block: 5rem; }
@media (min-width: 1024px) { .process-section__inner { padding-block: 7rem; } }
.process-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .process-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.process-section__media { position: relative; order: 2; aspect-ratio: 3 / 4; width: 100%; overflow: hidden; border-radius: var(--card-radius); }
@media (min-width: 1024px) { .process-section__media { order: 1; } }
.process-section__copy { order: 1; }
@media (min-width: 1024px) { .process-section__copy { order: 2; } }
.process-section__heading { margin: 2rem 0; font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .process-section__heading { font-size: 3rem; } }
.process-section__text { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1rem; font-size: 15px; line-height: 1.7; color: var(--color-muted-foreground); }
.process-section__quote { border-top: 1px solid var(--color-hairline); padding-top: 2rem; }
.process-section__quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; }
@media (min-width: 768px) { .process-section__quote blockquote { font-size: 1.875rem; } }
.process-section__quote figcaption { margin-top: 1rem; }

/* -------------------------------------------------------------------------- */
/* 11. FAQ + CONTACT                                                          */
/* -------------------------------------------------------------------------- */

.resources-section { padding-block: 5rem; }
@media (min-width: 1024px) { .resources-section { padding-block: 7rem; } }
.faq-heading { margin-bottom: 3.5rem; border-bottom: 1px solid var(--color-hairline); padding-bottom: 1.25rem; font-size: 3rem; line-height: 1; }
@media (min-width: 768px) { .faq-heading { font-size: 3.75rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5rem; } }
.faq-section__aside { grid-column: span 4 / span 4; }
.faq-section__aside-inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .faq-section__aside-inner { position: sticky; top: 8rem; } }
.faq-section__aside-inner p { font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .faq-section__aside-inner p { font-size: 1.125rem; } }
.faq-section__aside-inner .theme-btn-pill-outline { align-self: flex-start; height: 36px; padding: 0 1.25rem; font-size: 11px; }
.faq-section__list { grid-column: span 8 / span 8; border-top: 1px solid var(--color-hairline); }
.faq-item { border-bottom: 1px solid var(--color-hairline); }
.faq-item__question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; background: none; border: none; text-align: left; }
.faq-item__question span:first-child { font-size: 15px; line-height: 1.4; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1rem; } }
.faq-item__icon { display: flex; flex-shrink: 0; align-items: center; justify-content: center; height: 2rem; width: 2rem; border-radius: 50%; border: 1px solid var(--color-hairline); }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: inline-flex; }
.faq-item__answer { overflow: hidden; height: 0; opacity: 0; transition: height 0.35s var(--transition-smooth), opacity 0.35s var(--transition-smooth); }
.faq-item.is-open .faq-item__answer { height: auto; opacity: 1; }
.faq-item__answer p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 15px; line-height: 1.7; color: var(--color-muted-foreground); }

.contact-banner { position: relative; margin: 6rem -0 -5rem; overflow: hidden; border-radius: var(--card-radius); }
@media (min-width: 1024px) { .contact-banner { margin-bottom: -7rem; } }
.contact-banner__tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-forest) 55%, transparent); }
.contact-banner__inner { position: relative; padding-block: 6rem; text-align: center; }
@media (min-width: 768px) { .contact-banner__inner { padding-block: 8rem; } }
.contact-banner__eyebrow { display: block; margin-bottom: 1.25rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--color-cream) 80%, transparent); }
.contact-banner__heading { margin-bottom: 2rem; font-size: 2.25rem; line-height: 1.2; color: var(--color-cream); }
@media (min-width: 768px) { .contact-banner__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-banner__heading { font-size: 3.75rem; } }
.contact-banner__text { margin: 0 auto 2.5rem; max-width: 32rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-cream) 85%, transparent); }
.contact-banner__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .contact-banner__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------- */
/* 12. FOOTER                                                                 */
/* -------------------------------------------------------------------------- */

.site-footer { background: var(--color-forest); color: var(--color-cream); }
.site-footer__newsletter { border-bottom: 1px solid color-mix(in srgb, var(--color-cream) 15%, transparent); }
.site-footer__newsletter-inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer__newsletter-inner { grid-template-columns: repeat(12, minmax(0, 1fr)); padding-block: 4rem; } }
.site-footer__newsletter-copy { grid-column: span 6 / span 6; }
.site-footer__newsletter-copy .ticker-label { margin-bottom: 0.75rem; }
.site-footer__newsletter-heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 1024px) { .site-footer__newsletter-heading { font-size: 2.25rem; } }
.site-footer__newsletter-form { grid-column: span 6 / span 6; display: flex; width: 100%; }
.site-footer__newsletter-input { min-width: 0; flex: 1 1 auto; border: none; border-bottom: 1px solid color-mix(in srgb, var(--color-cream) 40%, transparent); background: transparent; padding: 0.75rem 0.25rem; font-size: 0.875rem; color: var(--color-cream); }
.site-footer__newsletter-input::placeholder { color: color-mix(in srgb, var(--color-cream) 50%, transparent); }
.site-footer__newsletter-input:focus { outline: none; border-color: var(--color-cream); }
.site-footer__newsletter-form .theme-btn-secondary { margin-left: 0.75rem; height: 48px; padding: 0 1.25rem; }

.site-footer__main { padding-block: 4rem 2rem; }
@media (min-width: 1024px) { .site-footer__main { padding-block: 5rem 2.5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
	.site-footer__grid {
		/* Col 1 unchanged in proportion; cols 2–5 get tighter nav widths + wider contact */
		grid-template-columns: minmax(0, 4fr) minmax(0, 1.75fr) minmax(0, 1.75fr) minmax(0, 1.5fr) minmax(13rem, 3fr);
		column-gap: 2.75rem;
		row-gap: 2.5rem;
	}
}
.site-footer__brand { grid-column: span 1; }
@media (min-width: 768px) and (max-width: 1023px) {
	.site-footer__brand { grid-column: span 2; }
}
.site-footer__logo-link .site-logo-img { height: 56px !important; filter: brightness(0) invert(1); }
.site-footer__about { margin-top: 1.25rem; max-width: 22rem; font-size: 0.875rem; line-height: 1.7; color: color-mix(in srgb, var(--color-cream) 70%, transparent); }
.site-footer__social { margin-top: 1.5rem; display: inline-flex; color: color-mix(in srgb, var(--color-cream) 70%, transparent); }
.site-footer__social:hover { color: var(--color-cream); }
.site-footer__col { min-width: 0; }
.site-footer__col-title { margin-bottom: 1.25rem; font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: color-mix(in srgb, var(--color-cream) 60%, transparent); }
.site-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__links a, .footer-anchor-link { font-size: 0.875rem; color: color-mix(in srgb, var(--color-cream) 80%, transparent); background: none; border: none; padding: 0; text-align: left; }
.site-footer__links a:hover, .footer-anchor-link:hover { color: var(--color-cream); }
.site-footer__contact { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-cream) 80%, transparent); }
.site-footer__contact li { display: flex; gap: 0.5rem; align-items: flex-start; min-width: 0; }
.site-footer__contact li svg { flex-shrink: 0; margin-top: 0.125rem; }
.site-footer__contact a { min-width: 0; white-space: nowrap; }
.site-footer__contact a:hover { color: var(--color-cream); }
.site-footer__bottom { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-cream) 15%, transparent); padding-top: 1.5rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-family: var(--font-condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: color-mix(in srgb, var(--color-cream) 55%, transparent); }
.site-footer__credit a:hover { color: var(--color-cream); }

/* -------------------------------------------------------------------------- */
/* 13. CART DRAWER + OVERLAY                                                  */
/* -------------------------------------------------------------------------- */

#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background); z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.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 { background: none; border: none; padding: 0.25rem; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1.25rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { width: 6rem; height: 8rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: var(--card-radius); }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-name { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-foreground); }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-variation { margin-top: 0.35rem; font-size: 0.75rem; color: var(--color-muted-foreground); font-style: italic; }
.theme-cart-drawer__item-price { margin-top: 0.35rem; font-size: 0.875rem; }
.theme-cart-drawer__item-controls { margin-top: auto; padding-top: 1rem; display: flex; align-items: center; justify-content: space-between; }
.theme-cart-drawer__qty { display: flex; align-items: center; border-radius: var(--radius-pill); border: 1px solid var(--color-border); }
.theme-cart-drawer__qty button { background: none; border: none; padding: 0.4rem 0.6rem; }
.theme-cart-drawer__qty button:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty span { padding: 0 0.5rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { background: none; border: none; font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__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-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; height: 48px; }

/* -------------------------------------------------------------------------- */
/* 14. CONTACT MODAL + SEARCH OVERLAY                                        */
/* -------------------------------------------------------------------------- */

.theme-modal { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; padding: 1.5rem; visibility: hidden; }
.theme-modal.is-open { visibility: visible; }
.theme-modal__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; }
.theme-modal.is-open .theme-modal__overlay { opacity: 1; }
.theme-modal__panel { position: relative; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; border-radius: var(--card-radius); border: 1px solid var(--color-border); background: var(--color-background); padding: 1.75rem; opacity: 0; transform: scale(0.96); transition: all 0.3s var(--transition-smooth); }
.theme-modal.is-open .theme-modal__panel { opacity: 1; transform: scale(1); }
.theme-modal__close { position: absolute; right: 1rem; top: 1rem; background: none; border: none; padding: 0.4rem; opacity: 0.6; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; }
.theme-modal__subtitle { margin-top: 0.5rem; font-size: 15px; line-height: 1.6; color: var(--color-muted-foreground); }
.theme-modal__contact-info { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-modal__contact-info div { display: flex; align-items: center; gap: 0.5rem; }
.theme-modal__contact-info a:hover { color: var(--color-foreground); }
.theme-modal__form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.theme-modal__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-modal__form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal__field label { margin-bottom: 0.4rem; display: block; }
.theme-modal__field input, .theme-modal__field textarea { width: 100%; padding: 0.65rem 0.9rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius-pill); font-size: 0.875rem; font-family: var(--font-body); color: var(--color-foreground); }
.theme-modal__field textarea { border-radius: var(--card-radius); resize: none; }
.theme-modal__field input::placeholder, .theme-modal__field textarea::placeholder { color: var(--color-muted-foreground); }
.theme-modal__field input:focus, .theme-modal__field textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-modal__form-actions { display: flex; justify-content: flex-end; }
.theme-modal__form-actions button { height: 44px; padding: 0 1.5rem; }
.theme-modal__success { display: none; text-align: center; padding: 2rem 0; }
.theme-modal__success.is-active { display: block; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { font-size: 0.875rem; color: var(--color-muted-foreground); }

.theme-search-overlay { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.theme-search-overlay.is-open { visibility: visible; }
.theme-search-overlay__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); border: none; opacity: 0; transition: opacity 0.3s; }
.theme-search-overlay.is-open .theme-search-overlay__scrim { opacity: 1; }
.theme-search-overlay__panel { position: relative; width: 100%; max-height: 92vh; overflow-y: auto; background: var(--color-background); border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); transform: translateY(-16px); opacity: 0; transition: all 0.3s; }
.theme-search-overlay.is-open .theme-search-overlay__panel { transform: translateY(0); opacity: 1; }
.theme-search-overlay__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.5rem; opacity: 0.7; background: none; border: none; z-index: 5; }
.theme-search-overlay__close:hover { opacity: 1; }
.theme-search-overlay__inner { padding-block: 2.5rem; }
@media (min-width: 1024px) { .theme-search-overlay__inner { padding-block: 3.5rem; } }
.theme-search-overlay__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-overlay__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-overlay__aside-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-overlay__cats { display: flex; flex-direction: column; gap: 0.9rem; }
.theme-search-overlay__cats button { font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; background: none; border: none; padding: 0; text-align: left; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-search-overlay__cats button:hover { color: var(--color-primary); }
.theme-search-overlay__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-overlay__input-row input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-overlay__input-row input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-search-overlay__results { margin-top: 2.5rem; }
.theme-search-overlay__results h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-overlay__result-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-overlay__result-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-search-overlay__result-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 2rem; } }
.theme-search-overlay__result-item { text-align: left; background: none; border: none; }
.theme-search-overlay__result-image { aspect-ratio: 1/1; overflow: hidden; background: var(--color-secondary); }
.theme-search-overlay__result-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.theme-search-overlay__result-item:hover .theme-search-overlay__result-image img { transform: scale(1.05); }
.theme-search-overlay__result-item p:first-of-type { margin-top: 0.75rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; line-height: 1.4; }
.theme-search-overlay__result-item p:last-of-type { margin-top: 0.25rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* -------------------------------------------------------------------------- */
/* 15. SINGLE PRODUCT PAGE (mirrors ProductDetail.tsx)                        */
/* -------------------------------------------------------------------------- */

body.theme-no-hero .single-product-main.page-top {
	padding-top: 6rem !important;
	padding-bottom: 5rem;
	background: var(--color-background);
}
@media (min-width: 768px) {
	body.theme-no-hero .single-product-main.page-top {
		padding-top: 7rem !important;
	}
}

.single-product-page__inner { padding-bottom: 0; }

.theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
	min-width: 0;
}
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 2.5rem;
	}
}

.theme-product-gallery,
.theme-product-info {
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.theme-product-gallery {
		position: sticky;
		top: 8rem;
		align-self: start;
	}
}

.theme-product-gallery__main-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50vh;
	background: var(--color-background);
}
@media (min-width: 768px) {
	.theme-product-gallery__main-wrap { min-height: 58vh; }
}
@media (min-width: 1024px) {
	.theme-product-gallery__main-wrap { min-height: 60vh; }
}

.single-product-main .theme-product-gallery__main {
	position: static !important;
	inset: auto !important;
	width: 100%;
	height: auto;
	max-height: 60vh;
	max-width: 100%;
	object-fit: cover;
}
@media (min-width: 768px) {
	.single-product-main .theme-product-gallery__main { max-height: 70vh; }
}

.theme-product-thumbnails {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem;
	background: color-mix(in srgb, var(--color-background) 40%, transparent);
}
@media (min-width: 1024px) {
	.theme-product-thumbnails { padding: 1.5rem; }
}

.theme-product-thumb {
	flex-shrink: 0;
	width: 4rem;
	height: 3.5rem;
	overflow: hidden;
	border: 1px solid transparent;
	opacity: 0.6;
	background: none;
	padding: 0;
	transition: opacity 0.2s, border-color 0.2s;
}
@media (min-width: 1024px) {
	.theme-product-thumb { width: 5rem; height: 4rem; }
}
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active {
	border-color: var(--color-foreground);
	opacity: 1;
}
.theme-product-thumb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-product-info { padding: 2.5rem 0; }
@media (min-width: 1024px) {
	.theme-product-info { padding: 4rem 0; }
}

.theme-product-breadcrumb {
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin: 0 0.5rem; }

.product-title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	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-sku {
	margin-top: 0.75rem;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}

.theme-product-rule {
	height: 1px;
	background: var(--color-border);
	margin: 1.75rem 0;
}

.theme-product-price {
	font-family: var(--font-body);
	font-size: 1.125rem;
	color: var(--color-foreground);
}

.theme-product-note {
	margin-top: 1.75rem;
	background: color-mix(in srgb, var(--color-secondary) 70%, transparent);
	padding: 1rem 1.25rem;
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1.6;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}

.theme-add-to-cart-area { margin-top: 2rem; }

.theme-variable-product-form { width: 100%; }

.theme-product-variations {
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.theme-product-variation--field {
	position: relative;
}

.theme-product-variation__label {
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
}

.theme-product-variation select {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: var(--card-radius);
	background: var(--color-background);
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--color-foreground);
}

.theme-sr-only,
.theme-product-variation__select-wrap.theme-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.theme-product-simple-options { margin-bottom: 1.25rem; }

.theme-color-swatches {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.theme-color-swatch {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid transparent;
	border-radius: var(--card-radius);
	background: transparent;
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 0.875rem;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s;
}

.theme-color-swatch:hover {
	border-color: var(--color-border);
}

.theme-color-swatch.is-selected {
	border-color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 5%, transparent);
}

.theme-color-swatch__circle {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	border: 1px solid var(--color-border);
}

.theme-option-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.theme-option-pill {
	min-width: 3.5rem;
	padding: 0.625rem 1rem;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.theme-option-pill:hover {
	border-color: var(--color-foreground);
}

.theme-option-pill.is-selected {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}

.theme-cart-item-meta {
	list-style: none;
	margin: 0.375rem 0 0;
	padding: 0;
	font-size: 0.75rem;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}

.theme-cart-item-meta__row {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 0.25rem;
}

.theme-cart-item-meta__swatch {
	flex-shrink: 0;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	border: 1px solid var(--color-border);
}

.theme-cart-item-meta__text {
	display: inline;
	font-style: italic;
}

.theme-cart-item-meta__label {
	font-style: normal;
}

.single-product-main .theme-product-atc--variable:disabled {
	opacity: 0.4 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}

.single-product-main .theme-product-atc,
.single-product-main .single_add_to_cart_button.theme-product-atc {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3.5rem;
	border-radius: var(--radius-pill);
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.28em !important;
	text-transform: uppercase !important;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s, opacity 0.2s;
	padding: 0 1.5rem !important;
	min-height: 3.5rem !important;
}

.single-product-main .theme-product-atc:hover,
.single-product-main .single_add_to_cart_button.theme-product-atc:hover {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-color: var(--color-primary) !important;
	opacity: 1 !important;
}

.single-product-main .theme-product-atc--disabled,
.single-product-main .theme-product-atc:disabled,
.single-product-main .theme-product-atc.theme-btn-loading {
	opacity: 0.4 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}

.single-product-main .theme-product-atc.is-added {
	opacity: 1 !important;
	pointer-events: none;
}

.theme-product-details { margin-top: 3rem; }
.theme-product-details__heading {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-foreground);
	margin-bottom: 1.25rem;
}
.theme-product-details__desc {
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.55;
	color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	overflow-wrap: break-word;
	word-break: break-word;
	white-space: pre-line;
}
.theme-product-details__desc p { margin-bottom: 1rem; }
.theme-product-details__desc p:last-child { margin-bottom: 0; }
.theme-product-details__list {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding-left: 1.25rem;
	list-style: disc;
	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-section__heading {
	margin-bottom: 3rem;
	font-size: 1.875rem;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.related-products-section__heading { font-size: 2.25rem; }
}
.related-products-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem 2rem;
}
@media (min-width: 640px) {
	.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
	.related-products-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Shop loop ATC (not single product) */
.add_to_cart_button.button:not(.theme-product-atc) {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}

.single-product-main .single_add_to_cart_button.loading::after,
.single-product-main .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; }

body.theme-single-product a.added_to_cart.wc-forward,
.single-product-main a.added_to_cart.wc-forward { display: none !important; }

.single-product-main .woocommerce-message,
.single-product-main .woocommerce-info,
.single-product-main .woocommerce-error { display: none !important; }

#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: var(--card-radius);
	border: 1px solid var(--color-border);
	background: var(--color-panel);
	padding: 1rem 1.25rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	list-style: none;
}

/* -------------------------------------------------------------------------- */
/* 16. WOOCOMMERCE ARCHIVE PAGE                                              */
/* -------------------------------------------------------------------------- */

.shop-archive { padding-block: 3rem 5rem; }
.shop-archive .page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }

/* -------------------------------------------------------------------------- */
/* 17. 404                                                                    */
/* -------------------------------------------------------------------------- */

.theme-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; padding-block: 4rem; }
.theme-404__code { font-family: var(--font-display); font-size: 4rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/* 18. GENERIC PAGE + CHECKOUT H1                                             */
/* -------------------------------------------------------------------------- */

.page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }

.theme-checkout-shell {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
	.theme-checkout-shell { padding-inline: 2.5rem; }
}

.theme-checkout-header { margin-bottom: 2.5rem; }

.theme-checkout-header__back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	transition: color 0.2s;
}

.theme-checkout-header__back:hover { color: var(--color-foreground); }

.theme-checkout-header__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.theme-checkout-header__title { font-size: 2.25rem; }
}

.theme-checkout-header__intro {
	max-width: 42rem;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-muted-foreground);
}

body.woocommerce-checkout .site-main,
body.woocommerce-checkout main.theme-checkout-page.page-top {
	padding-top: calc(var(--header-offset, 148px) + 1.5rem);
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	body.woocommerce-checkout main.theme-checkout-page.page-top {
		padding-top: calc(var(--header-offset, 148px) + 2rem);
	}
}

/* Neutralize parent compression on checkout */
body.woocommerce-checkout .container-wide,
body.woocommerce-checkout .theme-checkout-shell,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .theme-checkout-content,
body.woocommerce-checkout article,
body.woocommerce-checkout .site-main {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

/* -------------------------------------------------------------------------- *
 * 19. CHECKOUT BLOCK OVERRIDES
 * -------------------------------------------------------------------------- */

body.woocommerce-checkout .entry-content,
.entry-content .wc-block-checkout {
	max-width: 100%;
}

body.woocommerce-checkout .wc-block-checkout,
.entry-content .wc-block-checkout {
	display: block;
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	font-family: var(--font-body);
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout-sidebar-layout {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
.entry-content .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
	}

	body.woocommerce-checkout .wc-block-components-notices,
	.entry-content .wc-block-components-notices {
		grid-column: 1 / -1;
		order: 1;
		max-width: 80rem;
		width: 100%;
		margin-inline: auto;
		box-sizing: border-box;
	}

	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-main,
	.entry-content .wc-block-checkout__main,
	.entry-content .wc-block-components-main {
		order: 2;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar,
	.entry-content .wc-block-checkout__sidebar,
	.entry-content .wc-block-components-sidebar {
		order: 3;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar,
.entry-content .wc-block-checkout__main,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-main,
.entry-content .wc-block-components-sidebar {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar,
.entry-content .wp-block-woocommerce-checkout-totals-block {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
	width: 100%;
	background-color: var(--color-panel);
	border-radius: var(--card-radius);
	padding: 2rem;
	box-sizing: border-box;
}

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,
.entry-content .wc-block-checkout .wc-block-components-text-input input,
.entry-content .wc-block-checkout .wc-block-components-select select,
.entry-content .wc-block-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
.entry-content .wc-block-checkout .wc-block-components-text-input input:focus,
.entry-content .wc-block-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input,
.entry-content .wc-block-checkout .wc-block-components-text-input input { padding: revert; }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.entry-content .wc-block-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: var(--radius-pill) !important;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	font-family: var(--font-condensed);
	font-weight: 600;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.entry-content .wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
}

body.woocommerce-checkout .wc-block-components-notice-banner,
.entry-content .wc-block-components-notice-banner {
	border-radius: var(--radius);
	font-family: var(--font-body);
}

body.woocommerce-checkout .wc-block-checkout-empty,
.entry-content .wc-block-checkout-empty {
	margin-inline: auto;
	max-width: 36rem;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout-empty .wc-block-components-button,
.entry-content .wc-block-checkout-empty .wc-block-components-button {
	margin-inline: auto;
}

/* -------------------------------------------------------------------------- *
 * 20. THANK YOU PAGE (Section 22.8)
 * -------------------------------------------------------------------------- */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { font-family: var(--font-body); }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	padding: 1.5rem;
	background: var(--color-panel);
	border-radius: var(--card-radius);
	margin: 1.5rem 0 2.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview li { flex: 1 1 auto; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.5rem; padding: 0 0 1rem; }
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); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: var(--card-radius); padding: 1.25rem; }

/* -------------------------------------------------------------------------- *
 * 21. MISC UTILITIES                                                         *
 * -------------------------------------------------------------------------- */

.scroll-mt { scroll-margin-top: 6rem; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
