/* =========================================================================
   House of Né theme.css
   HSL channel tokens (src/index.css parity). Customizer overrides inject
   exact channel values via theme_build_color_css(). Paint with hsl(var(--token)).
   ========================================================================= */

:root {
	/* Design tokens — src/index.css :root (HSL channels; paint via hsl(var(--token))). */
	--background: 35 45% 97%;
	--foreground: 320 18% 14%;
	--card: 0 0% 100%;
	--card-foreground: 320 18% 14%;
	--popover: 0 0% 100%;
	--popover-foreground: 320 18% 14%;
	--primary: 320 20% 18%;
	--primary-foreground: 35 45% 97%;
	--secondary: 340 25% 92%;
	--secondary-foreground: 320 20% 18%;
	--muted: 35 30% 93%;
	--muted-foreground: 320 10% 42%;
	--accent: 18 48% 62%;
	--accent-foreground: 35 45% 97%;
	--destructive: 0 70% 42%;
	--destructive-foreground: 0 0% 100%;
	--border: 30 20% 88%;
	--input: 30 20% 82%;
	--ring: 18 48% 62%;
	--rosa: 340 55% 78%;
	--marigold: 18 48% 62%;
	--teal: 320 20% 18%;
	--indigo: 320 20% 18%;
	--nopal: 320 20% 18%;
	--butter: 30 40% 94%;
	--chocolate: 320 22% 32%;
	--powder: 340 45% 90%;
	--surface-deep: 320 22% 12%;
	--surface-deep-foreground: 35 45% 97%;

	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Karla', sans-serif;

	--radius: 0.375rem;
	--shadow-soft: 0 4px 20px -4px hsl(320 20% 18% / 0.10);
	--shadow-elevated: 0 12px 45px -12px hsl(320 20% 18% / 0.22);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 80px;
	--checkout-max-width: 1280px;
	--checkout-gap: 2rem;

	--btn-radius: 999px;
	--btn-height: 3.25rem;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.25em;
	--btn-text-transform: uppercase;
}

/* ---- Section 15.1 global img rule with cover-image exclusion list ---- */
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.theme-product-hero-img):not(.theme-related-card-img):not(.contact-cta-bg):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.hero-bg-img,
.contact-cta-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* ---- Reset & base ---- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: 0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding-inline: 1.5rem;
	min-width: 0;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.container-wide { padding-inline: 2rem; }
}

.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); }

.accent-text { color: hsl(var(--accent)); font-style: italic; }

.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ---- Animations (Section 2.1) ---- */
@keyframes themeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes themeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes themeRevealUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes themeRevealFade { from { opacity: 0; } to { opacity: 1; } }

.animate-fade-in { animation: themeFadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: themeSlideUp 0.6s var(--transition-smooth) forwards; }

.reveal-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
	will-change: opacity, transform;
}
.reveal-item[data-reveal="fade"] { transform: none; }
.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Customizer preview + no-JS/no-IO fallback: content must never be stuck
   invisible (Section 2.1 rule 3 & 5). */
body.is-customizer .reveal-item,
.no-js .reveal-item,
.no-observer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .animate-fade-in, .animate-slide-up {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* =========================================================================
   ANNOUNCEMENT BAR
   ========================================================================= */
.theme-announcement-bar {
	position: relative;
	background: hsl(var(--foreground));
	color: hsl(var(--background));
}
.theme-announcement-inner { padding-block: 0.5rem; text-align: center; }
.theme-announcement-text {
	font-size: 13px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	padding-inline: 2.5rem;
	overflow-wrap: anywhere;
}
.theme-announcement-dismiss {
	position: absolute;
	right: 0.75rem; top: 50%;
	transform: translateY(-50%);
	padding: 0.25rem;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.theme-announcement-dismiss:hover { opacity: 1; }

/* =========================================================================
   HEADER
   ========================================================================= */
/* WordPress admin bar offset when logged in */
html.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	html.admin-bar .site-header { top: 46px; }
}
html.admin-bar body.theme-no-hero .site-main {
	padding-top: calc(var(--header-height) + 32px);
}
@media screen and (max-width: 782px) {
	html.admin-bar body.theme-no-hero .site-main {
		padding-top: calc(var(--header-height) + 46px);
	}
}

.site-header {
	position: sticky;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-menu-open {
	background: color-mix(in srgb, hsl(var(--background)) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: hsl(var(--border));
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
	position: relative;
	min-width: 0;
	gap: 0.5rem;
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	z-index: 1;
	min-width: 0;
	flex-shrink: 1;
}
/* Header logo: h-12 mobile / h-14 desktop (matches original design) */
.site-header .site-brand .site-logo-img {
	height: var(--logo-height-mobile, 48px) !important;
	width: auto !important;
	max-width: none !important;
	max-height: var(--logo-height, 56px);
	flex-shrink: 0;
	object-fit: contain;
	display: block;
}
@media (min-width: 768px) {
	.site-header .site-brand .site-logo-img {
		height: var(--logo-height, 56px) !important;
	}
}
/* Footer logo: h-14 (56px) */
.site-footer .site-footer-logo-link .site-logo-img {
	height: var(--logo-height, 56px) !important;
	width: auto !important;
	max-width: none !important;
	flex-shrink: 0;
	object-fit: contain;
	display: block;
}
.site-brand-name-wrap {
	display: none;
	flex-direction: column;
	line-height: 1;
	min-width: 0;
}
@media (min-width: 640px) {
	.site-brand-name-wrap { display: flex; }
}
.site-brand-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; }
.site-brand-subtitle {
	font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
	color: hsl(var(--muted-foreground)); font-family: var(--font-body); margin-top: 0.2rem;
}
.site-nav-center {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 1024px) {
	.site-nav-center { display: block; }
}
.theme-nav-list {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.theme-nav-list a {
	font-size: 12px;
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color 0.3s;
}
.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; z-index: 1; flex-shrink: 0; }
@media (min-width: 768px) {
	.site-nav-actions { gap: 0.75rem; }
}
.theme-search-toggle {
	display: none;
	padding: 0.5rem;
	transition: opacity 0.2s;
}
@media (min-width: 768px) {
	.theme-search-toggle { display: inline-flex; }
}
.theme-search-toggle:hover, .theme-cart-toggle:hover, .theme-mobile-menu-toggle:hover { opacity: 0.6; }
.theme-cart-toggle { position: relative; padding: 0.5rem; }
.theme-cart-count-badge {
	position: absolute; top: -2px; right: -2px;
	width: 20px; height: 20px;
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 500;
	background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
	border-radius: 999px;
}
.theme-cart-count-badge[hidden] { display: none !important; }
.theme-cart-count-inline {
	font-size: inherit;
	font-weight: 400;
	margin-left: 0.25rem;
}
.theme-mobile-menu-toggle { display: inline-flex; padding: 0.5rem; position: relative; }
.icon-menu-close { display: none; }
body.mobile-menu-open .icon-menu-open { display: none; }
body.mobile-menu-open .icon-menu-close { display: block; }
@media (min-width: 1024px) {
	.theme-mobile-menu-toggle { display: none; }
}
.theme-mobile-nav {
	display: none;
	border-top: 1px solid hsl(var(--border));
	padding: 1rem 0;
}
body.mobile-menu-open .theme-mobile-nav { display: block; animation: themeFadeIn 0.3s var(--transition-smooth); }
.theme-mobile-nav-list,
.theme-mobile-nav .theme-nav-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-mobile-nav-list li,
.theme-mobile-nav .theme-nav-list li {
	width: 100%;
}
.theme-mobile-nav-list a,
.theme-mobile-nav .theme-nav-list a {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 0.875rem;
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.5rem 0;
	transition: color 0.3s;
}
.theme-mobile-nav-list a:hover,
.theme-mobile-nav .theme-nav-list a:hover { color: hsl(var(--muted-foreground)); }
@media (min-width: 1024px) {
	.theme-mobile-nav,
	body.mobile-menu-open .theme-mobile-nav { display: none !important; }
}

.site-main {
	max-width: 100%;
	overflow-x: clip;
}

/* Home hero fills viewport under transparent fixed header (Section 22.7) */
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main.single-product-main {
	padding-top: 6rem !important;
	padding-bottom: 0;
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main { padding-top: 7rem !important; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero-section { background: hsl(var(--background)); }
.hero-media {
	position: relative;
	width: 100%;
	height: 78vh;
	min-height: 560px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.hero-media { height: 88vh; min-height: 680px; }
}
.hero-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to right, color-mix(in srgb, hsl(var(--foreground)) 85%, transparent) 0%, color-mix(in srgb, hsl(var(--foreground)) 45%, transparent) 45%, transparent 100%);
}
.hero-content-wrap { position: relative; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 36rem; }
.hero-kicker {
	display: block;
	font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
	color: hsl(var(--accent)); font-family: var(--font-body); margin-bottom: 1rem;
}
.hero-title {
	font-style: italic;
	font-weight: 400;
	font-size: 3.75rem;
	line-height: 0.95;
	letter-spacing: 0.01em;
	color: hsl(var(--background));
	margin-bottom: 1.5rem;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 6rem; } }
.hero-subtitle {
	color: color-mix(in srgb, hsl(var(--background)) 90%, transparent);
	font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
a.hero-cta-btn,
a.contact-cta-btn,
a.about-cta {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.hero-cta-btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: hsl(var(--accent)); color: hsl(var(--background));
	padding: 1.25rem 3rem;
	font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-body); font-weight: 500;
	transition: background-color 0.2s;
}
.hero-cta-btn:hover { background: color-mix(in srgb, hsl(var(--accent)) 90%, transparent); }

/* =========================================================================
   TILES ("Shop by category")
   ========================================================================= */
.tiles-section-inner { padding-block: 4rem; }
@media (min-width: 768px) { .tiles-section-inner { padding-block: 5rem; } }
.tiles-section-header { text-align: center; margin-bottom: 2.5rem; }
.tiles-kicker {
	display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
	color: hsl(var(--accent)); margin-bottom: 0.75rem;
}
.tiles-heading { font-weight: 400; font-style: italic; font-size: 2.25rem; letter-spacing: 0.01em; }
@media (min-width: 768px) { .tiles-heading { font-size: 3.75rem; } }
.tiles-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .tiles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.tile-card {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	text-align: left;
	border: none;
	padding: 0;
	cursor: pointer;
	background: transparent;
}
/* Lovable: from-foreground/90 via-foreground/40 to-foreground/10; hover only deepens from → 95% */
.tile-card-gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to top,
		color-mix(in srgb, hsl(var(--foreground)) 90%, transparent) 0%,
		color-mix(in srgb, hsl(var(--foreground)) 40%, transparent) 50%,
		color-mix(in srgb, hsl(var(--foreground)) 10%, transparent) 100%
	);
	transition: background 0.5s ease;
}
.tile-card:hover .tile-card-gradient {
	background: linear-gradient(
		to top,
		color-mix(in srgb, hsl(var(--foreground)) 95%, transparent) 0%,
		color-mix(in srgb, hsl(var(--foreground)) 40%, transparent) 50%,
		color-mix(in srgb, hsl(var(--foreground)) 10%, transparent) 100%
	);
}
.tile-card-img {
	z-index: 0;
	transform-origin: center center;
	transition: transform 0.7s var(--transition-smooth);
}
.tile-card:hover .tile-card-img { transform: scale(1.05); }
.tile-card-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	color: hsl(var(--background));
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
	pointer-events: none;
}
@media (min-width: 768px) { .tile-card-content { padding: 1.75rem; } }
.tile-card-tagline {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
	margin-bottom: 0.5rem;
	color: color-mix(in srgb, hsl(var(--accent)) 70%, hsl(var(--background)));
	filter: brightness(1.5);
}
.tile-card-tagline-bar { height: 1px; width: 1.5rem; background: currentColor; }
.tile-card-label {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	color: hsl(var(--background));
}
@media (min-width: 768px) { .tile-card-label { font-size: 2.25rem; } }
.tile-card-cta {
	display: inline-flex; align-items: center; gap: 0.375rem;
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
	color: hsl(var(--background));
}

/* =========================================================================
   SECTION HEADINGS (per-section scale, Section 2.2)
   ========================================================================= */
.about-section .section-heading,
.owners-section .section-heading {
	font-weight: 400; font-style: italic; letter-spacing: 0.01em; line-height: 1.05;
	overflow-wrap: break-word;
}
.about-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3.75rem; } }
.owners-section .section-heading { font-size: 3rem; line-height: 1.02; }
@media (min-width: 768px) { .owners-section .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .owners-section .section-heading { font-size: 4.5rem; } }
.services-section .section-heading { font-weight: 400; font-style: italic; font-size: 3rem; line-height: 1.02; letter-spacing: 0.01em; }
@media (min-width: 768px) { .services-section .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 4.5rem; } }
.shop-heading { font-weight: 400; font-style: italic; font-size: 2.25rem; letter-spacing: 0.01em; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
.contact-cta-heading { font-style: italic; font-size: 2.25rem; line-height: 1.02; letter-spacing: 0.01em; }
@media (min-width: 768px) { .contact-cta-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-cta-heading { font-size: 3.75rem; } }

/* =========================================================================
   ABOUT / STORY
   ========================================================================= */
.about-section-inner { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .about-section-inner { padding: 7rem 3.5rem; } }
@media (min-width: 1024px) { .about-section-inner { padding: 7rem 5rem; } }
.about-content { max-width: 42rem; margin: 0 auto; text-align: center; }
.about-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: hsl(var(--accent)); margin-bottom: 1.25rem; }
.about-heading { margin-bottom: 2rem; }
.about-paragraph-1, .about-paragraph-2 {
	color: color-mix(in srgb, hsl(var(--foreground)) 80%, transparent);
	line-height: 1.7; margin-bottom: 1.25rem;
}
.about-paragraph-2 { margin-bottom: 2.5rem; }
.about-cta { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--font-display); font-weight: 500; }

/* =========================================================================
   FOUNDER / OWNERS
   ========================================================================= */
.owners-grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .owners-grid { grid-template-columns: 1fr 1fr; } }
.owners-media { display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
@media (min-width: 768px) { .owners-media { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .owners-media { padding: 6rem 4rem; } }
.owners-media-frame {
	position: relative; width: 100%; max-width: 28rem;
	aspect-ratio: 4 / 5; overflow: hidden;
	background: hsl(var(--secondary)); box-shadow: var(--shadow-elevated);
}
@media (min-width: 1024px) { .owners-media-frame { max-width: 32rem; } }
.owners-content-wrap { display: flex; align-items: center; background: hsl(var(--background)); padding: 4rem 1.5rem; }
@media (min-width: 768px) { .owners-content-wrap { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .owners-content-wrap { padding: 6rem 5rem; } }
@media (min-width: 1280px) { .owners-content-wrap { padding: 6rem 6rem; } }
.owners-content { max-width: 36rem; }
.owners-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: hsl(var(--accent)); margin-bottom: 1.25rem; }
.owners-heading { margin-bottom: 1.75rem; }
.owners-quote {
	font-family: var(--font-display); font-style: italic;
	font-size: 1.5rem; line-height: 1.35; letter-spacing: 0.02em;
	color: color-mix(in srgb, hsl(var(--foreground)) 85%, transparent);
	margin-bottom: 2rem;
}
@media (min-width: 768px) { .owners-quote { font-size: 1.875rem; } }
.owners-paragraph-1, .owners-paragraph-2 {
	color: color-mix(in srgb, hsl(var(--foreground)) 75%, transparent);
	line-height: 1.7; margin-bottom: 1.25rem;
}

/* =========================================================================
   SERVICES / PROMISE
   ========================================================================= */
.services-section { background: hsl(var(--butter)); }
.services-section-inner { padding-block: 5rem; }
@media (min-width: 768px) { .services-section-inner { padding-block: 7rem; } }
.services-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .services-header { margin-bottom: 5rem; } }
.services-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: hsl(var(--accent)); margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.service-card {
	position: relative;
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	border-left: 4px solid hsl(var(--accent));
	padding: 2rem;
	transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) { .service-card { padding: 2.5rem; } }
.service-card.accent-marigold { border-left-color: hsl(var(--accent)); }
.service-card.accent-chocolate { border-left-color: hsl(var(--chocolate)); }
.service-card.accent-powder { border-left-color: hsl(var(--powder)); }
.service-card.accent-marigold:hover { background: color-mix(in srgb, hsl(var(--accent)) 5%, transparent); }
.service-card.accent-chocolate:hover { background: color-mix(in srgb, hsl(var(--chocolate)) 5%, transparent); }
.service-card.accent-powder:hover { background: color-mix(in srgb, hsl(var(--powder)) 10%, transparent); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; }
.service-icon-badge {
	display: flex; align-items: center; justify-content: center;
	height: 3rem; width: 3rem; border-radius: 999px; border: 1px solid;
}
.accent-marigold .service-icon-badge { border-color: color-mix(in srgb, hsl(var(--accent)) 40%, transparent); color: hsl(var(--accent)); }
.accent-chocolate .service-icon-badge { border-color: color-mix(in srgb, hsl(var(--chocolate)) 40%, transparent); color: hsl(var(--chocolate)); }
.accent-powder .service-icon-badge { border-color: color-mix(in srgb, hsl(var(--powder)) 60%, transparent); color: hsl(var(--foreground)); }
.service-numeral {
	display: inline-flex; align-items: center; padding: 0.25rem 0.65rem;
	border-radius: 999px; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.3em;
}
.accent-marigold .service-numeral { background: hsl(var(--accent)); color: hsl(var(--background)); }
.accent-chocolate .service-numeral { background: hsl(var(--chocolate)); color: hsl(var(--background)); }
.accent-powder .service-numeral { background: hsl(var(--powder)); color: hsl(var(--foreground)); }
.service-kicker { display: block; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.75rem; }
.accent-marigold .service-kicker { color: hsl(var(--accent)); }
.accent-chocolate .service-kicker { color: hsl(var(--chocolate)); }
.accent-powder .service-kicker { color: hsl(var(--foreground)); }
.service-title { font-size: 1.875rem; letter-spacing: 0.01em; line-height: 1.05; margin-bottom: 1rem; }
@media (min-width: 768px) { .service-title { font-size: 2.25rem; } }
.service-description { font-size: 1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }

/* =========================================================================
   SHOP SECTION
   ========================================================================= */
.shop-section-inner { padding-block: 4rem; }
@media (min-width: 768px) { .shop-section-inner { padding-block: 6rem; } }
.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: hsl(var(--accent)); margin-bottom: 0.75rem; }
.shop-heading { margin-bottom: 2.5rem; }
.shop-search-wrap { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: hsl(var(--muted-foreground)); }
.shop-search-input {
	width: 100%;
	padding: 0.5rem 0 0.5rem 1.75rem;
	background: transparent;
	border: none; border-bottom: 1px solid hsl(var(--border));
	font-size: 1rem;
	transition: border-color 0.2s;
}
.shop-search-input::placeholder { color: hsl(var(--muted-foreground)); }
.shop-search-input:focus { outline: none; border-bottom-color: hsl(var(--foreground)); }
.shop-category-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-cat-btn {
	padding: 0.5rem 1.25rem;
	font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid hsl(var(--border));
	background: transparent; color: hsl(var(--foreground));
	transition: all 0.3s;
}
.shop-cat-btn:hover { border-color: hsl(var(--foreground)); }
.shop-cat-btn.is-active { background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground)); }
.shop-price-filter-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-toggle {
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	color: hsl(var(--muted-foreground));
	transition: color 0.3s;
}
.shop-price-toggle:hover { color: hsl(var(--foreground)); }
.price-filter-current { opacity: 0.7; text-transform: none; letter-spacing: normal; }
.price-filter-chevron { transition: transform 0.3s; }
.shop-price-toggle.is-open .price-filter-chevron { transform: rotate(180deg); }
.shop-price-panel {
	width: 100%; max-width: 22rem;
	overflow: hidden;
	max-height: 0; opacity: 0;
	transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}
.shop-price-panel.is-open { max-height: 10rem; opacity: 1; }
.theme-price-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }

/* Dual-handle range — Section 31.4 */
.theme-price-range-wrapper { position: relative; height: 1.5rem; padding: 0 0.5rem; }
.range-track-bg, .range-track-fill {
	position: absolute; height: 4px; top: 50%;
	transform: translateY(-50%); pointer-events: none; border-radius: 999px;
}
.range-track-bg { left: 0.5rem; right: 0.5rem; background: hsl(var(--secondary)); }
.range-track-fill { background: hsl(var(--primary)); }
.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: 20px; height: 20px; border-radius: 999px;
	background: hsl(var(--background)); border: 2px solid hsl(var(--primary));
	cursor: pointer;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 20px; height: 20px; border-radius: 999px;
	background: hsl(var(--background)); border: 2px solid hsl(var(--primary));
	cursor: pointer;
}
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

/* Product grid + cards (shared across shop, related, archive — Section 31.13) */
.theme-product-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}
@media (min-width: 1024px) { .theme-product-grid { gap: 2rem; } }
.theme-product-card-wrap {
	width: calc(50% - 12px);
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) { .theme-product-card-wrap { width: calc(33.333% - 16px); } }
@media (min-width: 1024px) { .theme-product-card-wrap { width: calc(25% - 24px); } }
.theme-product-card-wrap.is-hidden { display: none; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 3 / 4;
	background: hsl(var(--secondary));
	overflow: hidden;
	margin-bottom: 1.25rem;
	transition: transform 0.3s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-4px); }
.theme-product-card__image-link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
}
.theme-product-card__image-wrapper img,
.theme-product-card__image-wrapper .attachment-theme-product,
.theme-product-card__image-link .theme-product-card-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper img,
.theme-product-card:hover .theme-product-card__image-link .theme-product-card-img { transform: scale(1.04); }
.theme-product-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	padding: 0.25rem 0.75rem;
	font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
	background: hsl(var(--foreground)); color: hsl(var(--background)); border-radius: 999px;
	pointer-events: none;
}
.theme-product-card__quick-add {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3;
	width: 2.5rem; height: 2.5rem;
	display: flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: hsl(var(--background)); color: hsl(var(--foreground));
	box-shadow: var(--shadow-soft);
	opacity: 1;
	transition: opacity 0.3s, transform 0.2s;
	pointer-events: auto;
}
@media (min-width: 768px) {
	.theme-product-card__quick-add { opacity: 0; }
	.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
}
.theme-product-card__quick-add:hover { transform: scale(1.08); }
.theme-product-card__quick-add:active { transform: scale(0.92); }
.theme-product-card__info { text-align: center; margin-top: 1rem; flex: 1; }
.theme-product-card__title {
	font-size: 0.875rem; font-family: var(--font-body); font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.15em; line-height: 1.4;
	margin-bottom: 0.5rem; transition: color 0.3s;
}
.theme-product-card__title-link {
	color: inherit;
	text-decoration: none;
}
.theme-product-card__title-link:hover { color: hsl(var(--primary)); }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1rem; } }
.theme-product-card:hover .theme-product-card__title-link { color: hsl(var(--primary)); }
.theme-product-card__price {
	font-size: 1rem; font-weight: 400; color: hsl(var(--foreground)); line-height: 1.2;
}
@media (min-width: 768px) { .theme-product-card__price { font-size: 1.125rem; } }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; }

.shop-show-more-wrap { text-align: center; margin-top: 3rem; }
.show-more-btn { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.shop-no-products { text-align: center; padding-block: 5rem; }
.shop-no-products p, .no-products-text { color: hsl(var(--muted-foreground)); }

/* =========================================================================
   RELATED PRODUCTS ("You May Also Like")
   ========================================================================= */
.related-products-section { padding-block: 5rem; border-top: 1px solid hsl(var(--border)); }
.related-products-header { text-align: center; margin-bottom: 3rem; }
.related-products-kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }
.related-products-heading { font-weight: 400; font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }
.related-products-grid { justify-content: flex-start; }
.related-products-grid .theme-product-card-wrap { width: calc(50% - 12px); }
@media (min-width: 1024px) { .related-products-grid .theme-product-card-wrap { width: calc(25% - 18px); } }

/* =========================================================================
   CONTACT CTA BAND
   ========================================================================= */
.contact-cta-section { position: relative; background: hsl(var(--butter)); overflow: hidden; }
.contact-cta-bg { opacity: 0.7; }
.contact-cta-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, color-mix(in srgb, hsl(var(--background)) 60%, transparent) 0%, color-mix(in srgb, hsl(var(--background)) 40%, transparent) 50%, color-mix(in srgb, hsl(var(--background)) 80%, transparent) 100%);
}
.contact-cta-inner { position: relative; padding-block: 6rem; }
@media (min-width: 768px) { .contact-cta-inner { padding-block: 8rem; } }
.contact-cta-card {
	max-width: 42rem; margin: 0 auto; text-align: center;
	background: color-mix(in srgb, hsl(var(--background)) 95%, transparent);
	backdrop-filter: blur(4px);
	box-shadow: var(--shadow-elevated);
	border: 1px solid color-mix(in srgb, hsl(var(--border)) 60%, transparent);
	padding: 2rem 2rem 3rem;
}
@media (min-width: 768px) { .contact-cta-card { padding: 3rem 3.5rem 4rem; } }
.contact-cta-kicker { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: hsl(var(--accent)); margin-bottom: 1rem; }
.contact-cta-heading { margin-bottom: 1.5rem; }
.contact-cta-paragraph {
	color: color-mix(in srgb, hsl(var(--foreground)) 75%, transparent);
	line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-left: auto; margin-right: auto;
}
.contact-cta-btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: hsl(var(--foreground)); color: hsl(var(--background));
	padding: 1.25rem 3rem;
	font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
	font-family: var(--font-display);
	transition: background-color 0.2s;
}
.contact-cta-btn:hover { background: color-mix(in srgb, hsl(var(--foreground)) 90%, transparent); }

/* =========================================================================
   CONTACT MODAL (Dialog)
   ========================================================================= */
#theme-contact-modal-overlay {
	position: fixed; inset: 0; z-index: 100;
	background: rgba(0,0,0,0.8);
	opacity: 0; visibility: hidden;
	transition: opacity 0.2s;
}
body.contact-modal-open #theme-contact-modal-overlay { opacity: 1; visibility: visible; }
.theme-modal {
	position: fixed; left: 50%; top: 50%; z-index: 101;
	width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh;
	overflow-y: auto;
	transform: translate(-50%, -48%) scale(0.95);
	opacity: 0; visibility: hidden;
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	box-shadow: var(--shadow-elevated);
	border-radius: 0.5rem;
	padding: 1.5rem;
	transition: opacity 0.2s, transform 0.2s;
}
body.contact-modal-open .theme-modal {
	opacity: 1; visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}
.theme-modal-close {
	position: absolute; right: 1rem; top: 1rem;
	padding: 0.4rem; border-radius: 0.25rem; opacity: 0.7;
	transition: opacity 0.2s;
}
.theme-modal-close:hover { opacity: 1; background: hsl(var(--secondary)); }
.theme-modal-header { margin-bottom: 1rem; }
.theme-modal-title {
	font-size: 1.875rem; letter-spacing: 0.04em; text-transform: uppercase;
	font-weight: 600; margin-bottom: 0.4rem;
}
.theme-modal-description { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
.theme-modal-contact-info {
	display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
	font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem;
}
.theme-modal-contact-info a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.theme-modal-contact-info a:hover { color: hsl(var(--foreground)); }
.theme-form-row-2col { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row-2col { grid-template-columns: 1fr 1fr; } }
.theme-form-field { margin-bottom: 1rem; }
.theme-form-field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%; padding: 0.625rem 0.75rem;
	background: hsl(var(--background)); border: 1px solid hsl(var(--border));
	border-radius: 0.375rem; font-size: 1rem;
	transition: box-shadow 0.3s;
}
.theme-form-field textarea { resize: none; }
.theme-form-field input::placeholder, .theme-form-field textarea::placeholder { color: hsl(var(--muted-foreground)); }
.theme-form-field input:focus, .theme-form-field textarea:focus {
	outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
}
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-btn-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
	padding: 0.625rem 1.5rem; border-radius: 0.375rem;
	font-family: var(--font-display); font-weight: 500; font-size: 0.875rem;
	transition: opacity 0.2s;
}
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-btn-outline {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: hsl(var(--background)); color: hsl(var(--foreground));
	border: 1px solid hsl(var(--border));
	padding: 0.625rem 1.5rem; border-radius: 0.375rem;
	font-family: var(--font-display); font-weight: 500; font-size: 0.875rem;
	transition: background-color 0.2s;
}
.theme-btn-outline:hover { background: hsl(var(--secondary)); }
.theme-contact-success { text-align: center; padding-block: 2rem; }
.theme-contact-success-icon {
	width: 3.5rem; height: 3.5rem; border-radius: 999px;
	background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
}
.theme-contact-success h3 { font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem; }
.theme-contact-success p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* =========================================================================
   SIDE CART DRAWER
   ========================================================================= */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 55;
	background: color-mix(in srgb, hsl(var(--foreground)) 20%, transparent);
	opacity: 0; visibility: hidden;
	transition: opacity 0.3s;
}
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;
	background: hsl(var(--background));
	z-index: 56;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer-header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.5rem; border-bottom: 1px solid hsl(var(--border));
}
.theme-cart-drawer-title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer-close { padding: 0.25rem; transition: opacity 0.2s; }
.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-empty-icon { color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.theme-cart-drawer-empty p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.theme-cart-drawer-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer-item { display: flex; gap: 1rem; }
.theme-cart-item-image {
	width: 5rem; height: 6rem; flex-shrink: 0; overflow: hidden; background: hsl(var(--secondary));
	pointer-events: auto;
}
.theme-cart-item-image img { width: 100%; height: 100%; object-fit: cover; 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;
	transition: opacity 0.2s; pointer-events: auto;
}
.theme-cart-item-name:hover { opacity: 0.7; }
.theme-cart-item-price { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.15rem; }
.theme-cart-item-variation { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s; pointer-events: auto; }
.theme-cart-qty-btn:hover { background: hsl(var(--secondary)); }
.theme-cart-qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-remove-btn { margin-left: auto; font-size: 0.875rem; color: hsl(var(--muted-foreground)); transition: color 0.2s; pointer-events: auto; }
.theme-cart-remove-btn:hover { color: hsl(var(--foreground)); }
.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-subtotal-label { color: hsl(var(--muted-foreground)); }
.theme-cart-subtotal-value { font-weight: 500; }
.theme-cart-free-shipping { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.theme-cart-checkout-btn { width: 100%; padding: 0.75rem 1.5rem; height: 2.75rem; }
.theme-cart-empty-btn { width: 100%; font-size: 0.8rem; }

/* Hide WooCommerce's own "View cart" link (Section 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; }

/* Add-to-cart loading state (Section 31.8) */
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* =========================================================================
   FOOTER
   ========================================================================= */
/* Footer — Footer.tsx: py-14, lg:py-18 (18 not in tailwind config → stays py-14) */
.site-footer {
	background: hsl(var(--surface-deep));
	color: hsl(var(--surface-deep-foreground));
}
.site-footer-main { padding-block: 3.5rem; }
.site-footer-top {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
@media (min-width: 1024px) {
	.site-footer-top {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		column-gap: 2rem;
		row-gap: 0;
	}
}
.site-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	flex-shrink: 0;
}
.site-footer-logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: hsl(var(--surface-deep-foreground));
	text-decoration: none;
}
.site-footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.site-footer-brand-name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.04em;
}
.site-footer-tagline {
	font-family: var(--font-body);
	font-size: 10px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: color-mix(in srgb, hsl(var(--surface-deep-foreground)) 70%, transparent);
	margin-top: 0.25rem;
}
.site-footer-nav {
	min-width: 0;
}
.theme-footer-nav-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 1024px) {
	.site-footer-nav { justify-self: center; width: 100%; }
	.theme-footer-nav-list {
		flex-wrap: nowrap;
		justify-content: center;
		gap: 0 2rem;
		width: 100%;
	}
}
.theme-footer-nav-list li { flex-shrink: 0; }
.theme-footer-nav-list a {
	display: inline-block;
	white-space: nowrap;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, hsl(var(--surface-deep-foreground)) 70%, transparent);
	transition: color 0.2s;
}
.theme-footer-nav-list a:hover { color: hsl(var(--surface-deep-foreground)); }
.site-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-shrink: 0;
}
@media (min-width: 640px) {
	.site-footer-contact { flex-direction: row; gap: 1.25rem; }
}
@media (min-width: 1024px) {
	.site-footer-contact {
		flex-direction: column;
		gap: 0.5rem;
		justify-self: end;
		align-items: flex-end;
	}
}
@media (min-width: 1280px) {
	.site-footer-contact { flex-direction: row; gap: 1.25rem; align-items: center; }
}
.footer-email-link, .footer-phone-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	max-width: 100%;
	overflow-wrap: anywhere;
	color: color-mix(in srgb, hsl(var(--surface-deep-foreground)) 70%, transparent);
	transition: color 0.2s;
}
@media (min-width: 640px) {
	.footer-email-link, .footer-phone-link { white-space: nowrap; }
}
.footer-email-link:hover, .footer-phone-link:hover { color: hsl(var(--surface-deep-foreground)); }
.site-footer-bottom { border-top: 1px solid color-mix(in srgb, hsl(var(--surface-deep-foreground)) 10%, transparent); }
.site-footer-bottom-inner {
	padding-block: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	text-align: center;
}
@media (min-width: 640px) { .site-footer-bottom-inner { flex-direction: row; text-align: left; } }
.site-footer-copyright, .site-footer-credit {
	font-size: 12px; letter-spacing: 0.02em;
	color: color-mix(in srgb, hsl(var(--surface-deep-foreground)) 60%, transparent);
}
.site-footer-credit a { font-weight: 700; color: color-mix(in srgb, hsl(var(--surface-deep-foreground)) 90%, transparent); transition: color 0.2s; }
.site-footer-credit a:hover { color: hsl(var(--surface-deep-foreground)); }

/* =========================================================================
   SINGLE PRODUCT PAGE — ProductDetail.tsx parity
   ========================================================================= */
.single-product-breadcrumb {
	padding-block: 1.5rem;
	font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	color: hsl(var(--muted-foreground)); font-family: var(--font-body);
}
.single-product-breadcrumb a { transition: color 0.2s; color: inherit; }
.single-product-breadcrumb a:hover { color: hsl(var(--foreground)); }
.single-product-breadcrumb .breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.single-product-breadcrumb .breadcrumb-current { color: hsl(var(--foreground)); }

.single-product-main .woocommerce-message,
.single-product-main .woocommerce-info,
.single-product-main a.added_to_cart.wc-forward,
.single-product-main .product_meta,
.single-product-main .woocommerce-tabs,
.single-product-main .woocommerce-product-gallery { display: none !important; }

.theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-block: 1rem 6rem;
	align-items: start;
}
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: 4rem;
	}
}
.theme-product-gallery,
.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.theme-product-info {
		position: sticky;
		top: 7rem;
		padding-left: 1rem;
		align-self: start;
	}
}

/* Gallery — mobile hero + thumbs; desktop stacked squares (normal flow) */
.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-hero-frame {
	aspect-ratio: 1 / 1;
	background: hsl(var(--secondary));
	overflow: hidden;
}
.single-product-main .theme-product-hero-img,
.single-product-main .theme-product-thumb-img {
	position: static !important;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.theme-product-thumb-row {
	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: hsl(var(--secondary));
	border: none;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s; }
.theme-product-thumb:hover img,
.theme-product-thumb.is-active img { opacity: 1; }
.theme-product-thumb::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: hsl(var(--foreground));
	opacity: 0;
	transition: opacity 0.2s;
}
.theme-product-thumb.is-active::after { opacity: 1; }

.theme-product-category {
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: hsl(var(--muted-foreground));
	font-family: var(--font-body);
}
.single-product-main .product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin: 0.75rem 0 1.25rem;
}
@media (min-width: 768px) { .single-product-main .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .single-product-main .product-title { font-size: 2.75rem; } }
.single-product-main .theme-product-price {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	color: hsl(var(--foreground));
}
.theme-product-teaser {
	color: hsl(var(--muted-foreground));
	line-height: 1.625;
	margin-bottom: 2rem;
	font-size: 1rem;
	font-family: var(--font-body);
}

.theme-pdp-field-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: hsl(var(--muted-foreground));
	font-family: var(--font-body);
	margin-bottom: 0.75rem;
}
.theme-pdp-qty-block { margin-bottom: 1rem; }
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid hsl(var(--border));
}
.theme-qty-minus,
.theme-qty-plus {
	padding: 0.5rem 0.75rem;
	transition: background-color 0.2s;
	background: transparent;
	border: none;
	cursor: pointer;
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: hsl(var(--secondary)); }
.theme-qty-value {
	padding: 0.5rem 1rem;
	min-width: 2.75rem;
	text-align: center;
	font-family: var(--font-body);
	font-size: 0.875rem;
}
.theme-qty-input { display: none; }

.single-product-main .theme-pdp-atc {
	width: 100%;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: hsl(var(--foreground));
	color: hsl(var(--background));
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	transition: opacity 0.2s, background-color 0.2s;
	cursor: pointer;
}
.single-product-main .theme-pdp-atc:hover:not(:disabled) {
	background: color-mix(in srgb, hsl(var(--foreground)) 90%, transparent);
}
.single-product-main .theme-pdp-atc:disabled,
.single-product-main .theme-pdp-atc.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Related — simple link cards, no shop quick-add */
.theme-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.theme-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}
.theme-related-card {
	display: block;
	text-decoration: none;
	color: inherit;
}
.theme-related-card__media {
	aspect-ratio: 3 / 4;
	background: hsl(var(--secondary));
	overflow: hidden;
	margin-bottom: 1rem;
}
.theme-related-card__media img,
.theme-related-card-img {
	position: static !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.theme-related-card__info { text-align: center; }
.theme-related-card__cat {
	display: block;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: hsl(var(--muted-foreground));
	margin-bottom: 0.25rem;
}
.theme-related-card__title {
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	line-height: 1.4;
	margin: 0 0 0.5rem;
}
@media (min-width: 768px) { .theme-related-card__title { font-size: 1rem; } }
.theme-related-card:hover .theme-related-card__title { color: hsl(var(--primary)); }
.theme-related-card__price {
	font-size: 1rem;
	color: hsl(var(--foreground));
	margin: 0;
}
@media (min-width: 768px) { .theme-related-card__price { font-size: 1.125rem; } }

/* Add to cart button style override — Section 11.4.1 (mandatory) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: hsl(var(--primary)) !important;
	color: hsl(var(--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;
	flex: 1 1 auto;
	min-width: 0;
}
@media (min-width: 480px) {
	.single_add_to_cart_button.button,
	.add_to_cart_button.button,
	a.single_add_to_cart_button,
	a.add_to_cart_button {
		min-width: 160px;
	}
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: hsl(var(--primary)) !important;
	color: hsl(var(--primary-foreground)) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: hsl(var(--primary)) !important;
}
/* Card compact quick-add button — overrides global rules (scoped after) */
.theme-product-card .theme-product-card__quick-add--pdp {
	text-decoration: none;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__quick-add,
.theme-product-card button.theme-product-card__quick-add.ajax_add_to_cart {
	min-height: unset !important;
	height: 2.5rem !important;
	width: 2.5rem !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background-color: hsl(var(--background)) !important;
	color: hsl(var(--foreground)) !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	font-size: 0 !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__quick-add:hover,
.theme-product-card button.theme-product-card__quick-add.ajax_add_to_cart:hover,
.theme-product-card__quick-add--pdp:hover {
	background-color: hsl(var(--background)) !important;
	color: hsl(var(--foreground)) !important;
	opacity: 1 !important;
}

/* PDP — attribute swatches, license pills, styled selects */
.theme-product-attributes { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; }
.theme-product-attribute { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-attr-label {
	font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	color: hsl(var(--muted-foreground));
}
.theme-attr-select {
	width: 100%; max-width: 100%;
	font-family: var(--font-body); font-size: 0.875rem;
	padding: 0.625rem 0.875rem;
	border: 1px solid hsl(var(--border)); border-radius: var(--radius);
	background: hsl(var(--background)); color: hsl(var(--foreground));
	appearance: auto;
}
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; }
.theme-attr-pills--color { gap: 0.75rem; }
.theme-attr-pills--license { gap: 0.5rem; }
.theme-attr-pill {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	font-family: var(--font-body);
	border: 1px solid hsl(var(--border)); border-radius: var(--btn-radius);
	background: transparent; color: hsl(var(--foreground));
	cursor: pointer; transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.theme-attr-pill:hover { border-color: color-mix(in srgb, hsl(var(--foreground)) 60%, transparent); }
.theme-attr-pill--color.is-selected {
	border-color: hsl(var(--primary));
	background: color-mix(in srgb, hsl(var(--primary)) 5%, transparent);
}
.theme-attr-pill--license.is-selected,
.theme-attr-pill--size.is-selected {
	background: hsl(var(--foreground)); color: hsl(var(--background)); border-color: hsl(var(--foreground));
}
.theme-attr-pills--size { gap: 0.5rem; }
.theme-attr-swatch {
	width: 0.75rem; height: 0.75rem; border-radius: 999px;
	border: 1px solid hsl(var(--border)); flex-shrink: 0;
}

/* Cart drawer — line item meta */
.theme-cart-item-meta {
	list-style: none; margin: 0.25rem 0 0; padding: 0;
	display: flex; flex-direction: column; gap: 0.25rem;
}
.theme-cart-item-meta-row {
	display: flex; align-items: center; gap: 0.375rem;
	font-size: 0.75rem; color: hsl(var(--muted-foreground));
}
.theme-cart-item-meta-swatch {
	width: 0.625rem; height: 0.625rem; border-radius: 999px;
	border: 1px solid hsl(var(--border)); flex-shrink: 0;
}
.theme-cart-item-meta-label { font-weight: 500; }

.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid hsl(var(--border)); }
.single-product-main .theme-product-form { margin-bottom: 0; }
.theme-accordion { border-bottom: 1px solid hsl(var(--border)); }
.theme-accordion-trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1.25rem 0; text-align: left;
	font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
}
.accordion-chevron { transition: transform 0.3s; }
.theme-accordion.is-open .accordion-chevron { transform: rotate(180deg); }
.theme-accordion-panel { display: none; padding-bottom: 1.5rem; }
.theme-accordion.is-open .theme-accordion-panel { display: block; }
.theme-product-description {
	font-size: 15px; color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 1rem;
	overflow-wrap: break-word; word-break: break-word; white-space: pre-line;
}
.theme-feature-list { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-feature-item { font-size: 15px; color: hsl(var(--muted-foreground)); display: flex; align-items: flex-start; }
.theme-feature-dot { width: 4px; height: 4px; background: hsl(var(--foreground)); border-radius: 999px; margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0; }
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; }

/* Logo on WooCommerce pages (cart, checkout, PDP) — WC resets img height/width */
.woocommerce .site-header .site-brand .site-logo-img,
.woocommerce-page .site-header .site-brand .site-logo-img,
.woocommerce-cart .site-header .site-brand .site-logo-img,
.woocommerce-checkout .site-header .site-brand .site-logo-img,
.single-product .site-header .site-brand .site-logo-img,
.woocommerce .site-footer .site-footer-logo-link .site-logo-img,
.woocommerce-page .site-footer .site-footer-logo-link .site-logo-img,
.woocommerce-cart .site-footer .site-footer-logo-link .site-logo-img,
.woocommerce-checkout .site-footer .site-footer-logo-link .site-logo-img,
.single-product .site-footer .site-footer-logo-link .site-logo-img {
	width: auto !important;
	max-width: none !important;
	object-fit: contain !important;
	flex-shrink: 0;
}

/* =========================================================================
   WOOCOMMERCE GENERIC OVERRIDES (Section 14)
   ========================================================================= */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error {
	background: color-mix(in srgb, hsl(var(--foreground)) 6%, hsl(var(--background)));
	border-left: 3px solid hsl(var(--foreground));
	padding: 1rem 1.5rem; list-style: none; font-size: 0.875rem;
}
.shop-archive-main .woocommerce-error,
.shop-archive-main .woocommerce-info { border-radius: 0.375rem; margin-bottom: 1.5rem; }

/* =========================================================================
   CHECKOUT (WooCommerce Checkout Block) — Sections C–H
   ========================================================================= */

/* C.2 — no double header offset (theme-no-hero already adds padding-top) */
body.woocommerce-checkout .theme-checkout-main { padding-top: 0; }

.theme-checkout-shell {
	padding-block: 0.5rem 4rem;
	padding-inline: 1.5rem;
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.theme-checkout-shell { padding-inline: 2rem; }
}
body.woocommerce-checkout .theme-checkout-main > .container-wide,
body.woocommerce-checkout .theme-checkout-shell,
body.woocommerce-checkout .theme-checkout-main .entry-content,
.entry-content:has(.wc-block-checkout) {
	max-width: none;
	width: 100%;
}

/* C.1 — header + block share 1280px container */
.theme-checkout-header {
	max-width: var(--checkout-max-width);
	width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
	margin-bottom: 0;
}
.checkout-continue-link {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; color: hsl(var(--muted-foreground));
	text-decoration: none; margin-bottom: 1rem;
	transition: color 0.2s;
}
.checkout-continue-link:hover { color: hsl(var(--foreground)); }
.theme-checkout-title { margin: 0; font-size: 2rem; font-weight: 400; font-style: italic; }
.theme-checkout-intro { margin: 0.75rem 0 0; color: hsl(var(--muted-foreground)); }

/* C.2 — collapse vertical gap between header and WC block */
body.woocommerce-checkout .theme-checkout-main .entry-content,
.entry-content:has(.wc-block-checkout) {
	margin-top: 0;
	padding-top: 0;
}
body.woocommerce-checkout .theme-checkout-main .entry-content > .wc-block-checkout,
body.woocommerce-checkout .theme-checkout-main .entry-content > .wp-block-woocommerce-checkout,
.entry-content > .wc-block-checkout:first-child,
.entry-content > .wp-block-woocommerce-checkout:first-child {
	margin-top: 0;
}
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout {
	margin-top: 0;
	padding-top: 0;
	max-width: var(--checkout-max-width);
	width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
	min-width: 0;
}
body.woocommerce-checkout .wc-block-checkout.alignwide,
.entry-content .wc-block-checkout.alignwide { margin-top: 0; }
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 {
	margin-top: 0;
	padding-top: 0;
}
body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
	margin-top: 0;
	padding-top: 0;
}

/* G — notices alignment */
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
	max-width: var(--checkout-max-width);
	margin-inline: auto;
	width: 100%;
	box-sizing: border-box;
	margin-top: 0;
	padding-top: 0;
	margin-bottom: var(--checkout-gap);
}
body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices:empty,
.entry-content .wc-block-checkout > .wc-block-components-notices:empty {
	display: none;
	margin: 0;
	padding: 0;
}

/* E — grid ONLY on inner sidebar-layout wrapper (1024+ avoids tablet overflow) */
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
	.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
		flex-direction: unset;
		flex-wrap: nowrap;
		margin: 0;
	}
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
		width: auto !important;
		max-width: 100%;
		min-width: 0;
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}
	/* Fallback — main/sidebar as direct children */
	body.woocommerce-checkout .wc-block-checkout:has(> .wc-block-checkout__main):has(> .wc-block-checkout__sidebar),
	.entry-content .wc-block-checkout:has(> .wc-block-checkout__main):has(> .wc-block-checkout__sidebar) {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices,
	.entry-content .wc-block-checkout > .wc-block-components-notices {
		grid-column: 1 / -1;
	}
}

/* F — card background only on order summary */
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: hsl(var(--secondary));
	border-radius: var(--radius);
	padding: 2rem;
	box-sizing: border-box;
}

/* H — empty cart state */
body.woocommerce-checkout .wc-block-checkout-empty,
.entry-content .wc-block-checkout-empty {
	margin-inline: auto;
	max-width: 36rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Form field styling (unchanged from prior theme) */
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);
	font-size: 1rem;
	color: hsl(var(--foreground));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	background-color: hsl(var(--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 {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, hsl(var(--accent)) 50%, transparent);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.entry-content .wc-block-checkout .wc-block-components-checkout-place-order-button {
	background-color: hsl(var(--primary)) !important;
	color: hsl(var(--primary-foreground)) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
body.woocommerce-checkout .wc-block-components-notice-banner,
.entry-content .wc-block-components-notice-banner {
	border-radius: var(--radius);
	font-family: var(--font-body);
}
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	font-family: var(--font-body);
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
}

/* =========================================================================
   WOOCOMMERCE PAGES — Cart / My Account width parity (Section 13.7)
   ========================================================================= */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

/* =========================================================================
   THANK YOU PAGE — Section 22.8
   ========================================================================= */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem; padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	border-right: 1px solid hsl(var(--border)); padding-right: 1.5rem; font-size: 0.875rem;
}
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 hsl(var(--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; }
@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; border: 1px solid hsl(var(--border)); padding: 1.25rem; border-radius: var(--radius);
}

/* =========================================================================
   404 PAGE
   ========================================================================= */
.theme-404-main { padding-top: var(--header-height); min-height: 60vh; display: flex; align-items: center; }
.theme-404-inner { padding-block: 5rem; text-align: center; }
.theme-404-title { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404-message { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }

/* =========================================================================
   GENERIC PAGE / FALLBACK
   ========================================================================= */
.theme-page-main { padding-top: 6rem; padding-bottom: 4rem; }
.theme-fallback-main { padding-top: 6rem; }
.theme-fallback-inner { padding-block: 4rem; }

/* =========================================================================
   CLICKABLE CURSOR (all interactive elements)
   ========================================================================= */
a,
.site-brand,
.theme-nav-list a,
.theme-footer-nav-list a,
.theme-mobile-nav-list a,
.hero-cta-btn,
.about-cta,
.contact-cta-btn,
.tile-card,
.shop-cat-btn,
.shop-price-toggle,
.show-more-btn,
.theme-search-toggle,
.theme-cart-toggle,
.theme-mobile-menu-toggle,
.theme-announcement-dismiss,
.theme-modal-close,
.theme-product-card__quick-add,
.site-footer-logo-link,
.footer-email-link,
.footer-phone-link,
.contact-modal-email,
.contact-modal-phone {
	cursor: pointer;
}
