/* =====================================================================
   Underground Gallery Workshop — theme stylesheet
   ===================================================================== */

:root {
	--color-background: #F7F3F2;
	--color-foreground: #1E1510;
	--color-card: #EEE8E2;
	--color-muted: #E4D9CD;
	--color-muted-foreground: #5A4230;
	--color-accent: #A87B48;
	--color-border: #DBD1C7;
	--color-forest: #6C4C37;
	--color-forest-2: #3B2921;
	--color-coral: #B5513B;
	--color-ink-cream: #F2EADE;
	--color-peanut: #D3B297;
	--color-powder: #DAE3EC;
	--color-button-text: var(--color-background);

	--font-display: 'Playfair Display', 'Times New Roman', serif;
	--font-display-alt: 'Cormorant Garamond', 'Times New Roman', serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--radius: 2px;
	--card-radius: 4px;

	--btn-radius: 2px;
	--btn-height: 48px;
	--btn-padding: 0.9rem 2rem;
	--btn-font-size: 11px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--header-height: 112px;
	--logo-height: 80px;

	--transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================================
   RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
	max-width: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	letter-spacing: -0.005em;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	letter-spacing: 0.005em;
}

p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.theme-cart-item__img) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img, .hero-bg-img, .theme-product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding-left: 2rem; padding-right: 2rem; }
}

.scroll-mt-24 { scroll-margin-top: 7rem; }

/* =====================================================================
   TYPOGRAPHY UTILITIES
   ===================================================================== */
.almanac-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}
.almanac-eyebrow::before,
.almanac-eyebrow::after {
	content: '';
	height: 1px;
	width: 1.5rem;
	background: color-mix(in srgb, var(--color-powder) 80%, transparent);
}
.almanac-eyebrow--on-dark { color: var(--color-peanut); }
.almanac-eyebrow--on-dark::before,
.almanac-eyebrow--on-dark::after {
	background: color-mix(in srgb, var(--color-peanut) 70%, transparent);
}
.almanac-eyebrow--center {
	display: flex;
	width: 100%;
	justify-content: center;
}

.link-underline {
	position: relative;
	display: inline-block;
}
.link-underline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.theme-underline-link {
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	transition: text-decoration-color 0.2s ease;
}
.theme-underline-link:hover { text-decoration-color: var(--color-foreground); }

.oval-mask { clip-path: ellipse(46% 48% at 50% 50%); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: 0.5px solid transparent;
	transition: all 0.3s var(--transition-smooth);
	white-space: nowrap;
}
.theme-btn:hover { letter-spacing: 0.28em; }

.theme-btn--coral {
	background: var(--color-coral);
	color: var(--color-ink-cream);
	border-color: var(--color-coral);
}
.theme-btn--coral:hover {
	background: transparent;
	color: var(--color-ink-cream);
	border-color: var(--color-coral);
}

/* Hero CTA — larger padding + wider letter-spacing (Lovable hero) */
.theme-hero__actions .theme-btn--coral {
	padding: 1rem 2.5rem;
	letter-spacing: 0.28em;
}
.theme-hero__actions .theme-btn--coral:hover {
	letter-spacing: 0.32em;
}

/* Section CTAs — commissions + contact */
.theme-commissions-section__actions .theme-btn--coral,
.theme-final-cta__actions .theme-btn--coral {
	padding: 0.875rem 2rem;
	letter-spacing: 0.22em;
}
.theme-commissions-section__actions .theme-btn--coral:hover,
.theme-final-cta__actions .theme-btn--coral:hover {
	letter-spacing: 0.28em;
}

.theme-btn--outline-cream {
	background: transparent;
	color: var(--color-ink-cream);
	border-color: color-mix(in srgb, var(--color-ink-cream) 80%, transparent);
}
.theme-btn--outline-cream:hover { background: var(--color-ink-cream); color: var(--color-forest); }

.theme-btn--outline-dark {
	background: transparent;
	color: var(--color-foreground);
	border-color: var(--color-foreground);
}
.theme-btn--outline-dark:hover { background: var(--color-foreground); color: var(--color-background); }

.theme-btn--outline-forest {
	background: transparent;
	color: var(--color-forest);
	border-color: var(--color-forest);
}
.theme-btn--outline-forest:hover { background: var(--color-forest); color: var(--color-ink-cream); }

.theme-btn--outline {
	background: transparent;
	color: var(--color-foreground);
	border-color: var(--color-foreground);
}
.theme-btn--outline:hover { background: var(--color-foreground); color: var(--color-background); }

.theme-btn--primary {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.theme-btn--primary:hover { opacity: 0.85; }

.theme-btn--full { width: 100%; }
.theme-btn--sm { padding: 0.6rem 1.5rem; }

/* =====================================================================
   REVEAL ANIMATIONS (Section 2.1)
   ===================================================================== */
.reveal-item, .reveal-fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-fade { transform: none; }
.reveal-item.is-visible, .reveal-fade.is-visible {
	opacity: 1;
	transform: none;
}
body.is-customizer .reveal-item,
body.is-customizer .reveal-fade,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .reveal-fade {
		transition: none;
		opacity: 1;
		transform: none;
	}
}

/* =====================================================================
   ANNOUNCEMENT BAR
   ===================================================================== */
.theme-announcement {
	position: relative;
	background: var(--color-forest);
	color: var(--color-ink-cream);
	border-bottom: 1px solid color-mix(in srgb, var(--color-powder) 30%, transparent);
	overflow: hidden;
}
.theme-announcement__track {
	display: flex;
	white-space: nowrap;
	padding: 0.75rem 0;
	animation: theme-marquee 45s linear infinite;
	width: max-content;
}
.theme-announcement__group {
	display: inline-flex;
	align-items: center;
	gap: 2.5rem;
	padding: 0 1.5rem;
	flex-shrink: 0;
}
.theme-announcement__phrase {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 15px;
	color: color-mix(in srgb, var(--color-ink-cream) 90%, transparent);
}
.theme-announcement__dot { color: var(--color-accent); font-size: 12px; margin-left: 2.5rem; }
.theme-announcement__close {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.25rem;
	opacity: 0.7;
	color: var(--color-ink-cream);
	background: var(--color-forest);
}
.theme-announcement__close:hover { opacity: 1; }

@keyframes theme-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--color-background);
	border-bottom: 0.5px solid transparent;
	transition: all 0.3s ease;
}
.site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent);
}
.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 112px;
}
@media (min-width: 768px) { .site-nav { height: 128px; } }

.site-nav__side { display: none; align-items: center; flex: 1; }
.site-nav__side--right { display: flex; justify-content: flex-end; gap: 1.5rem; }
@media (min-width: 1024px) {
	.site-nav__side--left { display: flex; }
	.site-nav__side-inner { display: flex; }
}
.site-nav__side-inner { display: none; }
@media (min-width: 1024px) { .site-nav__side-inner { display: flex; } }

.theme-nav-list { display: flex; align-items: center; }
.theme-nav-list--left li,
.theme-nav-list--right li { border-right: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.theme-nav-list--left li:last-child,
.theme-nav-list--right li:last-child { border-right: none; }

.theme-nav-link {
	display: block;
	padding: 0 1.25rem;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	transition: all 0.3s ease;
	white-space: nowrap;
}
.theme-nav-list--left li:first-child .theme-nav-link { padding-left: 0; }
.theme-nav-list--right li:last-child .theme-nav-link { padding-right: 0; }
.theme-nav-link:hover { color: var(--color-foreground); }

.site-nav__toggle {
	padding: 0.5rem;
	margin-left: -0.5rem;
	color: var(--color-foreground);
}
@media (min-width: 1024px) { .site-nav__toggle { display: none; } }
.site-nav__toggle:hover { opacity: 0.6; }

.site-nav__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.site-logo-text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.5rem;
	line-height: var(--logo-height);
	color: var(--color-foreground);
}

.theme-cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius);
	border: 0.5px solid color-mix(in srgb, var(--color-foreground) 40%, transparent);
	font-size: 11px;
	font-family: var(--font-body);
	letter-spacing: -0.01em;
	line-height: 1;
	transition: all 0.3s ease;
}
.theme-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1ch;
}
.theme-cart-toggle:hover {
	border-color: var(--color-foreground);
	background: var(--color-foreground);
	color: var(--color-background);
}

.site-nav__mobile { display: none; }
.site-nav__mobile.is-open {
	display: block;
	border-top: 0.5px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	padding: 1rem 0;
	animation: fadeIn 0.4s var(--transition-smooth);
}
@media (min-width: 1024px) { .site-nav__mobile { display: none !important; } }
.theme-nav-list--mobile { display: flex; flex-direction: column; gap: 1rem; }
.theme-nav-list--mobile .theme-nav-link { padding: 0.5rem 0; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   HERO
   ===================================================================== */
.theme-hero { position: relative; width: 100%; min-height: 100vh; overflow: hidden; background: var(--color-background); }
.theme-hero__media { position: absolute; inset: 0; overflow: hidden; }
.theme-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-hero__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-forest) 70%, transparent); pointer-events: none; }
.theme-hero__scrim-bottom {
	position: absolute; left: 0; right: 0; bottom: 0; height: 33%;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-forest) 85%, transparent), transparent);
	pointer-events: none;
}
.theme-hero__content {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 0.5rem;
	max-width: 64rem;
	margin: 0 auto;
}
.theme-hero__eyebrow {
	font-size: 11px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--color-peanut);
	margin-bottom: 1.5rem;
}
.theme-hero__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	color: var(--color-ink-cream);
	line-height: 0.98;
	letter-spacing: -0.01em;
	font-size: 2.5rem;
	margin-bottom: 0;
}
@media (min-width: 640px) { .theme-hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 5rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 6rem; } }

.theme-hero__subtitle {
	margin-top: 1.5rem;
	max-width: 42rem;
	color: var(--color-ink-cream);
	font-size: 1rem;
	line-height: 1.7;
}
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1.125rem; } }

.theme-hero__actions {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
@media (min-width: 640px) { .theme-hero__actions { flex-direction: row; } }

/* =====================================================================
   MARQUEE BAND
   ===================================================================== */
.theme-marquee {
	background: var(--color-forest);
	color: var(--color-ink-cream);
	overflow: hidden;
	border-top: 0.5px solid var(--color-forest);
	border-bottom: 0.5px solid var(--color-forest);
}
.theme-marquee__track {
	display: flex;
	white-space: nowrap;
	width: max-content;
	padding: 1rem 0;
	animation: theme-marquee 60s linear infinite;
}
.theme-marquee__group { display: inline-flex; align-items: center; gap: 3rem; padding: 0 2rem; flex-shrink: 0; }
.theme-marquee__phrase { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; letter-spacing: 0.01em; color: var(--color-ink-cream); }
@media (min-width: 768px) { .theme-marquee__phrase { font-size: 1.25rem; } }
.theme-marquee__dot { color: var(--color-accent); margin-left: 3rem; }

/* =====================================================================
   GENERIC SECTION HEADS
   ===================================================================== */
.theme-section { padding: 4rem 0; }
@media (min-width: 768px) { .theme-section { padding: 5rem 0; } }
.theme-categories-section { background: color-mix(in srgb, var(--color-card) 60%, transparent); padding: 4rem 0 5rem; }
.theme-section__head { text-align: center; margin-bottom: 2.5rem; }
.theme-section__head--center { margin-bottom: 3rem; }
.theme-section__cta { text-align: center; margin-top: 3.5rem; }

.section-heading { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.theme-categories-section__heading {
	font-size: 2.25rem; line-height: 1.15; margin-top: 1rem;
}
@media (min-width: 768px) { .theme-categories-section__heading { font-size: 3rem; } }

.theme-featured-section__heading { font-size: 2.25rem; line-height: 1.2; margin-top: 1rem; }
@media (min-width: 768px) { .theme-featured-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-featured-section__heading { font-size: 3.75rem; } }

/* =====================================================================
   CATEGORY TILES
   ===================================================================== */
.theme-category-tiles {
	display: flex;
	overflow-x: auto;
	gap: 1.5rem;
	padding: 1.5rem 0 1rem;
	scrollbar-width: none;
}
.theme-category-tiles::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.theme-category-tiles {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0.375rem;
		overflow-x: visible;
		padding: 1rem 0 0.5rem;
	}
	.theme-category-tile {
		min-width: 0;
		gap: 0.375rem;
	}
	.theme-category-tile__icon-wrap {
		width: 100%;
		max-width: 3.25rem;
		height: auto;
		aspect-ratio: 1 / 1;
		margin-inline: auto;
	}
	.theme-category-tile__icon { width: 1.75rem; height: 1.75rem; }
	.theme-category-tile__label {
		font-size: 0.5625rem;
		line-height: 1.2;
		letter-spacing: 0.02em;
	}
}
@media (min-width: 768px) { .theme-category-tiles { justify-content: center; gap: 2.5rem; overflow-x: visible; flex-wrap: wrap; } }

.theme-category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}
.theme-category-tile__icon-wrap {
	width: 6rem; height: 6rem;
	border-radius: 9999px;
	display: flex; align-items: center; justify-content: center;
	border: 0.5px solid color-mix(in srgb, var(--color-forest) 70%, transparent);
	background: var(--color-ink-cream);
	transition: all 0.3s var(--transition-smooth);
}
@media (min-width: 640px) { .theme-category-tile__icon-wrap { width: 7rem; height: 7rem; } }
@media (min-width: 768px) { .theme-category-tile__icon-wrap { width: 9rem; height: 9rem; } }
.theme-category-tile:hover .theme-category-tile__icon-wrap {
	border-color: var(--color-forest);
	background: var(--color-forest);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-powder) 60%, transparent), 0 0 0 4px var(--color-background);
}
.theme-category-tile__icon { width: 3.5rem; height: 3.5rem; object-fit: contain; transition: all 0.3s ease; }
@media (min-width: 768px) { .theme-category-tile__icon { width: 5rem; height: 5rem; } }
.theme-category-tile:hover .theme-category-tile__icon { filter: invert(1); }
.theme-category-tile__label {
	font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-foreground);
	text-align: center; transition: color 0.3s ease; text-transform: lowercase;
}
@media (min-width: 768px) { .theme-category-tile__label { font-size: 1.125rem; } }
.theme-category-tile:hover .theme-category-tile__label { color: var(--color-forest); }

/* =====================================================================
   PRODUCT GRID / CARD (shared across shop, featured, related — 31.13)
   ===================================================================== */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }

.theme-featured-products { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .theme-featured-products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-related-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-related-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.theme-related-products { gap: 1.5rem; }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card-wrap.theme-hidden-extra,
.theme-product-card-wrap.theme-filtered-out { display: none !important; }

.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__add { pointer-events: auto; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--card-radius);
	border: 0.5px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	background: var(--color-card);
	margin-bottom: 1.25rem;
}
.theme-product-card__image-wrapper .theme-product-card-img {
	transition: transform 0.7s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper .theme-product-card-img { transform: scale(1.04); }

.theme-product-card__badge {
	position: absolute; top: 1rem; right: 1rem; z-index: 3;
	padding: 0.25rem 0.75rem; border-radius: var(--radius);
	font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
	background: var(--color-foreground); color: var(--color-background);
}

.theme-product-card__info { flex: 1; padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-card__cat-row { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.theme-product-card__rule { height: 1px; width: 1rem; background: color-mix(in srgb, var(--color-accent) 70%, transparent); flex-shrink: 0; }
.theme-product-card__cat {
	font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--color-muted-foreground);
	overflow: hidden; white-space: nowrap; text-overflow: ellipsis; min-width: 0;
}
.theme-product-card__title {
	font-family: var(--font-display); font-style: italic; font-weight: 400;
	font-size: 1.125rem; line-height: 1.35; color: var(--color-foreground); text-transform: lowercase;
	transition: color 0.3s ease;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.25rem; } }
.theme-product-card:hover .theme-product-card__title { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-product-card__price { font-size: 0.875rem; letter-spacing: -0.01em; color: var(--color-muted-foreground); }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.6; margin-right: 0.35rem; }

.theme-product-card__add {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 3;
	padding: 0.75rem 1rem; border-radius: var(--radius);
	background: var(--color-foreground); color: var(--color-background);
	border: 0.5px solid var(--color-foreground);
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
	text-align: center;
	opacity: 0; transform: translateY(0.5rem);
	transition: all 0.3s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__add { opacity: 1; transform: translateY(0); }
.theme-product-card__add:hover { background: transparent; color: var(--color-background); border-color: var(--color-background); }

/* =====================================================================
   ABOUT / OUR STORY
   ===================================================================== */
.theme-about-section { background: var(--color-ink-cream); padding-bottom: 6rem; }
@media (min-width: 768px) { .theme-about-section { padding-bottom: 8rem; } }
.theme-about-section__banner {
	position: relative;
	width: 100vw;
	left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;
	height: 42vh; min-height: 280px; overflow: hidden; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .theme-about-section__banner { height: 55vh; } }
.theme-about-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-about-section__content { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .theme-about-section__content { padding: 0 3.5rem; } }
@media (min-width: 1024px) { .theme-about-section__content { padding: 0 5rem; } }
.theme-about-section__heading {
	font-family: var(--font-display); font-style: italic; font-weight: 400; text-align: center;
	font-size: 1.875rem; line-height: 1.2; margin: 1.75rem 0 3rem;
}
@media (min-width: 768px) { .theme-about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-about-section__heading { font-size: 3rem; } }
.theme-about-section__grid {
	display: grid; gap: 2.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	font-size: 1rem; line-height: 1.7;
}
@media (min-width: 768px) {
	.theme-about-section__grid { grid-template-columns: 1fr 1fr; gap: 3rem; font-size: 1.0625rem; }
	.theme-about-section__grid p:first-child { padding-right: 3rem; border-right: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent); }
	.theme-about-section__grid p:last-child { padding-left: 3rem; }
}
.theme-about-section__cta { text-align: center; margin-top: 3rem; }

/* =====================================================================
   OWNER / WORKSHOP
   ===================================================================== */
.theme-owner-section { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .theme-owner-section { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.theme-owner-section__image-col {
	position: relative; min-height: 360px; overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	padding: 3rem 1.5rem; background: var(--color-card);
}
@media (min-width: 768px) { .theme-owner-section__image-col { min-height: 520px; padding: 4rem 3rem; } }
@media (min-width: 1024px) { .theme-owner-section__image-col { min-height: 620px; } }
.theme-owner-section__oval-frame { position: relative; width: 100%; max-width: 28rem; aspect-ratio: 3 / 4; }
.theme-owner-section__text-col { display: flex; align-items: center; background: var(--color-forest); color: var(--color-ink-cream); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .theme-owner-section__text-col { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .theme-owner-section__text-col { padding: 6rem 5rem; } }
.theme-owner-section__inner { max-width: 36rem; }
.theme-owner-section__name {
	font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase;
	font-size: 3rem; line-height: 1.05; margin: 1.25rem 0 1.75rem; color: var(--color-ink-cream);
}
@media (min-width: 768px) { .theme-owner-section__name { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-owner-section__name { font-size: 4.5rem; } }
.theme-owner-section__quote {
	font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4;
	margin-bottom: 2rem; border-left: 2px solid var(--color-accent); padding-left: 1.25rem;
}
@media (min-width: 768px) { .theme-owner-section__quote { font-size: 1.5rem; } }
.theme-owner-section__paragraph { line-height: 1.7; margin-bottom: 1.25rem; }
.theme-owner-section__link { text-decoration: underline; text-underline-offset: 4px; color: var(--color-peanut); transition: color 0.2s ease; }
.theme-owner-section__link:hover { color: var(--color-ink-cream); }

/* =====================================================================
   SERVICES ("What We Do")
   ===================================================================== */
.theme-services-section { background: color-mix(in srgb, var(--color-card) 60%, transparent); }
.theme-services-section__heading { font-size: 2.25rem; margin-top: 1rem; }
@media (min-width: 768px) { .theme-services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-services-section__heading { font-size: 3.75rem; } }

.theme-services {
	display: grid; grid-template-columns: 1fr; border: 0.5px solid color-mix(in srgb, var(--color-forest) 25%, transparent);
	background: var(--color-background); overflow: hidden; max-width: 84rem; margin: 0 auto;
}
@media (min-width: 1024px) { .theme-services { grid-template-columns: 1fr 1fr; } }

.theme-services__image-panel { position: relative; aspect-ratio: 4 / 3; background: color-mix(in srgb, var(--color-forest) 10%, transparent); overflow: hidden; }
@media (min-width: 1024px) { .theme-services__image-panel { aspect-ratio: auto; min-height: 560px; } }
.theme-services__image { opacity: 0; transition: opacity 0.5s var(--transition-smooth); }
.theme-services__image.is-active { opacity: 1; }
.theme-services__image-panel::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-forest) 25%, transparent), transparent 60%);
	pointer-events: none;
}

.theme-services__rows { display: flex; flex-direction: column; background: var(--color-forest); color: var(--color-ink-cream); }
.theme-services__row { border-bottom: 0.5px solid color-mix(in srgb, var(--color-ink-cream) 15%, transparent); transition: background 0.3s ease; }
.theme-services__row:last-of-type { border-bottom: none; }
.theme-services__row-toggle {
	width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
	text-align: left; padding: 1.25rem 1.5rem;
}
@media (min-width: 768px) { .theme-services__row-toggle { padding: 1.25rem 2.5rem; } }
.theme-services__row.is-active .theme-services__row-toggle { padding-top: 1.75rem; padding-bottom: 1.75rem; background: color-mix(in srgb, var(--color-forest) 95%, transparent); }
.theme-services__row:not(.is-active):hover { background: color-mix(in srgb, var(--color-forest) 70%, transparent); }
.theme-services__row-text { min-width: 0; flex: 1; }
.theme-services__kicker { display: block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-peanut); margin-bottom: 0.5rem; }
.theme-services__title { display: block; font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase; font-size: 1.5rem; line-height: 1.25; color: var(--color-ink-cream); }
@media (min-width: 768px) { .theme-services__title { font-size: 1.875rem; } }
.theme-services__arrow { flex-shrink: 0; margin-top: 0.5rem; color: var(--color-peanut); font-size: 1.125rem; line-height: 1; transition: transform 0.3s ease; }
.theme-services__row.is-active .theme-services__arrow { transform: rotate(90deg); }

.theme-services__row-body { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--transition-smooth); padding: 0 1.5rem; }
@media (min-width: 768px) { .theme-services__row-body { padding: 0 2.5rem; } }
.theme-services__row.is-active .theme-services__row-body { max-height: 220px; padding-bottom: 1.75rem; }
.theme-services__desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 36rem; padding-top: 1rem; }
@media (min-width: 768px) { .theme-services__desc { font-size: 0.9375rem; } }
.theme-services__cta { display: inline-block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-peanut); transition: all 0.3s ease; }
.theme-services__cta:hover { color: var(--color-ink-cream); letter-spacing: 0.32em; }
.theme-services__shop-link {
	display: block; text-align: left; padding: 1.25rem 1.5rem; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--color-peanut); border-top: 0.5px solid color-mix(in srgb, var(--color-ink-cream) 15%, transparent); transition: color 0.2s ease;
}
@media (min-width: 768px) { .theme-services__shop-link { padding: 1.25rem 2.5rem; } }
.theme-services__shop-link:hover { color: var(--color-ink-cream); }

/* =====================================================================
   COMMISSIONS
   ===================================================================== */
.theme-commissions-section { background: var(--color-forest-2); color: var(--color-ink-cream); padding: 5rem 0; }
@media (min-width: 768px) { .theme-commissions-section { padding: 7rem 0; } }
.theme-commissions-section__intro { max-width: 48rem; margin: 0 auto; text-align: center; }
.theme-commissions-section__heading {
	font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase;
	font-size: 2.25rem; line-height: 1.05; margin: 1.25rem 0 1.75rem;
}
@media (min-width: 768px) { .theme-commissions-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-commissions-section__heading { font-size: 3.75rem; } }
.theme-commissions-section__paragraph { font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .theme-commissions-section__paragraph { font-size: 1.125rem; } }
.theme-commissions-section__actions { margin-top: 4rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .theme-commissions-section__actions { flex-direction: row; justify-content: center; } }

/* =====================================================================
   SHOP SECTION
   ===================================================================== */
.theme-shop-section { background: var(--color-background); }
.shop-heading { font-size: 2.25rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.75rem; } }

.theme-shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.theme-shop-search__icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.theme-shop-search__input {
	width: 100%; padding: 0.5rem 0.25rem 0.5rem 1.75rem; background: transparent;
	border: none; border-bottom: 1px solid var(--color-border); border-radius: 0;
	font-size: 1rem; color: var(--color-foreground);
}
.theme-shop-search__input:focus { outline: none; border-bottom-color: var(--color-powder); }
.theme-shop-search__input::placeholder { color: var(--color-muted-foreground); }

.theme-shop-cats {
	display: flex; overflow-x: auto; gap: 0.5rem; margin-bottom: 1rem;
	padding: 0 1rem 0.25rem; margin-left: -1rem; margin-right: -1rem;
	scrollbar-width: none; scroll-snap-type: x mandatory;
}
.theme-shop-cats::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.theme-shop-cats {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		overflow-x: visible;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
		gap: 0.375rem;
		scroll-snap-type: none;
	}
	.theme-shop-cat-filter {
		scroll-snap-align: unset;
		padding: 0.4375rem 0.625rem;
		font-size: 9px;
		letter-spacing: 0.12em;
	}
}
@media (min-width: 768px) {
	.theme-shop-cats {
		flex-wrap: wrap; justify-content: center; overflow-x: visible;
		padding: 0 0 0.25rem; margin-left: 0; margin-right: 0;
		scroll-snap-type: none;
	}
}
.theme-shop-cat-filter {
	flex-shrink: 0; scroll-snap-align: start;
	padding: 0.5rem 1.25rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: var(--radius); border: 0.5px solid var(--color-border); color: var(--color-foreground);
	background: transparent; transition: all 0.3s var(--transition-smooth);
}
.theme-shop-cat-filter:hover { border-color: var(--color-forest); color: var(--color-forest); }
.theme-shop-cat-filter.is-active { background: var(--color-forest); color: var(--color-ink-cream); border-color: var(--color-forest); }

.theme-shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.theme-shop-price-filter__toggle {
	display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
	font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground);
	transition: color 0.3s ease;
}
.theme-shop-price-filter__toggle:hover { color: var(--color-foreground); }
.theme-shop-price-filter__value { opacity: 0.7; text-transform: none; letter-spacing: normal; }
#theme-price-filter-chevron { transition: transform 0.3s ease; }

.theme-shop-price-filter__panel { width: 100%; max-width: 24rem; overflow: hidden; max-height: 0; transition: max-height 0.3s var(--transition-smooth); }
.theme-shop-price-filter__panel.is-open { max-height: 140px; }
.theme-shop-price-filter__labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-top: 0.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 9999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-accent); }
.range-input {
	position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0;
	-webkit-appearance: none; appearance: none; background: transparent; pointer-events: none;
}
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none; pointer-events: auto;
	width: 16px; height: 16px; border-radius: 9999px; background: var(--color-background);
	border: 2px solid var(--color-accent); cursor: pointer; margin-top: 0;
}
.range-input::-moz-range-thumb {
	pointer-events: auto; width: 16px; height: 16px; border-radius: 9999px;
	background: var(--color-background); border: 2px solid var(--color-accent); cursor: pointer;
}
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.theme-shop-empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.theme-shop-showmore-wrap { text-align: center; margin-top: 3rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.theme-faq-section { background: var(--color-ink-cream); padding: 5rem 0; }
@media (min-width: 768px) { .theme-faq-section { padding: 7rem 0; } }
.theme-faq-section__intro { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
@media (min-width: 768px) { .theme-faq-section__intro { margin-bottom: 3.5rem; } }
.theme-faq-section__heading { font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase; font-size: 3rem; line-height: 1.05; margin: 1.25rem 0; }
@media (min-width: 768px) { .theme-faq-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-faq-section__heading { font-size: 4.5rem; } }
.theme-faq-section__text { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .theme-faq-section__text { font-size: 1.125rem; } }

.theme-faq-tabs {
	display: flex; overflow-x: auto; gap: 0.625rem; margin-bottom: 2.5rem;
	padding: 0 1rem 0.5rem; margin-left: -1rem; margin-right: -1rem;
	scrollbar-width: none; scroll-snap-type: x mandatory;
}
.theme-faq-tabs::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
	.theme-faq-tabs {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		overflow-x: visible;
		margin-left: 0;
		margin-right: 0;
		padding: 0 0 0.5rem;
		gap: 0.375rem;
		scroll-snap-type: none;
	}
	.theme-faq-tab {
		scroll-snap-align: unset;
		padding: 0.4375rem 0.75rem;
		font-size: 0.875rem;
	}
}
@media (min-width: 768px) {
	.theme-faq-tabs {
		flex-wrap: wrap; justify-content: center; overflow-x: visible;
		padding: 0 0 0.5rem; margin-left: 0; margin-right: 0;
		scroll-snap-type: none;
	}
}
.theme-faq-tab {
	flex-shrink: 0; scroll-snap-align: start;
	border-radius: var(--radius); border: 0.5px solid var(--color-forest);
	padding: 0.625rem 1.25rem; font-family: var(--font-display); font-style: italic; font-size: 1rem;
	color: var(--color-foreground); background: transparent; transition: all 0.3s ease;
}
@media (min-width: 768px) { .theme-faq-tab { font-size: 1.125rem; } }
.theme-faq-tab:hover { background: color-mix(in srgb, var(--color-forest) 10%, transparent); }
.theme-faq-tab.is-active { background: var(--color-forest); color: var(--color-ink-cream); }

.theme-faq-panels { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); max-width: 56rem; margin: 0 auto; }
.theme-faq-panel:not(.is-active) { display: none; }
.theme-faq-panel { animation: fadeIn 0.25s ease; }
.theme-faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-faq-item__q {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0; text-align: left;
}
@media (min-width: 768px) { .theme-faq-item__q { padding: 1.5rem 0; } }
.theme-faq-item__q span:first-child { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.35; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-faq-item__q span:first-child { font-size: 1.5rem; } }
.theme-faq-item__icon {
	flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: var(--radius); border: 1px solid var(--color-forest);
	display: flex; align-items: center; justify-content: center; color: var(--color-forest); transition: all 0.3s ease;
}
.theme-faq-item.is-open .theme-faq-item__icon { background: var(--color-forest); color: var(--color-ink-cream); }
.theme-faq-item.is-open .theme-faq-item__icon svg { transform: rotate(180deg); }
.theme-faq-item__icon svg { transition: transform 0.3s ease; }
.theme-faq-item__a { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--transition-smooth); }
.theme-faq-item.is-open .theme-faq-item__a { max-height: 400px; }
.theme-faq-item__a p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; line-height: 1.7; padding-bottom: 1.5rem; padding-right: 3rem; max-width: 48rem; }
@media (min-width: 768px) { .theme-faq-item__a p { font-size: 1.0625rem; } }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.theme-testimonials-section { background: var(--color-card); padding: 5rem 0; border-top: 0.5px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
@media (min-width: 768px) { .theme-testimonials-section { padding: 7rem 0; } }
.theme-testimonials-section__intro { display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; text-align: center; }
@media (min-width: 768px) { .theme-testimonials-section__intro { margin-bottom: 4rem; } }
.theme-testimonials-section__sparkle-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; color: var(--color-accent); }
.theme-testimonials-section__rule { height: 1px; width: 1.5rem; background: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.theme-testimonials-section__eyebrow { display: block; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-testimonials-section__heading { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 2.25rem; text-align: center; }
@media (min-width: 768px) { .theme-testimonials-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-testimonials-section__heading { font-size: 3.75rem; } }

.theme-testimonials-carousel { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); overflow: hidden; }
.theme-testimonials-carousel__track { display: flex; transition: transform 0.5s var(--transition-smooth); will-change: transform; }
.theme-testimonials-carousel__slide { flex: 0 0 85%; min-width: 0; padding: 0 0.75rem; }
@media (min-width: 640px) { .theme-testimonials-carousel__slide { flex-basis: 70%; } }
@media (min-width: 768px) { .theme-testimonials-carousel__slide { flex-basis: 55%; padding: 0 1rem; } }
@media (min-width: 1024px) { .theme-testimonials-carousel__slide { flex-basis: 45%; } }
.theme-testimonials-carousel__card {
	background: var(--color-forest-2); border-radius: var(--card-radius); padding: 2rem;
	display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px;
	text-align: center;
}
@media (min-width: 768px) { .theme-testimonials-carousel__card { padding: 2.5rem; min-height: 360px; } }
.theme-testimonials-carousel__stars { text-align: center; margin-bottom: 1.5rem; color: var(--color-peanut); letter-spacing: 0.25em; font-size: 1rem; }
.theme-testimonials-carousel__card blockquote {
	font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.6; text-align: center;
	color: var(--color-ink-cream); max-width: 36rem; margin: 0 auto; text-wrap: balance;
}
@media (min-width: 768px) { .theme-testimonials-carousel__card blockquote { font-size: 1.25rem; } }
@media (min-width: 1024px) { .theme-testimonials-carousel__card blockquote { font-size: 1.5rem; } }
.theme-testimonials-carousel__author { margin-top: 1.5rem; text-align: center; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-peanut); }

.theme-testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.theme-testimonials-controls__btn {
	width: 2.5rem; height: 2.5rem; border-radius: var(--radius); border: 0.5px solid var(--color-foreground);
	color: var(--color-foreground); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.theme-testimonials-controls__btn:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-testimonials-controls__dots { display: flex; align-items: center; gap: 0.5rem; }
.theme-testimonials-controls__dot { height: 1px; width: 1.25rem; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); transition: all 0.3s ease; }
.theme-testimonials-controls__dot.is-active { width: 2.5rem; background: var(--color-foreground); }

/* =====================================================================
   FINAL CTA / CONTACT
   ===================================================================== */
.theme-final-cta { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .theme-final-cta { grid-template-columns: 1fr 1fr; } }
.theme-final-cta__image { position: relative; overflow: hidden; min-height: 280px; }
@media (min-width: 1024px) { .theme-final-cta__image { min-height: 480px; } }
.theme-final-cta__content { position: relative; background: var(--color-forest); color: var(--color-ink-cream); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; }
@media (min-width: 768px) { .theme-final-cta__content { padding: 6rem 4rem; } }
.theme-final-cta__inner { max-width: 28rem; text-align: center; }
.theme-final-cta__heading { font-family: var(--font-display); font-style: italic; font-weight: 400; text-transform: lowercase; font-size: 2.25rem; line-height: 1.05; margin: 1.25rem 0 1.5rem; }
@media (min-width: 768px) { .theme-final-cta__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-final-cta__heading { font-size: 3.75rem; } }
.theme-final-cta__paragraph { line-height: 1.7; margin-bottom: 2.5rem; }
.theme-final-cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-final-cta__actions { flex-direction: row; } }
.theme-final-cta__contact-line { margin-top: 2rem; font-size: 0.875rem; color: var(--color-peanut); }
.theme-final-cta__sep { margin: 0 0.5rem; opacity: 0.5; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { border-top: 0.5px solid color-mix(in srgb, var(--color-powder) 40%, transparent); background: var(--color-card); box-shadow: inset 0 1px 0 color-mix(in srgb, var(--color-peanut) 45%, transparent); }
.site-footer .container-wide {
	padding-left: clamp(1.25rem, 5vw, 2rem);
	padding-right: clamp(1.25rem, 5vw, 2rem);
}
.site-footer__inner { padding: 4rem 0 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding: 5rem 0 2.5rem; } }
.site-footer__brand {
	display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem;
	border-bottom: 0.5px solid var(--color-border);
}
@media (min-width: 640px) { .site-footer__brand { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__logo-img { height: 6rem; width: auto; }
@media (min-width: 640px) { .site-footer__logo-img { height: 7rem; } }
.site-footer__brand-text { max-width: 32rem; }
@media (min-width: 640px) { .site-footer__brand-text { text-align: right; } }
.site-footer__tagline { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; }
.site-footer__contact-line { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.site-footer__sep { margin: 0 0.5rem; opacity: 0.4; }
.site-footer a:hover { color: var(--color-foreground); }

.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; column-gap: 1.5rem; }
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(4, 1fr); column-gap: 0; } }
.site-footer__col { padding: 0; }
@media (min-width: 768px) { .site-footer__col { padding: 0 2rem; border-right: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); } .site-footer__col:first-child { padding-left: 0; } .site-footer__col--reach { border-right: none; } }
.site-footer__col--reach { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--reach { grid-column: span 1; } }
.site-footer__col-title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-bottom: 1.5rem; text-transform: lowercase; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__links a { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.site-footer__reach-copy { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; line-height: 1.6; }
.site-footer__icon-link { display: inline-flex; align-items: center; gap: 0.5rem; }

.site-footer__bottom {
	margin-top: 2rem; padding-top: 1.5rem; border-top: 0.5px solid var(--color-border);
	display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__signoff { font-family: var(--font-display-alt); font-style: italic; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); display: flex; align-items: center; gap: 0.5rem; }
.site-footer__sparkle { color: var(--color-accent); }
.site-footer__legal { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 11px; color: var(--color-muted-foreground); text-transform: uppercase; letter-spacing: 0.18em; }
@media (min-width: 640px) { .site-footer__legal { flex-direction: row; gap: 1rem; } }
.site-footer__legal-sep { opacity: 0.4; }

/* =====================================================================
   CONTACT MODAL (custom dialog matching Radix fade/zoom transitions)
   ===================================================================== */
#theme-contact-overlay {
	position: fixed; inset: 0; z-index: 90; background: color-mix(in srgb, #000000 80%, transparent);
	opacity: 0; visibility: hidden; transition: opacity 0.2s ease;
}
body.contact-open #theme-contact-overlay { opacity: 1; visibility: visible; }

#theme-contact-modal {
	position: fixed; left: 50%; top: 50%; z-index: 91; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	transform: translate(-50%, -48%) scale(0.95); background: var(--color-background); border-radius: var(--card-radius);
	padding: 1.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
body.contact-open #theme-contact-modal { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }

.theme-contact-modal__close { position: absolute; right: 1rem; top: 1rem; opacity: 0.7; color: var(--color-foreground); }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-contact-modal__desc { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-contact-modal__quicklinks { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-contact-modal__quicklinks a { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal__quicklinks a:hover { color: var(--color-foreground); }

.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-contact-form__field input, .theme-contact-form__field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 0.5px solid var(--color-border);
	border-radius: var(--radius); font-size: 1rem; transition: box-shadow 0.3s ease;
}
.theme-contact-form__field input:focus, .theme-contact-form__field textarea:focus {
	outline: none; box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-foreground) 40%, transparent);
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__error { color: var(--color-coral); font-size: 0.875rem; }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }

.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon {
	width: 3.5rem; height: 3.5rem; background: var(--color-foreground); color: var(--color-background);
	display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: var(--radius);
	animation: theme-pop-in 0.4s var(--transition-smooth);
}
@keyframes theme-pop-in { from { transform: scale(0); } to { transform: scale(1); } }
.theme-contact-modal__success-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-modal__success-text { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* =====================================================================
   SIDE CART DRAWER + OVERLAY
   ===================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 60; background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 61;
	background: var(--color-background); border-left: 0.5px solid var(--color-border);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 0.5px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.theme-cart-drawer__close { padding: 0.25rem; }
.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: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty-text { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
#theme-cart-drawer a.theme-cart-item__image {
	display: block;
	position: relative;
	width: 5rem;
	height: 6rem;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: var(--radius);
	border: 0.5px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	background: var(--color-card);
	line-height: 0;
	text-decoration: none;
}
#theme-cart-drawer .theme-cart-item__img,
#theme-cart-drawer a.theme-cart-item__image > img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: var(--radius); transition: background 0.2s ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-muted); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 0.5px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* =====================================================================
   404
   ===================================================================== */
.theme-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 3rem 1.5rem; }
.theme-404__eyebrow { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; }
.theme-404__code { font-family: var(--font-display); font-size: 5rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-404__code { font-size: 7rem; } }
.theme-404__text { font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-404__text { font-size: 1.125rem; } }

.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
.theme-page-container { padding: 4rem 0; }

/* =====================================================================
   WOOCOMMERCE — SINGLE PRODUCT (mirrors ProductDetail.tsx)
   ===================================================================== */
.single-product-main {
	padding-top: 6rem;
	padding-bottom: 0;
	background: var(--color-background);
}
@media (min-width: 1024px) {
	.single-product-main { padding-top: 7rem; }
}

.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-breadcrumb a { color: inherit; transition: color 0.2s ease; }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
	min-width: 0;
	padding-top: 1rem;
	padding-bottom: 6rem;
}
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: 7fr 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-info { padding-left: 1rem; }
}

.theme-product-gallery__mobile { display: block; }
.theme-product-gallery__desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__mobile { display: none; }
	.theme-product-gallery__desktop { display: flex; flex-direction: column; gap: 1rem; }
}

.theme-product-gallery__main,
.theme-product-gallery__stack-item {
	display: grid;
	aspect-ratio: 1 / 1;
	background: var(--color-card);
	overflow: hidden;
}
.theme-product-gallery__main-img,
.theme-product-gallery__stack-img {
	grid-area: 1 / 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}
.theme-product-thumb {
	position: relative;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-card);
	border: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}
.theme-product-thumb img,
.theme-product-thumb__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.theme-product-thumb:hover,
.theme-product-thumb.is-active { opacity: 1; }
.theme-product-thumb__indicator {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.theme-product-thumb.is-active .theme-product-thumb__indicator { opacity: 1; }

.theme-product-info__cat { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.product-title.theme-product-info__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: normal;
	font-size: 1.875rem;
	line-height: 1.1;
	margin: 0.75rem 0 1.25rem;
}
@media (min-width: 768px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 2.75rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-body); color: var(--color-foreground); }
.theme-product-info__excerpt {
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin-bottom: 2rem;
	font-family: var(--font-body);
	font-size: 1rem;
}
.theme-product-info__field { margin-bottom: 1rem; }
.theme-product-info__label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-muted-foreground);
	margin: 0 0 0.75rem;
	font-weight: 400;
}

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 0.5px solid var(--color-border); border-radius: var(--radius); }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background 0.2s ease; background: transparent; border: none; cursor: pointer; color: inherit; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-card); }
.qty.theme-qty-input {
	width: 2.75rem; text-align: center; border: none; background: transparent; padding: 0.5rem 0;
	font-family: var(--font-body); font-size: 0.875rem;
	-moz-appearance: textfield;
}
.qty.theme-qty-input::-webkit-inner-spin-button, .qty.theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.qty.theme-qty-input:focus { outline: none; }

.theme-add-to-cart-area,
.theme-add-to-cart-area-wrap .theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 0;
}
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area-wrap .single_add_to_cart_button {
	width: 100%;
	min-width: 0;
	flex: none;
}

.theme-product-accordions { margin-top: 2.5rem; border-top: 0.5px solid var(--color-border); }
.theme-product-accordion { border-bottom: 0.5px solid var(--color-border); }
.theme-product-accordion__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	color: inherit;
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}
.theme-product-accordion__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.theme-product-accordion.is-open .theme-product-accordion__chevron { transform: rotate(180deg); }
.theme-product-accordion__panel { padding-bottom: 1.5rem; font-family: var(--font-body); }
.theme-product-accordion__panel[hidden] { display: none; }
.theme-product-accordion__panel p {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin: 0 0 0.75rem;
}
.theme-product-accordion__panel p:last-child { margin-bottom: 0; }
.theme-product-accordion__description {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin: 0 0 1rem;
	white-space: pre-line;
}
.theme-product-accordion__details {
	list-style: none;
	margin: 0;
	padding: 0;
}
.theme-product-accordion__details li {
	font-size: 15px;
	color: var(--color-muted-foreground);
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}
.theme-product-accordion__details li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--color-foreground);
	margin-top: 0.55rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}
.theme-product-accordions__end { border-top: 0.5px solid var(--color-border); }

.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; color: var(--color-muted-foreground); line-height: 1.7; }

/* Add-to-cart button style override (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-foreground) !important;
	color: var(--color-background) !important;
	border: 0.5px solid var(--color-foreground) !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: 1rem 2rem !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: all 0.3s var(--transition-smooth) !important;
	flex: 1 1 auto;
	min-width: 160px;
}
.single-product-main .single_add_to_cart_button.button,
.single-product-main a.single_add_to_cart_button {
	width: 100%;
	min-width: 0;
	flex: none;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	background-color: transparent !important;
	color: var(--color-foreground) !important;
	letter-spacing: 0.32em !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.6 !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.6 !important;
	background-color: var(--color-foreground) !important;
}
.single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Card compact button — overrides global rules (scoped after them) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	flex: none;
	min-width: 0;
}

/* Hide "View cart" injected after AJAX add (11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* Variations table layout (11.5.1) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations tbody td.value select { width: 100%; max-width: 20rem; padding: 0.5rem; border: 0.5px solid var(--color-border); border-radius: var(--radius); }
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* Related products */
.related-products-section { padding: 5rem 0; border-top: 0.5px solid var(--color-border); }
.theme-related-products__eyebrow { text-align: center; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem; }
.theme-related-products__heading { text-align: center; font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .theme-related-products__heading { font-size: 3rem; } }

/* Notices scoping (14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
	border-radius: var(--radius); font-family: var(--font-body); padding: 1rem 1.5rem; margin-bottom: 1.5rem;
	border-top: 3px solid var(--color-accent); background: var(--color-card); list-style: none;
}

/* =====================================================================
   WOOCOMMERCE — RESPONSIVE PAGE GUTTERS
   ===================================================================== */
@media (max-width: 1023px) {
	body.woocommerce-cart .site-main .container-wide,
	body.woocommerce-checkout .site-main .container-wide,
	body.woocommerce-account .site-main .container-wide,
	body.woocommerce-page .site-main .container-wide,
	.woocommerce-archive-main .container-wide,
	.single-product-main .container-wide,
	body.theme-thankyou-page .theme-thankyou {
		padding-left: clamp(1.25rem, 5vw, 2rem);
		padding-right: clamp(1.25rem, 5vw, 2rem);
	}

	body.woocommerce-cart .theme-page-container,
	body.woocommerce-checkout .theme-page-container,
	body.woocommerce-account .theme-page-container {
		overflow-x: clip;
	}

	body.woocommerce-cart .page-title,
	body.woocommerce-cart .entry-content,
	body.woocommerce-account .page-title,
	body.woocommerce-account .entry-content,
	body.woocommerce-checkout .page-title {
		padding-left: 0;
		padding-right: 0;
	}

	body.woocommerce-checkout .entry-content > .wp-block-woocommerce-checkout,
	body.woocommerce-cart .entry-content > .wp-block-woocommerce-cart,
	body.woocommerce-cart .entry-content > .wp-block-woocommerce-filled-cart-block,
	body.woocommerce-cart .entry-content > .wp-block-woocommerce-empty-cart-block,
	body.woocommerce-account .entry-content > .woocommerce {
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* =====================================================================
   WOOCOMMERCE — SHOP ARCHIVE (dedicated /shop/ page, category/tag archives)
   ===================================================================== */
.woocommerce-archive-main { padding: 4rem 0 6rem; }
.theme-archive-header { text-align: center; margin-bottom: 3rem; }
.theme-archive-empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }
.woocommerce-breadcrumb { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 2rem; }
.woocommerce-breadcrumb a:hover { color: var(--color-foreground); }
nav.woocommerce-pagination { text-align: center; margin-top: 3rem; }
nav.woocommerce-pagination ul { display: inline-flex; gap: 0.5rem; }
nav.woocommerce-pagination a, nav.woocommerce-pagination span {
	display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem;
	border: 0.5px solid var(--color-border); border-radius: var(--radius);
}
nav.woocommerce-pagination .current { background: var(--color-forest); color: var(--color-ink-cream); border-color: var(--color-forest); }

/* =====================================================================
   WOOCOMMERCE — CHECKOUT BLOCK (13.x)
   ===================================================================== */
body.woocommerce-checkout .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.woocommerce-checkout .page-title {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2.5rem);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notice-banner {
		grid-column: 1 / -1;
	}
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-foreground);
	border: 0.5px solid var(--color-border);
	border-radius: var(--radius);
	background-color: var(--color-background);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	border-color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	min-height: var(--btn-height) !important;
	width: 100%;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	opacity: 0.85;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: var(--radius);
	font-family: var(--font-body);
}

/* =====================================================================
   WOOCOMMERCE — CART / MY ACCOUNT WIDTH PARITY (13.7)
   ===================================================================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding: 2rem 0 4rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

/* =====================================================================
   WOOCOMMERCE — THANK YOU PAGE (22.8)
   ===================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .theme-thankyou { max-width: 1400px; margin: 0 auto; padding: 2rem 1.5rem 5rem; }
@media (min-width: 1024px) { body.theme-thankyou-page .theme-thankyou { padding: 2rem 2rem 6rem; } }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.75rem;
	padding: 0 0 1rem 0; margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; margin: 0 0 2rem;
	background: var(--color-card); border-radius: var(--card-radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-family: var(--font-display); font-size: 1.125rem; margin-top: 0.25rem; }

body.theme-thankyou-page .woocommerce-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px; overflow-wrap: break-word; border: 0.5px solid var(--color-border); border-radius: var(--radius); padding: 1.25rem; font-style: normal;
}

body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem; border-bottom: 0.5px solid var(--color-border); text-align: left;
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* =====================================================================
   RESPONSIVE FALLBACK / MISC
   ===================================================================== */
.theme-fallback-main .entry-content { line-height: 1.7; }
