/* =========================================================================
   Ka'aina Made for You — theme.css
   All visual styling for the theme lives in this single file (Section 10).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Fonts & root tokens
   ------------------------------------------------------------------------- */
:root {
	--color-background: #f9f7f1;
	--color-foreground: #33271f;
	--color-primary: #48623c;
	--color-primary-foreground: #fbf8f4;
	--color-secondary: #d1937b;
	--color-secondary-foreground: #23201f;
	--color-accent: #d1937b;
	--color-accent-foreground: #23201f;
	--color-muted-foreground: #6c6360;
	--color-destructive: #ae4737;
	--color-border: #dbd4c7;
	--color-linen: #ece7df;
	--color-bone: #e1dcd0;
	--color-footer: #273121;

	--color-ivory: var(--color-background);
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Newsreader', Georgia, serif;
	--font-body: 'Geist', system-ui, -apple-system, sans-serif;

	--radius: 0.5rem;
	--btn-radius: 9999px;
	--btn-height: 44px;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--shadow-soft: 0 4px 20px -8px rgba(35, 27, 19, 0.12);
	--shadow-elevated: 0 20px 50px -18px rgba(35, 27, 19, 0.22);

	--header-height: 104px;
	--logo-height: 36px;
	--checkout-gap: 2.5rem;
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	font-family: var(--font-display);
	letter-spacing: 0;
}

.font-display { font-family: var(--font-display); font-weight: 400; }

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Hand cursor on every interactive control */
a[href],
button:not(:disabled),
[role="button"],
[data-cart-open],
[data-cart-close],
[data-cart-remove],
[data-mobile-menu-toggle],
[data-promo-dismiss],
[data-section-anchor],
[data-faq-toggle],
label[for],
summary,
select,
.theme-nav-link,
.theme-product-card,
.theme-product-card a,
.theme-shop-pill,
.theme-faq-item__trigger,
.site-footer__back-to-top,
.theme-floating-badge,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="file"] {
	cursor: pointer;
}
button:disabled,
[aria-disabled="true"],
.disabled {
	cursor: not-allowed;
}

section[id] { scroll-margin-top: calc(90px + var(--admin-bar-offset, 0px)); }

/* Accent italics: cream/brass by default (hero/CTA); green (primary) where Lovable uses text-primary */
.italic { font-style: italic; color: var(--color-secondary); }
.italic-primary { font-style: italic; color: var(--color-primary); }

/* Global img rule that must not break cover/full-bleed images (Section 15). */
img:not(.cover-img) {
	max-width: 100%;
	height: auto;
}
.cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.container-wide {
	width: 100%;
	max-width: 80rem; /* Tailwind max-w-7xl — matches Lovable */
	margin: 0 auto;
	padding-left: 1.25rem;  /* px-5 */
	padding-right: 1.25rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	.container-wide {
		padding-left: 1.5rem;  /* sm:px-6 */
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.container-wide {
		padding-left: 2.5rem;  /* lg:px-10 */
		padding-right: 2.5rem;
	}
}

.theme-page-container { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }

.theme-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--color-primary);
}
.theme-eyebrow-sm { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-foreground); }

.theme-br-md { display: none; }
@media (min-width: 768px) { .theme-br-md { display: inline; } }

.page-title { font-size: 2.25rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: inherit; }

/* -------------------------------------------------------------------------
   3. Animation / reveal system (Section 2.1)
   ------------------------------------------------------------------------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); will-change: auto; }

/* Reveal fallback in the Customizer preview — content must never stay hidden. */
body.is-customizer [data-reveal],
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

.marquee-track-fast {
	display: flex;
	width: max-content;
	animation: marquee-fast 24s linear infinite;
}
@keyframes marquee-fast {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
.theme-anim-fade-in { animation: theme-fade-in 0.7s ease-out both; }

@keyframes theme-slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.theme-anim-slide-in { animation: theme-slide-in-bottom 0.4s ease-out both; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
	.marquee-track-fast { animation: none; }
	.theme-anim-fade-in, .theme-anim-slide-in { animation: none; }
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
	height: 44px;
	padding: 0 1.75rem;
	cursor: pointer;
}
.btn-lg { height: 48px; padding: 0 1.75rem; }
.btn-sm { height: 36px; padding: 0 1rem; }
.btn:disabled { pointer-events: none; opacity: 0.6; }

.btn-primary,
.btn.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn-primary:hover { background-color: var(--color-primary); opacity: 0.9; }

.btn-outline {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.btn-outline:hover { border-color: var(--color-foreground); background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent); }

.btn-ghost { border-color: transparent; }
.btn-ghost:hover { background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent); }

.btn-pill {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
	height: 36px;
	padding: 0 1rem;
	font-size: 14px;
}
.btn-pill.is-active {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn-pill:not(.is-active):hover { border-color: var(--color-foreground); }

/* Hero CTAs must stay sentence case even though filter pills are uppercase (Section 2.2). */
.btn-hero-primary, .btn-hero-outline { text-transform: none; }
.btn-hero-primary {
	background-color: var(--color-ivory);
	color: var(--color-foreground);
	border-color: var(--color-ivory);
}
.btn-hero-primary:hover { background-color: var(--color-secondary); }
.btn-hero-outline {
	background-color: color-mix(in srgb, var(--color-background) 15%, transparent);
	color: var(--color-background);
	border-color: color-mix(in srgb, var(--color-background) 40%, transparent);
	backdrop-filter: blur(6px);
}
.btn-hero-outline:hover { background-color: color-mix(in srgb, var(--color-background) 25%, transparent); }

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
}

/* Offset fixed header under the WP admin bar */
body.admin-bar .site-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}
body.admin-bar {
	--admin-bar-offset: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--admin-bar-offset: 46px;
	}
}

.theme-announcement-bar {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.theme-announcement-bar__primary { opacity: 0.9; }
.theme-announcement-bar__secondary { color: color-mix(in srgb, var(--color-background) 85%, transparent); margin-left: 0.35em; }

.site-header__bar {
	transition: background-color 0.5s ease, border-color 0.5s ease;
	background-color: transparent;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid .site-header__bar,
.site-header.is-scrolled .site-header__bar {
	background-color: color-mix(in srgb, var(--color-ivory) 90%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}

.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
@media (min-width: 1024px) {
	.site-header__row {
		height: 80px;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
	}
}

.site-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-background);
	transition: color 0.3s ease, background-color 0.3s ease;
	order: 1;
}
.site-header.is-solid .site-header__menu-toggle,
.site-header.is-scrolled .site-header__menu-toggle,
.site-header__bar.is-menu-open .site-header__menu-toggle {
	color: var(--color-foreground);
}
.site-header__menu-toggle:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	order: 2;
}
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }

.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; border-radius: 6px; object-fit: cover; }
.site-logo-text { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-foreground); }

.site-header__wordmark { display: flex; flex-direction: column; line-height: 1; }
.site-header__wordmark-line1 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.22em;
	color: var(--color-background);
	transition: color 0.5s ease;
	text-transform: uppercase;
}
.site-header__wordmark-line2 {
	font-family: var(--font-body);
	font-size: 0.55rem;
	letter-spacing: 0.28em;
	margin-top: 0.25rem;
	color: color-mix(in srgb, var(--color-background) 85%, transparent);
	transition: color 0.5s ease;
	text-transform: uppercase;
}
.site-header.is-solid .site-header__wordmark-line1,
.site-header.is-scrolled .site-header__wordmark-line1 { color: var(--color-foreground); }
.site-header.is-solid .site-header__wordmark-line2,
.site-header.is-scrolled .site-header__wordmark-line2 { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .site-header__wordmark-line1 { font-size: 1.35rem; } }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; order: 2; justify-self: center; }
}
/* Desktop primary nav — horizontal row (Lovable Header) */
.theme-nav-list,
.site-header__nav .theme-nav-list {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-header__nav .theme-nav-list > li {
	display: block;
	flex: 0 0 auto;
	width: auto;
}
.theme-nav-link, .theme-nav-list a {
	position: relative;
	display: inline-block;
	width: auto;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-background) 85%, transparent);
	transition: color 0.3s ease;
	padding-bottom: 6px;
	border-bottom: none;
}
.site-header.is-solid .theme-nav-link,
.site-header.is-solid .theme-nav-list a,
.site-header.is-scrolled .theme-nav-link,
.site-header.is-scrolled .theme-nav-list a {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.theme-nav-link:hover, .theme-nav-list a:hover { color: var(--color-background); }
.site-header.is-solid .theme-nav-link:hover,
.site-header.is-solid .theme-nav-list a:hover,
.site-header.is-scrolled .theme-nav-link:hover,
.site-header.is-scrolled .theme-nav-list a:hover { color: var(--color-primary); }
.theme-nav-link.is-active, .theme-nav-list a.is-active { color: var(--color-background); }
.site-header.is-solid .theme-nav-link.is-active,
.site-header.is-scrolled .theme-nav-link.is-active { color: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; justify-self: end; order: 3; }
.site-header__cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-background);
	transition: color 0.3s ease, background-color 0.3s ease;
}
.site-header.is-solid .site-header__cart-btn,
.site-header.is-scrolled .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }

.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	font-size: 12px;
	font-weight: 500;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-nav { display: none; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-ivory) 95%, transparent); backdrop-filter: blur(20px); }
.site-header__mobile-nav.is-open { display: block; }
.site-header__mobile-nav .container-wide {
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	flex-direction: column;
}

/* Hamburger only — stack links vertically (matches Lovable Header mobile) */
.site-header__mobile-nav .theme-nav-list,
.site-header__mobile-nav .theme-nav-list--mobile {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}
.site-header__mobile-nav .theme-nav-list > li,
.site-header__mobile-nav .theme-nav-list--mobile > li {
	display: block;
	width: 100%;
	flex: none;
}
.site-header__mobile-nav .theme-nav-list a,
.site-header__mobile-nav .theme-nav-list--mobile a {
	display: block;
	width: 100%;
	padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	text-align: left;
	font-size: 14px;
	font-weight: 500;
}
.site-header__mobile-nav .theme-nav-list > li:last-child a,
.site-header__mobile-nav .theme-nav-list--mobile > li:last-child a {
	border-bottom: none;
}
.site-header__mobile-nav .theme-nav-list a:hover,
.site-header__mobile-nav .theme-nav-list--mobile a:hover {
	color: var(--color-primary);
}

/* -------------------------------------------------------------------------
   6. Promo banner
   ------------------------------------------------------------------------- */
.theme-promo-banner {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 45;
	background-color: var(--color-foreground);
	color: var(--color-background);
	border-radius: 0.5rem;
	box-shadow: var(--shadow-elevated);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}
.theme-promo-banner__text { flex: 1; font-size: 13px; line-height: 1.5; }
.theme-promo-banner__dismiss {
	flex-shrink: 0;
	margin-top: 2px;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.theme-promo-banner__dismiss:hover { background-color: color-mix(in srgb, var(--color-background) 10%, transparent); }
.theme-promo-banner.is-dismissed { display: none; }
@media (min-width: 640px) {
	.theme-promo-banner { bottom: 1.5rem; left: auto; right: 1.5rem; max-width: 26rem; }
	.theme-promo-banner__text { font-size: 15px; }
}

/* -------------------------------------------------------------------------
   7. Floating brand badge
   ------------------------------------------------------------------------- */
.theme-floating-badge {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 40;
	transition: opacity 0.5s ease, transform 0.5s ease;
	opacity: 0;
	pointer-events: none;
}
.theme-floating-badge.is-visible { opacity: 1; pointer-events: auto; }
@media (min-width: 640px) { .theme-floating-badge { right: 1.75rem; } }

@media (min-width: 1024px) {
	body.admin-bar .single-product-page__gallery {
		top: calc(7rem + var(--admin-bar-offset, 0px));
	}
}

.theme-floating-badge__toggle {
	position: relative;
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.theme-floating-badge.is-on-dark .theme-floating-badge__toggle { color: var(--color-background); }
@media (min-width: 640px) { .theme-floating-badge__toggle { width: 80px; height: 80px; } }

.theme-floating-badge__spin { position: absolute; inset: 0; width: 100%; height: 100%; }
.theme-floating-badge__spin-group { transform-origin: center; animation: theme-spin 22s linear infinite; }
.theme-floating-badge__spin-text { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; fill: currentColor; }
@keyframes theme-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.theme-floating-badge__leaf { position: relative; z-index: 1; color: var(--color-primary); fill: currentColor; }

.theme-floating-badge__card {
	position: absolute;
	bottom: calc(100% + 0.75rem);
	right: 0;
	width: 248px;
	border-radius: 0.5rem;
	border: 1px solid var(--color-border);
	background-color: var(--color-ivory);
	padding: 1.25rem;
	box-shadow: var(--shadow-elevated);
}
.theme-floating-badge__card[hidden] { display: none; }
.theme-floating-badge__close { position: absolute; top: 0.75rem; right: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-floating-badge__close:hover { color: var(--color-foreground); }
.theme-floating-badge__say-hello { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-primary); }
.theme-floating-badge__tagline { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.125rem; }
.theme-floating-badge__links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 13px; }
.theme-floating-badge__links a { display: flex; align-items: center; gap: 0.6rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); word-break: break-all; }
.theme-floating-badge__links a:hover { color: var(--color-primary); }
.theme-floating-badge__shop-btn {
	margin-top: 1.25rem;
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 9999px;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0.625rem 1rem;
	font-size: 13px;
	font-weight: 500;
}
.theme-floating-badge__shop-btn:hover { opacity: 0.9; }

/* -------------------------------------------------------------------------
   8. Hero section
   ------------------------------------------------------------------------- */
body.theme-no-hero .site-main { padding-top: var(--header-height); }

.hero-section {
	position: relative;
	display: flex;
	min-height: 100vh;
	width: 100%;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}
.hero-section__media { position: absolute; inset: 0; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.hero-section__scrim-gradient {
	position: absolute; inset: 0;
	background-image: linear-gradient(to top,
		color-mix(in srgb, var(--color-foreground) 90%, transparent) 0%,
		color-mix(in srgb, var(--color-foreground) 10%, transparent) 45%,
		color-mix(in srgb, var(--color-foreground) 45%, transparent) 100%);
}
.hero-section__content { position: relative; width: 100%; padding-bottom: 3rem; padding-top: 8rem; }
@media (min-width: 640px) { .hero-section__content { padding-bottom: 4rem; } }

.hero-section__top-row { display: none; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .hero-section__top-row { display: flex; margin-bottom: 2.5rem; } }

.hero-section__spin-badge { position: relative; display: grid; place-items: center; width: 6rem; height: 6rem; flex-shrink: 0; color: var(--color-ivory); }
.hero-section__spin-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-section__spin-group { transform-origin: center; animation: theme-spin 26s linear infinite; }
.hero-section__spin-group--reverse { animation-direction: reverse; }
.hero-section__spin-text { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; fill: currentColor; }
.hero-section__spin-letter { position: relative; font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--color-secondary); }

.hero-section__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	border-radius: 9999px;
	border: 1px solid color-mix(in srgb, var(--color-ivory) 35%, transparent);
	background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	padding: 0.5rem 1rem;
	color: var(--color-ivory);
}
.hero-section__pill p { font-size: 14px; }
.hero-section__pill svg { color: var(--color-secondary); fill: currentColor; }

.hero-section__title { width: 100%; color: var(--color-ivory); }
.hero-section__title-mobile {
	display: block;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	font-size: 13vw;
	line-height: 0.95;
	text-transform: uppercase;
}
.hero-section__title-desktop { display: none; }
@media (min-width: 640px) {
	.hero-section__title-mobile { display: none; }
	.hero-section__title-desktop {
		display: flex;
		flex-direction: column;
		align-items: baseline;
		width: 100%;
		max-width: 80rem;
		margin: 0 auto;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
		box-sizing: border-box;
		font-size: min(5.8vw, 4.6rem);
		line-height: 0.95;
		text-transform: uppercase;
	}
}
@media (min-width: 640px) {
	.hero-section__title-desktop {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.hero-section__title-desktop {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

.hero-section__bottom-row {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
@media (min-width: 640px) { .hero-section__bottom-row { margin-top: 3rem; } }
@media (min-width: 1024px) { .hero-section__bottom-row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.hero-section__description { max-width: 36rem; font-size: 16px; line-height: 1.6; color: color-mix(in srgb, var(--color-ivory) 85%, transparent); }
.hero-section__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }

/* -------------------------------------------------------------------------
   9. Section heading scale (Section 2.2 — per-section, not global)
   ------------------------------------------------------------------------- */
.about-section .section-heading,
.owner-section .section-heading,
.faq-section .section-heading {
	margin-top: 1.5rem;
	font-size: 2.25rem;
	line-height: 1.06;
	max-width: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
@media (min-width: 640px) {
	.about-section .section-heading,
	.owner-section .section-heading { font-size: 3rem; }
	.faq-section .section-heading { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.about-section .section-heading,
	.owner-section .section-heading { font-size: 3.5rem; }
	.faq-section .section-heading { font-size: 3.25rem; }
}

.services-section .section-heading, .shop-heading { margin-top: 1.5rem; font-size: 2.25rem; line-height: 1.06; }
@media (min-width: 640px) { .services-section .section-heading, .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 3.5rem; } .shop-heading { font-size: 3.2rem; } }

.contact-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }

/* -------------------------------------------------------------------------
   10. About section
   ------------------------------------------------------------------------- */
.about-section { background-color: var(--color-linen); padding: 6rem 0; overflow-x: clip; }
@media (min-width: 640px) { .about-section { padding: 8rem 0; } }
.about-section__intro { max-width: 48rem; min-width: 0; }
.about-section .theme-eyebrow {
	max-width: 100%;
	overflow-wrap: anywhere;
	letter-spacing: 0.18em;
}
@media (min-width: 640px) {
	.about-section .theme-eyebrow { letter-spacing: 0.3em; }
}
.about-section__grid {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 3rem;
	width: 100%;
	min-width: 0;
}
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.about-section__image-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__image-col { grid-column: span 5; } }
.about-section__image-frame { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; border: 1px solid var(--color-border); background-color: var(--color-ivory); max-width: 100%; }
.about-section__copy-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__copy-col { grid-column: span 7; } }
.about-section__lead { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35; overflow-wrap: break-word; }
@media (min-width: 640px) { .about-section__lead { font-size: 1.875rem; } }
.about-section__paragraphs { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.85; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; }
.about-section__footnote { margin-top: 2.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.about-section__footnote p:last-child { margin-top: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* -------------------------------------------------------------------------
   11. Owner section
   ------------------------------------------------------------------------- */
.owner-section { background-color: var(--color-ivory); padding: 6rem 0; overflow-x: clip; }
@media (min-width: 640px) { .owner-section { padding: 8rem 0; } }
.owner-section .theme-eyebrow {
	max-width: 100%;
	overflow-wrap: anywhere;
	letter-spacing: 0.18em;
}
@media (min-width: 640px) {
	.owner-section .theme-eyebrow { letter-spacing: 0.3em; }
}
.owner-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 3rem;
	width: 100%;
	min-width: 0;
}
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5rem; } }
.owner-section__copy-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .owner-section__copy-col { grid-column: span 7; } }
.owner-section__lead { margin-top: 2rem; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35; overflow-wrap: break-word; }
@media (min-width: 640px) { .owner-section__lead { font-size: 1.875rem; } }
.owner-section__paragraphs { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.85; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; }
.owner-section__portrait-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .owner-section__portrait-col { grid-column: span 5; } }
.owner-section__portrait-frame { position: relative; aspect-ratio: 4/5; border-radius: 4px; border: 1px solid var(--color-border); overflow: hidden; }
.owner-section__portrait-placeholder { display: grid; place-items: center; height: 100%; background-color: var(--color-linen); padding: 0 2rem; text-align: center; }
.owner-section__portrait-icon { margin: 0 auto; display: grid; place-items: center; width: 4rem; height: 4rem; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); background-color: var(--color-background); color: var(--color-primary); }
.owner-section__portrait-name { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.5rem; }
.owner-section__portrait-caption { margin-top: 0.5rem; font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   12. Services section
   ------------------------------------------------------------------------- */
.services-section { background-color: var(--color-bone); padding: 6rem 0; }
@media (min-width: 640px) { .services-section { padding: 8rem 0; } }
.services-section__intro { max-width: 48rem; }
.services-section__description { margin-top: 1.5rem; max-width: 36rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.services-section__grid {
	margin-top: 4rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	overflow: hidden;
	border-radius: 4px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background-color: color-mix(in srgb, var(--color-foreground) 15%, transparent);
}
@media (min-width: 640px) { .services-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .services-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.services-section__card { position: relative; aspect-ratio: 4/5; overflow: hidden; background-color: var(--color-ivory); }
.services-section__card img { transition: transform 0.7s ease; }
.services-section__card:hover img { transform: scale(1.1); }
.services-section__card-scrim {
	position: absolute; inset: 0;
	background-image: linear-gradient(to top,
		color-mix(in srgb, var(--color-foreground) 90%, transparent) 25%,
		color-mix(in srgb, var(--color-foreground) 20%, transparent) 55%,
		transparent 85%);
	opacity: 0.8;
	transition: opacity 0.5s ease;
}
.services-section__card:hover .services-section__card-scrim { opacity: 0.95; }
.services-section__card-content {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: 1.5rem;
	color: var(--color-background);
	transform: translateY(1rem);
	transition: transform 0.5s ease;
}
.services-section__card:hover .services-section__card-content { transform: translateY(0); }
.services-section__card-content h3 { font-size: 1.375rem; line-height: 1.2; }
@media (min-width: 640px) { .services-section__card-content h3 { font-size: 1.5rem; } .services-section__card-content { padding: 1.75rem; } }
.services-section__card-content p { margin-top: 0.75rem; max-width: 20rem; font-size: 14px; line-height: 1.6; opacity: 0; transition: opacity 0.5s ease 0.1s; }
.services-section__card:hover .services-section__card-content p { opacity: 1; }
.services-section__card-rule { margin-top: 1.5rem; height: 1px; width: 2rem; background-color: var(--color-secondary); transition: width 0.5s ease; }
.services-section__card:hover .services-section__card-rule { width: 4rem; }

.services-section__cta {
	margin-top: 2.5rem;
	display: grid;
	align-items: center;
	gap: 1.5rem;
	border-radius: 4px;
	border: 1px solid var(--color-foreground);
	background-color: var(--color-foreground);
	padding: 2rem;
	color: var(--color-background);
}
@media (min-width: 640px) { .services-section__cta { margin-top: 3rem; padding: 3rem; } }
@media (min-width: 1024px) { .services-section__cta { grid-template-columns: repeat(12, 1fr); } }
.services-section__cta-icon { color: var(--color-secondary); }
@media (min-width: 1024px) { .services-section__cta-icon { grid-column: span 1; } }
.services-section__cta-copy { grid-column: span 8; }
.services-section__cta-copy h3 { font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 640px) { .services-section__cta-copy h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .services-section__cta-copy h3 { font-size: 2.125rem; } }
.services-section__cta-copy p { margin-top: 0.75rem; max-width: 42rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 75%, transparent); }
.services-section__cta-link { grid-column: span 3; display: inline-flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-secondary) 60%, transparent); padding-bottom: 0.25rem; font-size: 14px; font-weight: 500; color: var(--color-secondary); }
@media (min-width: 1024px) { .services-section__cta-link { justify-self: end; } }

/* -------------------------------------------------------------------------
   13. Shop section & product cards
   ------------------------------------------------------------------------- */
.shop-section { background-color: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__description { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__description { font-size: 15px; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search input {
	width: 100%; height: 44px; padding-left: 2.75rem; padding-right: 1rem;
	border-radius: 9999px; background-color: var(--color-linen); border: 1px solid var(--color-border);
	font-size: 14px; color: var(--color-foreground);
}
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem 1.5rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 3rem; } }

.theme-product-card-wrap { min-width: 0; display: flex; }
.theme-product-card-wrap.is-shop-extra-slot.is-capacity-hidden { display: none; }
.theme-product-card-wrap.is-filtered-out { display: none !important; }

.theme-product-card { display: flex; flex-direction: column; width: 100%; }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid var(--color-border);
	background-color: var(--color-linen);
}
.theme-card-link { position: absolute; inset: 0; z-index: 1; }
.theme-product-card__image { transition: transform 0.7s ease; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.1); }
.theme-product-card__scrim {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background-image: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 55%, transparent), transparent 60%);
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }

.theme-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
	font-size: 11px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 9999px;
}
.theme-badge--soldout { background-color: var(--color-foreground); color: var(--color-background); }
.theme-badge--preorder { background-color: var(--color-primary); color: var(--color-primary-foreground); font-size: 12px; }

.theme-product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 2rem; height: 2rem; border-radius: 50%;
	background-color: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(6px);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--color-foreground);
	opacity: 0; transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
	pointer-events: none;
}
.theme-product-card:hover .theme-product-card__nav { opacity: 1; pointer-events: auto; }
.theme-product-card__nav:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }

.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 9999px; background-color: color-mix(in srgb, var(--color-background) 60%, transparent); transition: width 0.2s ease, background-color 0.2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background-color: var(--color-background); }

.theme-product-card__quick-actions {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 3;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; }
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 40px; border-radius: 9999px;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	color: var(--color-foreground);
	font-size: 14px; font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease;
	pointer-events: auto;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__quickview-btn {
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	color: var(--color-foreground);
	transition: background-color 0.3s ease, color 0.3s ease;
	pointer-events: auto;
}
.theme-product-card__quickview-btn:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__info { display: block; padding: 0 2px; flex: 1; min-width: 0; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .amount { font-weight: 500; }
.theme-product-card__desc { margin-top: 0.5rem; font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); overflow: hidden; }

.shop-section__view-more { margin-top: 3rem; display: flex; justify-content: center; }

/* -------------------------------------------------------------------------
   14. FAQ section
   ------------------------------------------------------------------------- */
.faq-section { background-color: var(--color-ivory); padding: 6rem 0; overflow-x: clip; }
@media (min-width: 640px) { .faq-section { padding: 8rem 0; } }
.faq-section .theme-eyebrow {
	max-width: 100%;
	overflow-wrap: anywhere;
	letter-spacing: 0.18em;
}
@media (min-width: 640px) {
	.faq-section .theme-eyebrow { letter-spacing: 0.3em; }
}
.faq-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	gap: 3rem;
	width: 100%;
	min-width: 0;
}
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 5rem; } }
.faq-section__sidebar { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .faq-section__sidebar { grid-column: span 5; position: sticky; top: 7rem; align-self: start; } }
.faq-section__description { margin-top: 1.5rem; max-width: 28rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); overflow-wrap: break-word; }
.faq-section__card { margin-top: 2.5rem; border-radius: 4px; border: 1px solid var(--color-border); background-color: var(--color-background); padding: 1.75rem; max-width: 100%; box-sizing: border-box; }
.faq-section__card-icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background-color: var(--color-primary); color: var(--color-primary-foreground); }
.faq-section__card h3 { margin-top: 1.25rem; font-size: 1.25rem; overflow-wrap: break-word; }
.faq-section__card p { margin-top: 0.75rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); overflow-wrap: break-word; }
.faq-section__card-btn { margin-top: 1.5rem; display: inline-flex; align-items: center; border-radius: 9999px; background-color: var(--color-foreground); padding: 0.75rem 1.5rem; font-size: 14px; font-weight: 500; color: var(--color-background); transition: background-color 0.3s ease; max-width: 100%; }
.faq-section__card-btn:hover { background-color: var(--color-primary); }

.faq-section__list-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .faq-section__list-col { grid-column: span 7; } }
.faq-section__list { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-section__item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-section__item:last-child { border-bottom: none; }
.faq-section__item.is-hidden-faq { display: none; }
.faq-section__question { display: flex; width: 100%; max-width: 100%; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; text-align: left; box-sizing: border-box; }
.faq-section__question span { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; color: var(--color-foreground); min-width: 0; flex: 1; overflow-wrap: break-word; }
@media (min-width: 640px) { .faq-section__question span { font-size: 1.25rem; } }
.faq-section__chevron { margin-top: 4px; flex-shrink: 0; color: var(--color-primary); transition: transform 0.3s ease; }
.faq-section__item.is-open .faq-section__chevron { transform: rotate(180deg); }
.faq-section__answer-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.5s ease, opacity 0.5s ease; }
.faq-section__item.is-open .faq-section__answer-wrap { grid-template-rows: 1fr; opacity: 1; }
.faq-section__answer-inner { min-height: 0; overflow: hidden; }
.faq-section__answer-inner p { max-width: 42rem; padding-bottom: 1.75rem; padding-right: 1rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .faq-section__answer-inner p { padding-right: 2rem; } }
.faq-section__show-all { margin-top: 2.5rem; display: flex; justify-content: center; }
@media (min-width: 1024px) { .faq-section__show-all { justify-content: flex-start; } }

/* -------------------------------------------------------------------------
   15. Pre-contact CTA section
   ------------------------------------------------------------------------- */
.precta-section { position: relative; display: flex; min-height: 95vh; flex-direction: column; justify-content: space-between; overflow: hidden; }
.precta-section__media { position: absolute; inset: 0; }
.precta-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.precta-section__scrim { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.precta-section__scrim-gradient {
	position: absolute; inset: 0;
	background-image: linear-gradient(to bottom,
		color-mix(in srgb, var(--color-foreground) 60%, transparent) 0%,
		color-mix(in srgb, var(--color-foreground) 15%, transparent) 45%,
		color-mix(in srgb, var(--color-foreground) 80%, transparent) 100%);
}
.precta-section__content {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 48rem; /* max-w-3xl */
	padding-left: 1.25rem;  /* px-5 */
	padding-right: 1.25rem;
	padding-top: 6rem;
	text-align: center;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	.precta-section__content {
		padding-left: 2rem;  /* sm:px-8 */
		padding-right: 2rem;
		padding-top: 7rem;
	}
}
.precta-section__heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-background); }
@media (min-width: 640px) { .precta-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .precta-section__heading { font-size: 3.625rem; } }
.precta-section__description { margin: 1.5rem auto 0; max-width: 28rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.precta-section__cta { margin-top: 2rem; }

.precta-section__footer { position: relative; }
.precta-section__footer-row { display: flex; flex-direction: column; align-items: center; gap: 2rem; padding-bottom: 3rem; text-align: center; }
@media (min-width: 640px) { .precta-section__footer-row { flex-direction: row; align-items: flex-end; justify-content: space-between; text-align: left; } }
.precta-section__say-hello { font-size: 17px; color: color-mix(in srgb, var(--color-background) 60%, transparent); }
.precta-section__email { margin-top: 0.25rem; display: block; font-size: 20px; color: var(--color-background); transition: color 0.3s ease; }
.precta-section__email:hover { color: var(--color-secondary); }
@media (min-width: 640px) { .precta-section__email { font-size: 24px; } }
.precta-section__handcrafted { font-size: 16px; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 70%, transparent); }
@media (min-width: 640px) { .precta-section__handcrafted { text-align: right; } }
.precta-section__handcrafted a { display: block; margin-top: 0.25rem; }
.precta-section__handcrafted a:hover { color: var(--color-background); }

.precta-section__marquee-wrap { padding-bottom: 0.5rem; overflow: hidden; }
.precta-section__marquee-track { display: flex; width: max-content; animation: marquee-fast 24s linear infinite; }
.precta-section__marquee-row { display: flex; flex-shrink: 0; align-items: center; }
.precta-section__marquee-item { display: flex; align-items: center; }
.precta-section__marquee-text { white-space: nowrap; padding: 0 1rem; font-family: var(--font-display); font-size: 13vw; line-height: 1; color: color-mix(in srgb, var(--color-background) 90%, transparent); }
@media (min-width: 640px) { .precta-section__marquee-text { padding: 0 1.5rem; font-size: 6vw; } }
.precta-section__marquee-dot { padding: 0 0.5rem; font-family: var(--font-display); font-size: 9vw; font-style: italic; color: var(--color-secondary); }
@media (min-width: 640px) { .precta-section__marquee-dot { padding: 0 1rem; font-size: 3.8vw; } }

/* -------------------------------------------------------------------------
   16. Contact section
   ------------------------------------------------------------------------- */
.contact-section { background-color: var(--color-linen); padding-bottom: 3rem; padding-top: 6rem; }
@media (min-width: 768px) { .contact-section { padding-bottom: 4rem; padding-top: 8rem; } }
.contact-section__grid { display: grid; align-items: stretch; gap: 3rem; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; } }
.contact-section__copy-col { display: flex; height: 100%; flex-direction: column; min-width: 0; }
.contact-section__description { margin-top: 1.5rem; max-width: 28rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.contact-section__email-link { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.3s ease; }
.contact-section__email-link:hover { color: var(--color-primary); }
.contact-section__icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid var(--color-border); background-color: var(--color-ivory); flex-shrink: 0; }
.contact-section__email-text { display: flex; flex-direction: column; text-align: left; }
.contact-section__email-text span:last-child { font-size: 15px; font-weight: 500; word-break: break-all; }
.contact-section__social-links { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-section__social-link { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 15px; font-weight: 500; color: var(--color-foreground); transition: color 0.3s ease; }
.contact-section__social-link:hover { color: var(--color-primary); }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__quote { position: relative; border-radius: 4px; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.5rem; }
@media (min-width: 768px) { .contact-section__quote { padding: 1.75rem; } }
.contact-section__quote-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 9999px; background-color: var(--color-primary); padding: 0.25rem 0.75rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-primary-foreground); }
.contact-section__quote-text { border-left: 2px solid var(--color-secondary); padding-left: 1.25rem; font-family: var(--font-display); font-size: 1.125rem; font-style: italic; line-height: 1.35; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .contact-section__quote-text { font-size: 1.25rem; } }
.contact-section__quote-caption { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; letter-spacing: 0.02em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.contact-section__form { display: flex; height: 100%; flex-direction: column; gap: 1rem; border-radius: 4px; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: var(--color-ivory); padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.theme-field label { margin-bottom: 0.5rem; display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-field input, .theme-field textarea, .theme-field select {
	height: 48px; width: 100%; border-radius: 4px; border: 1px solid var(--color-border);
	background-color: var(--color-ivory); padding: 0 1rem; font-size: 14px; color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.theme-field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-field input::placeholder, .theme-field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-field input:focus, .theme-field textarea:focus, .theme-field select:focus { outline: none; border-color: var(--color-primary); }
.theme-select-wrap { position: relative; }
.theme-select-wrap select { appearance: none; padding-right: 2.5rem; }
.theme-select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__form-submit { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-section__submit-btn { width: 100%; }
.contact-section__footnote { text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------------------- */
.footer-surface { background-color: var(--color-footer); }
.site-footer { color: var(--color-background); }
.site-footer__inner { padding-bottom: 2rem; padding-top: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-bottom: 2.5rem; padding-top: 5rem; } }
.site-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-img { height: 48px; }
.site-footer__tagline { margin-top: 1.25rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--color-secondary); }
.site-footer__description { margin-top: 0.75rem; max-width: 20rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 70%, transparent); }
.site-footer__crafted { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: var(--color-secondary); }
.site-footer__col-heading { margin-bottom: 1rem; font-size: 1.125rem; color: var(--color-secondary); }
.site-footer__link-list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__link-list a, .site-footer__link-list button { font-size: 14px; color: color-mix(in srgb, var(--color-background) 70%, transparent); }
.site-footer__link-list a:hover, .site-footer__link-list button:hover { color: var(--color-background); }
.site-footer__email { margin-top: 0; display: inline-flex; align-items: flex-start; gap: 0.5rem; word-break: break-all; font-size: 14px; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.site-footer__email:hover { color: var(--color-background); }
.site-footer__social { margin-top: 1.25rem; display: flex; gap: 0.5rem; }
.site-footer__social-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-background) 20%, transparent); color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.site-footer__social-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.site-footer__bottom { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); padding-top: 1.5rem; text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-background) 55%, transparent); }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__credit { margin-top: 0.25rem; display: inline-block; }
.site-footer__credit:hover { color: var(--color-background); }
.site-footer__back-to-top { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 0.5rem 1.25rem; font-size: 13px; font-weight: 500; color: var(--color-secondary); }
.site-footer__back-to-top:hover { background-color: var(--color-secondary); color: var(--color-secondary-foreground); }

/* -------------------------------------------------------------------------
   18. Single product page
   ------------------------------------------------------------------------- */
.single-product-page__breadcrumb { padding: 1.5rem 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.single-product-page__breadcrumb a:hover { color: var(--color-primary); }
.single-product-page__crumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.single-product-page__crumb-current { color: var(--color-foreground); }

.single-product-page__layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .single-product-page__layout { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }

.single-product-page__gallery { grid-column: 1 / -1; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .single-product-page__gallery { grid-column: span 7; position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; width: 100%; aspect-ratio: 4/5; background-color: var(--color-linen); border-radius: 4px; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; max-width: 100%; gap: 0.625rem; }
.theme-product-thumbnails__btn { position: relative; aspect-ratio: 1/1; width: calc((100% - 4 * 0.625rem) / 5); background-color: var(--color-linen); border-radius: 6px; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s ease; }
.theme-product-thumbnails__btn.is-active { border-color: var(--color-primary); }
.theme-product-thumbnails__btn:not(.is-active):hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumbnails__btn img { width: 100%; height: 100%; object-fit: cover; }

.single-product-page__info { grid-column: 1 / -1; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .single-product-page__info { grid-column: span 5; } }
.single-product-page__category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.product-title.single-product-page__title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1rem; text-transform: none; }
@media (min-width: 768px) { .product-title.single-product-page__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title.single-product-page__title { font-size: 2.6rem; } }
.single-product-page__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.single-product-page__stock { display: inline-block; margin-bottom: 1rem; font-size: 13px; font-weight: 500; }
.single-product-page__stock.is-out { color: var(--color-destructive); }
.single-product-page__description { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.single-product-page__description p { margin-bottom: 1em; }

.theme-field-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.single-product-page__quantity { margin-bottom: 1.5rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 9999px; }
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 44px; min-width: 44px; text-align: center; font-size: 14px; font-weight: 500; border: none; background: transparent; -moz-appearance: textfield; padding: 0.625rem 0; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product-page .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.single-product-page .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buy-now-btn { flex: 1 1 auto; min-width: 160px; }

.single-product-page__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.single-product-page__details-content ul { display: flex; flex-direction: column; gap: 0.625rem; }
.single-product-page__details-content li { position: relative; padding-left: 1.25rem; font-size: 14px; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; word-break: break-word; }
.single-product-page__details-content li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 4px; height: 4px; border-radius: 50%; background-color: var(--color-primary); }

.single-product-page__trust-row { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.single-product-page__trust-item { text-align: center; }
.single-product-page__trust-item svg { margin: 0 auto 0.5rem; color: var(--color-primary); display: block; }
.single-product-page__trust-item p { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.single-product-page__related { padding-top: 5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding-bottom: 5rem; }
.single-product-page__related-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.single-product-page__related-heading { font-family: var(--font-display); font-size: 1.875rem; }
@media (min-width: 768px) { .single-product-page__related-heading { font-size: 2.25rem; } }
.single-product-page__related-viewall { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .single-product-page__related-viewall { display: inline-flex; } }
.single-product-page__related-viewall:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------------
   19. Cart drawer + overlay
   ------------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 55;
	background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background-color: var(--color-ivory); z-index: 56; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 50%; }
.theme-cart-drawer__close:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 14px; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { width: 5rem; height: 6rem; flex-shrink: 0; border-radius: 6px; overflow: hidden; background-color: var(--color-bone); }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { display: block; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-price { margin-top: 2px; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__item-variation { margin-top: 4px; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 4px; }
.theme-cart-drawer__qty-btn:hover { background-color: var(--color-bone); }
.theme-cart-drawer__qty-value { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__remove:hover { color: var(--color-destructive); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* Hide the WooCommerce-injected "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; }

/* -------------------------------------------------------------------------
   20. WooCommerce add-to-cart button style override (Section 11.4.1)
   ------------------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.theme-buy-now-btn.button {
	background-color: transparent !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent) !important;
}
.theme-buy-now-btn.button:hover { background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent) !important; opacity: 1 !important; }

.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}

/* Card compact button variant — overrides the global rules above. */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: 40px !important;
	padding: 0 1rem !important;
	border-radius: 9999px !important;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent) !important;
	color: var(--color-foreground) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	opacity: 1 !important;
}

.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; }

/* Variation table label-above-control layout (Section 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; }
.single-product .variations tbody td.value { padding-top: 0; }

/* -------------------------------------------------------------------------
   21. WooCommerce notices (Section 14.1)
   ------------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: 4px;
	border: 1px solid var(--color-border);
	background-color: var(--color-linen);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
	font-size: 14px;
	margin-bottom: 1.5rem;
	list-style: none;
}
.woocommerce-error { border-color: color-mix(in srgb, var(--color-destructive) 40%, transparent); background-color: color-mix(in srgb, var(--color-destructive) 8%, var(--color-linen)); }

/* -------------------------------------------------------------------------
   22. Archive / shop page
   ------------------------------------------------------------------------- */
.archive-product-page__grid { margin-top: 1rem; }
.archive-product-page__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.archive-product-page__pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.archive-product-page__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 2.25rem; border-radius: 9999px; border: 1px solid var(--color-border); font-size: 14px; }
.archive-product-page__pagination .page-numbers.current { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* -------------------------------------------------------------------------
   23. 404 page
   ------------------------------------------------------------------------- */
.theme-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__title { font-family: var(--font-display); font-size: 3rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* -------------------------------------------------------------------------
   24. Checkout — native WooCommerce Checkout Block (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	body.woocommerce-checkout .entry-content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .entry-content {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

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-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background-color: var(--color-ivory);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; border-color: var(--color-primary); }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: 9999px !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border-radius: var(--radius);
	padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: 4px; }

body.woocommerce-checkout .page-title {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	body.woocommerce-checkout .page-title {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .page-title {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

/* -------------------------------------------------------------------------
   25. 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 .page-title,
body.woocommerce-account .page-title,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	box-sizing: border-box;
}
@media (min-width: 640px) {
	body.woocommerce-cart .page-title,
	body.woocommerce-account .page-title,
	body.woocommerce-cart .entry-content,
	body.woocommerce-account .entry-content {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-cart .page-title,
	body.woocommerce-account .page-title,
	body.woocommerce-cart .entry-content,
	body.woocommerce-account .entry-content {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}

/* -------------------------------------------------------------------------
   26. 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; }
.theme-thankyou__check { width: 4rem; height: 4rem; border-radius: 50%; background-color: var(--color-primary); color: var(--color-primary-foreground); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.75rem; padding: 0 0 1rem 0; display: block; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 1.5rem 0; padding: 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border-right: 1px solid var(--color-border); padding-right: 1.5rem; font-size: 14px; }
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; }

/* -------------------------------------------------------------------------
   27. Responsive helpers
   ------------------------------------------------------------------------- */
.theme-product-layout, .theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
