/* ==========================================================================
   KiyoKulture Shop — theme.css
   Theme by The Free Website Guys.
   ========================================================================== */

/* ---- Design tokens (overridden live by Customizer via wp_add_inline_style) */
:root {
	--color-background: #fcf8fb;
	--color-foreground: #1f1d2b;
	--color-primary: #7e59c0;
	--color-primary-foreground: #ffffff;
	--color-secondary: #f8e7f0;
	--color-secondary-foreground: #1f1d2b;
	--color-accent: #cde0f4;
	--color-accent-foreground: #1f1d2b;
	--color-border: #e7dae2;
	--color-card: #fdfbfd;
	--color-linen: #f8edf2;
	--color-bone: #eceef4;
	--color-destructive: #cc3333;

	--font-display: 'Cormorant Garamond', 'Times New Roman', serif;
	--font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

	--radius: 0.5rem;
	--shadow-soft: 0 6px 24px -12px rgba(126, 89, 192, 0.18);
	--shadow-elevated: 0 24px 60px -24px rgba(126, 89, 192, 0.28);

	--logo-height: 68px;
	--wordmark-height: 45px;
	--header-height: 80px;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 15px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: 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-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.008em;
	margin: 0;
	line-height: 1.05;
}
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; cursor: pointer; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 15px; }

/* Pointer cursor on every interactive / clickable control */
a[href],
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
input[type="submit"]:not(:disabled),
input[type="button"]:not(:disabled),
input[type="reset"]:not(:disabled),
input[type="image"]:not(:disabled),
input[type="checkbox"],
input[type="radio"],
input[type="file"],
select:not(:disabled),
summary,
label[for],
.theme-nav-link,
.theme-attr-pill,
.theme-product-thumb,
.theme-product-card,
.theme-faq-item__trigger,
.theme-included-accordion__trigger,
.theme-qty-minus,
.theme-qty-plus,
.ajax_add_to_cart,
.single_add_to_cart_button,
.theme-buynow-button,
.theme-cart-item__remove,
.theme-announcement-bar__dismiss,
.site-header__menu-toggle,
.site-header__cart {
	cursor: pointer;
}
a[aria-disabled="true"],
button:disabled,
.disabled,
[aria-disabled="true"] {
	cursor: not-allowed;
}
section[id] { scroll-margin-top: 96px; }
.italic { font-style: italic; }

img:not(.cover-img):not(.theme-product-card__image):not(.theme-hero__poster):not(.site-logo-img):not(.site-wordmark-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-product-card__image,
.cover-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

::selection { background: color-mix(in srgb, var(--color-primary) 85%, transparent); color: var(--color-primary-foreground); }

.container-wide {
	width: 100%;
	max-width: 84rem;
	margin: 0 auto;
	padding-inline: 1.5rem;
}
@media (min-width: 640px) { .container-wide { padding-inline: 1.75rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 4rem; } }

/* ==========================================================================
   Animation / reveal parity (Section 2.1)
   ========================================================================== */
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes theme-marquee-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes theme-marquee-right { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }

.theme-fade-in { animation: theme-fade-in 0.7s ease-out both; }
.theme-slide-in { animation: theme-slide-in-bottom 0.9s cubic-bezier(0.22,1,0.36,1) both; }

[data-aos],
.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-aos].is-revealed,
.reveal-item.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Preview stability: never leave content invisible inside the Customizer
   preview iframe, where IntersectionObserver may be suppressed. */
body.is-customizer [data-aos],
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-aos], .reveal-item, .theme-fade-in, .theme-slide-in {
		opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important;
	}
}

.img-fade-in { opacity: 0; transition: opacity 700ms cubic-bezier(0.22,1,0.36,1); }
.img-fade-in.is-loaded { opacity: 1; }
.skeleton-shimmer {
	background: linear-gradient(90deg, var(--color-bone) 0%, var(--color-linen) 50%, var(--color-bone) 100%);
	background-size: 200% 100%;
	animation: theme-shimmer 1.6s linear infinite;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.theme-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);
	height: var(--btn-height);
	padding: var(--btn-padding);
	border: 1px solid transparent;
	transition: transform 150ms ease-out, box-shadow 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out, color 150ms ease-out, opacity 150ms ease-out;
	cursor: pointer;
}
.theme-btn:hover { transform: scale(1.02); box-shadow: 0 4px 14px -4px rgba(0,0,0,0.18); }
.theme-btn:active { transform: scale(0.97); }
.theme-btn:disabled { pointer-events: none; opacity: 0.6; transform: none; box-shadow: none; }
.theme-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.theme-btn--primary { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn--primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, white); }
.theme-btn--outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.theme-btn--outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-btn--ghost { border-color: transparent; color: var(--color-foreground); }
.theme-btn--ghost:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); color: var(--color-primary); }
.theme-btn--block { width: 100%; }
.theme-btn--lg { height: 48px; padding: 0 1.75rem; }

.theme-btn--hero-primary { background: #fff; color: var(--color-primary); border-color: #fff; text-transform: none; }
.theme-btn--hero-primary:hover { background: rgba(255,255,255,0.9); }
.theme-btn--hero-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); text-transform: none; }
.theme-btn--hero-outline:hover { background: #fff; color: var(--color-primary); }
.theme-btn--precontact { background: var(--color-background); color: var(--color-primary); border-color: var(--color-background); }
.theme-btn--precontact:hover { background: color-mix(in srgb, var(--color-background) 90%, transparent); }

/* ==========================================================================
   Scroll progress + Announcement bar
   ========================================================================== */
.theme-scroll-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 2px; background: transparent; pointer-events: none; }
.theme-scroll-progress span { display: block; height: 100%; width: 100%; background: var(--color-foreground); transform-origin: left; transform: scaleX(0); transition: transform 150ms ease-out; }

.theme-announcement-bar { position: relative; width: 100%; background: var(--color-accent); color: var(--color-accent-foreground); }
.theme-announcement-bar__inner { max-width: 84rem; margin: 0 auto; padding: 0.5rem 3rem; text-align: center; }
.theme-announcement-bar__text { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.theme-announcement-bar__dismiss { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.theme-announcement-bar__dismiss:hover { background: color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-announcement-bar.is-dismissed { display: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	inset-inline: 0;
	z-index: 50;
	width: 100%;
	transition: background-color 300ms, border-color 300ms;
	background: transparent;
	border-bottom: 1px solid transparent;
	color: #fff;
}
/* Keep sticky header below the WP admin bar */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .theme-scroll-progress { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar .theme-scroll-progress { top: 46px; }
}
/* Admin bar is not fixed on very small screens — it scrolls away */
@media screen and (max-width: 600px) {
	body.admin-bar .site-header { top: 0; }
	body.admin-bar .theme-scroll-progress { top: 0; }
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	color: var(--color-foreground);
}
.site-header__row {
	max-width: 84rem;
	margin: 0 auto;
	padding: 0 1rem;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
}
@media (min-width: 1024px) { .site-header__row { height: 80px; padding: 0 2rem; } }

.site-header__brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
/* Logo sizes match Lovable: 52/68 icon, 35/45 wordmark */
.site-header .site-logo-img {
	height: 52px;
	width: auto;
	max-width: none;
	object-fit: contain;
	display: block;
}
.site-header .site-wordmark-img {
	height: 35px;
	width: auto;
	max-width: none;
	object-fit: contain;
	display: block;
	transition: filter 300ms;
}
@media (min-width: 1024px) {
	.site-header .site-logo-img { height: var(--logo-height, 68px); }
	.site-header .site-wordmark-img { height: var(--wordmark-height, 45px); }
}
.site-header:not(.is-solid) .site-wordmark-img { filter: brightness(0) invert(1); }
.site-logo-text { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }

.site-header__nav { display: none; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; gap: 0.25rem; position: absolute; left: 50%; transform: translateX(-50%); }
}
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; }
.theme-nav-link {
	position: relative; display: inline-block; padding: 0.5rem 0.75rem;
	font-size: 13px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase;
	color: color-mix(in srgb, currentColor 70%, transparent);
	transition: color 200ms; border-radius: 4px; white-space: nowrap;
}
.site-header.is-solid .theme-nav-link:hover { color: var(--color-primary); }
.site-header:not(.is-solid) .theme-nav-link:hover { color: #fff; }
.theme-nav-link.is-active { color: var(--color-primary); }
.site-header:not(.is-solid) .theme-nav-link.is-active { color: #fff; }
.theme-nav-link::after {
	content: ''; position: absolute; left: 0.75rem; right: 0.75rem; bottom: -1px; height: 2px;
	background: var(--color-primary); opacity: 0; transition: opacity 200ms;
}
.site-header:not(.is-solid) .theme-nav-link::after { background: #fff; }
.theme-nav-link.is-active::after { opacity: 1; }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.site-header__menu-toggle,
.site-header__cart {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 6px; transition: background-color 200ms;
}
.site-header.is-solid .site-header__menu-toggle:hover,
.site-header.is-solid .site-header__cart:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header:not(.is-solid) .site-header__menu-toggle:hover,
.site-header:not(.is-solid) .site-header__cart:hover { background: rgba(255,255,255,0.1); }
.site-header__menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }
.site-header__menu-toggle .icon-close { display: none; }
.site-header__menu-toggle.is-open .icon-menu { display: none; }
.site-header__menu-toggle.is-open .icon-close { display: block; }

.theme-cart-count {
	position: absolute; top: -2px; right: -2px; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 11px; font-weight: 500; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-nav { display: none; border-top: 1px solid var(--color-border); background: var(--color-background); }
.site-header__mobile-nav.is-open { display: block; animation: theme-fade-in 300ms ease-out; }
/* Hamburger menu: always a vertical stack (matches Lovable) */
.site-header__mobile-nav .theme-mobile-nav-list,
.site-header__mobile-nav .theme-nav-list {
	max-width: 84rem;
	margin: 0 auto;
	padding: 0.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}
.site-header__mobile-nav .theme-mobile-nav-list li,
.site-header__mobile-nav .theme-nav-list li {
	width: 100%;
	border-bottom: 1px solid var(--color-border);
}
.site-header__mobile-nav .theme-mobile-nav-list li:last-child,
.site-header__mobile-nav .theme-nav-list li:last-child { border-bottom: none; }
.site-header__mobile-nav .theme-mobile-nav-list a,
.site-header__mobile-nav .theme-nav-list a,
.site-header__mobile-nav .theme-nav-link {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.75rem 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: normal;
	text-transform: none;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	border-radius: 0;
}
.site-header__mobile-nav .theme-nav-link::after { display: none; }
.site-header__mobile-nav .theme-mobile-nav-list a:hover,
.site-header__mobile-nav .theme-nav-list a:hover,
.site-header__mobile-nav .theme-nav-link:hover { color: var(--color-primary); }

/* Header is sticky (occupies normal flow height), so inner-page content is
   never hidden behind it — only the transparent home hero pulls itself up
   underneath the header's reserved space (see .theme-hero below). */

/* ==========================================================================
   Hero
   ========================================================================== */
.theme-hero {
	position: relative;
	margin-top: -64px;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}
@media (min-width: 1024px) { .theme-hero { margin-top: -80px; } }
.theme-hero__video { z-index: 0; }
.theme-hero__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, rgba(20,10,30,0.55) 0%, rgba(20,10,30,0.6) 50%, rgba(20,10,30,0.72) 100%);
}
/* Use padding-block so container-wide horizontal gutters stay intact */
.theme-hero__content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	padding-block: 8rem 6rem;
}
@media (min-width: 1024px) { .theme-hero__content { padding-block: 10rem 8rem; } }
.theme-hero__badge-row { display: flex; justify-content: center; margin-bottom: 2rem; }
.theme-hero__badge {
	display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 999px;
	background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
	font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 500;
	backdrop-filter: blur(4px);
}
.theme-hero__title {
	font-family: var(--font-display); color: #fff; line-height: 0.98; letter-spacing: -0.015em;
	margin: 0 auto; max-width: 64rem; font-size: clamp(3rem, 8.5vw, 7rem);
	filter: drop-shadow(0 2px 20px rgba(0,0,0,0.45));
}
.theme-hero__subtitle { margin: 2rem auto 0; max-width: 42rem; font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
@media (min-width: 640px) { .theme-hero__subtitle { font-size: 18px; } }
.theme-hero__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .theme-hero__ctas { flex-direction: row; gap: 1rem; } }

/* ==========================================================================
   Trust section
   ========================================================================== */
.theme-trust { background: var(--color-background); padding: 4rem 0; }
@media (min-width: 768px) { .theme-trust { padding: 6rem 0; } }
.theme-trust__header { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.theme-trust__eyebrow { font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; font-weight: 500; }
.theme-trust__heading { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.1; }
@media (min-width: 768px) { .theme-trust__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-trust__heading { font-size: 3rem; } }
.theme-trust__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: stretch; }
@media (min-width: 640px) { .theme-trust__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-trust__grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 1.25rem; } }
.theme-trust-card {
	position: relative; height: 100%; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center;
	border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); background: var(--color-card);
	padding: 1.5rem; text-align: center; cursor: pointer; overflow: hidden;
	transition: border-color 300ms, box-shadow 300ms, transform 250ms cubic-bezier(0.22,1,0.36,1);
}
.theme-trust-card:hover { border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); box-shadow: 0 20px 45px -25px color-mix(in srgb, var(--color-primary) 55%, transparent); }
.theme-trust-card__emoji { display: block; font-size: 2.25rem; margin-bottom: 0.75rem; transition: transform 500ms; }
.theme-trust-card:hover .theme-trust-card__emoji { transform: scale(1.25) translateY(-4px) rotate(6deg); }
.theme-trust-card__label { font-size: 14px; font-weight: 500; line-height: 1.3; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 300ms; }
.theme-trust-card:hover .theme-trust-card__label { color: var(--color-primary); }
.theme-trust-card__underline { display: block; margin: 0.75rem auto 0; height: 2px; width: 1.5rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 40%, transparent); transition: all 500ms; }
.theme-trust-card:hover .theme-trust-card__underline { width: 4rem; background: var(--color-primary); }

/* ==========================================================================
   About section
   ========================================================================== */
.theme-about { background: var(--color-background); padding: 6rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
@media (min-width: 768px) { .theme-about { padding: 8rem 0; } }
.theme-about__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .theme-about__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.theme-about__eyebrow { font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.theme-about__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-about__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-about__heading { font-size: 3.6rem; } }
.theme-about__paragraph { margin-top: 1.25rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 24rem; }
.theme-about__quote { margin-top: 3rem; padding-top: 2rem; }
.theme-about__quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin: 0; }
@media (min-width: 768px) { .theme-about__quote blockquote { font-size: 1.8rem; } }
.theme-about__quote figcaption { margin-top: 1.25rem; font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); font-weight: 500; }
.theme-about__promise { margin-top: 2.5rem; border-radius: 1rem; border: 1px solid var(--color-border); background: var(--color-secondary); padding: 1.25rem; transition: all 400ms; }
.theme-about__promise:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); box-shadow: var(--shadow-elevated); }
.theme-about__promise-label { font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-about__promise-text { font-size: 15px; font-weight: 500; }
.theme-about__subheading { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; line-height: 1.15; margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-about__subheading { font-size: 2.25rem; } }
.theme-about__body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
@media (min-width: 768px) { .theme-about__body { font-size: 16px; } }
.theme-about__body-italic { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-primary) 90%, transparent); font-size: 1.125rem; }
@media (min-width: 768px) { .theme-about__body-italic { font-size: 1.25rem; } }
.theme-about__stats { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 2rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 640px) { .theme-about__stats { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; } }
.theme-about__stat-value { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
@media (min-width: 768px) { .theme-about__stat-value { font-size: 1.875rem; } }
.theme-about__stat-label { margin-top: 0.25rem; font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-about__stat-underline { margin-top: 0.75rem; display: block; height: 1px; width: 1.5rem; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

/* ==========================================================================
   Marquee
   ========================================================================== */
.theme-marquee { position: relative; background: var(--color-background); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; padding: 2.25rem 0; }
@media (min-width: 768px) { .theme-marquee { padding: 3.15rem 0; } }
.theme-marquee__fade { position: absolute; inset-block: 0; width: 6rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .theme-marquee__fade { width: 10rem; } }
.theme-marquee__fade--left { left: 0; background: linear-gradient(to right, var(--color-background), transparent); }
.theme-marquee__fade--right { right: 0; background: linear-gradient(to left, var(--color-background), transparent); }
.theme-marquee__track { display: flex; align-items: center; gap: 3rem; white-space: nowrap; width: max-content; will-change: transform; animation: theme-marquee-scroll 45s linear infinite; }
@media (min-width: 768px) { .theme-marquee__track { gap: 5rem; } }
.theme-marquee__item { display: flex; align-items: center; gap: 3rem; flex-shrink: 0; }
@media (min-width: 768px) { .theme-marquee__item { gap: 5rem; } }
.theme-marquee__phrase { font-family: var(--font-display); font-style: italic; line-height: 1; font-size: clamp(1.44rem, 3.84vw, 3.2rem); }
.theme-marquee__dot { display: inline-block; border-radius: 999px; background: var(--color-primary); width: clamp(6px, 0.6vw, 10px); height: clamp(6px, 0.6vw, 10px); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .theme-marquee__track { animation: none; } }

/* ==========================================================================
   Shop section (homepage)
   ========================================================================== */
.theme-shop { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .theme-shop { padding: 8rem 0; } }
.theme-shop__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .theme-shop__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.theme-shop__intro { max-width: 42rem; }
.theme-shop__eyebrow { font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
.theme-shop__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-shop__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop__heading { font-size: 3.4rem; } }
.theme-shop__description { margin-top: 1.25rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 36rem; }
.theme-shop__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .theme-shop__search { width: 20rem; } }
.theme-shop__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); pointer-events: none; }
.theme-shop__search input {
	width: 100%; height: 44px; padding: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-secondary);
	border: 1px solid var(--color-border); font-size: 15px; color: var(--color-foreground);
}
.theme-shop__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-shop__search input:focus { outline: none; border-color: var(--color-primary); }

.theme-shop__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 3rem; }
.theme-shop__filter-btn {
	padding: 0 1.25rem; height: 40px; border-radius: 999px; font-size: 15px; font-weight: 500;
	border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: all 200ms;
}
.theme-shop__filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-shop__filter-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.5rem; }
@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-shop-item { display: flex; }
.theme-shop-item--hidden-by-filter,
.theme-shop-item--extra.theme-shop-item--collapsed { display: none; }

.theme-shop__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-shop__showmore { margin-top: 3.5rem; display: flex; justify-content: center; }

/* ---- Product card (shared: shop / archive / related / new arrivals) ---- */
.theme-product-card-wrap { width: 100%; display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; position: relative; }
.theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .theme-product-card__add,
.theme-product-card .theme-product-card__quickview { pointer-events: auto; position: relative; z-index: 3; }

.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: 1.5rem; overflow: hidden;
	margin-bottom: 1rem; border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); transition: border-color 300ms;
}
.theme-product-card:hover .theme-product-card__image-wrapper { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-product-card__image--main { transition: opacity 500ms; }
.theme-product-card:hover .theme-product-card__image--main.has-hover-image { opacity: 0; }
.theme-product-card__image--hover { opacity: 0; transition: opacity 500ms; }
.theme-product-card:hover .theme-product-card__image--hover { opacity: 1; }

.theme-product-card__badge--image {
	position: absolute; top: 0.75rem; left: 0.75rem; background: color-mix(in srgb, var(--color-background) 90%, transparent); backdrop-filter: blur(4px);
	color: var(--color-primary); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
	padding: 0.375rem 0.75rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); z-index: 4;
}
.theme-product-card__soldout {
	position: absolute; top: 0.75rem; right: 0.75rem; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 13px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 999px; z-index: 4;
}
.theme-product-card__hover-actions {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transition: opacity 500ms ease-out; z-index: 3;
}
.theme-product-card:hover .theme-product-card__hover-actions { opacity: 1; }
.theme-product-card__add {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 40px; border-radius: 999px;
	background: var(--color-primary); color: var(--color-primary-foreground); font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
	transition: all 300ms; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: none;
}
.theme-product-card__add:hover { background: color-mix(in srgb, var(--color-primary) 90%, white); }
.theme-product-card__add:active { transform: scale(0.97); }
.theme-product-card__quickview {
	width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 90%, transparent); backdrop-filter: blur(4px); color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.theme-product-card__info { padding: 0 0.25rem; flex: 1; }
.theme-product-card__badge--inline {
	display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 10%, transparent); padding: 0.25rem 0.625rem; border-radius: 999px; margin-bottom: 0.5rem;
}
.theme-product-card__title { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.3; transition: color 300ms; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.25rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.35rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 15px; font-weight: 500; color: var(--color-primary); }
.theme-product-card__price .amount, .theme-product-card__price ins, .theme-product-card__price del { text-decoration: none; }

.theme-shop-archive__grid,
.theme-related-products__grid { margin-top: 1rem; }
.theme-shop-archive { padding: 7rem 0 6rem; }
.theme-shop-archive__header { margin-bottom: 2.5rem; }
.theme-shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-shop-archive__pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.theme-shop-archive__pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.75rem; border-radius: 999px; border: 1px solid var(--color-border); }
.theme-shop-archive__pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* ==========================================================================
   New Arrivals
   ========================================================================== */
.theme-newarrivals { position: relative; background: var(--color-secondary); padding: 6rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; }
@media (min-width: 768px) { .theme-newarrivals { padding: 8rem 0; } }
.theme-newarrivals__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .theme-newarrivals__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-newarrivals__eyebrow { font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.25rem; font-weight: 500; }
.theme-newarrivals__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-newarrivals__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-newarrivals__heading { font-size: 3.4rem; } }
.theme-newarrivals__body { margin-top: 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; }
@media (min-width: 768px) { .theme-newarrivals__body { font-size: 16px; } }
.theme-newarrivals__quote { margin-top: 1rem; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: color-mix(in srgb, var(--color-primary) 90%, transparent); max-width: 28rem; }
.theme-newarrivals__ctas { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-newarrivals__ctas { flex-direction: row; } }
.theme-newarrivals__cta { text-transform: none; }
.theme-newarrivals__collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; aspect-ratio: 7 / 5; }
@media (min-width: 768px) { .theme-newarrivals__collage { gap: 1rem; } }
.theme-newarrivals__cell { position: relative; border-radius: 1rem; overflow: hidden; background: var(--color-background); border: 1px solid var(--color-border); }
.theme-newarrivals__cell--main { grid-column: span 2; grid-row: span 2; }

/* ==========================================================================
   Founder
   ========================================================================== */
.theme-founder { background: var(--color-secondary); padding: 6rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
@media (min-width: 768px) { .theme-founder { padding: 8rem 0; } }
.theme-founder__eyebrow { font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.25rem; font-weight: 500; }
.theme-founder__heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .theme-founder__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-founder__heading { font-size: 3.4rem; } }
.theme-founder__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .theme-founder__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-founder__portrait-frame {
	position: relative; border-radius: 1rem; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
	background: var(--color-background); box-shadow: var(--shadow-soft); aspect-ratio: 3 / 4; max-width: 28rem; margin: 0 auto;
}
@media (min-width: 1024px) { .theme-founder__portrait-frame { margin: 0; } }
.theme-founder__caption { margin-top: 1rem; text-align: center; font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
@media (min-width: 1024px) { .theme-founder__caption { text-align: left; } }
.theme-founder__body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
@media (min-width: 768px) { .theme-founder__body { font-size: 16px; } }
.theme-founder__quote { margin-top: 2rem; }
.theme-founder__quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.35; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); border-left: 2px solid var(--color-primary); padding-left: 1.25rem; margin: 0; }
@media (min-width: 768px) { .theme-founder__quote blockquote { font-size: 1.5rem; } }
.theme-founder__quote figcaption { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-founder__note { margin-top: 2rem; border-radius: 1rem; border: 1px solid var(--color-border); background: var(--color-background); padding: 1.25rem; }
.theme-founder__note-label { font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-founder__note-text { font-size: 15px; font-weight: 500; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.theme-faq { background: var(--color-background); padding: 6rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
@media (min-width: 768px) { .theme-faq { padding: 8rem 0; } }
.theme-faq__header { max-width: 48rem; margin: 0 auto 3.5rem; text-align: center; }
.theme-faq__eyebrow { font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; font-weight: 600; }
.theme-faq__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-faq__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-faq__heading { font-size: 3.4rem; } }
.theme-faq__description { margin-top: 1.25rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-faq__list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.theme-faq-item { border-radius: 1rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); transition: background-color 200ms, border-color 200ms; }
.theme-faq-item:hover { background: var(--color-secondary); }
.theme-faq-item.is-open { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); background: var(--color-secondary); }
.theme-faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 1.5rem; text-align: left; }
.theme-faq-item__question span { font-family: var(--font-display); font-size: 1.125rem; }
@media (min-width: 768px) { .theme-faq-item__question span { font-size: 1.25rem; } }
.theme-faq-item__chevron { flex-shrink: 0; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: transform 300ms; }
.theme-faq-item.is-open .theme-faq-item__chevron { transform: rotate(180deg); color: var(--color-primary); }
.theme-faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.theme-faq-item.is-open .theme-faq-item__answer { max-height: 600px; }
.theme-faq-item__answer-inner { padding: 0 1.5rem 1.5rem; font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }

/* ==========================================================================
   Pre-Contact CTA
   ========================================================================== */
.theme-precontact { position: relative; overflow: hidden; background: var(--color-foreground); color: var(--color-background); }
.theme-precontact__video { z-index: 0; pointer-events: none; }
.theme-precontact__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.5); pointer-events: none; }
.theme-precontact__dots { position: absolute; inset: 0; pointer-events: none; opacity: 0.08; background-image: radial-gradient(rgba(250,240,250,0.6) 1px, transparent 1px); background-size: 22px 22px; }
.theme-precontact__content { position: relative; z-index: 10; padding-block: 6rem; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .theme-precontact__content { padding-block: 9rem; } }
.theme-precontact__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(252,248,251,0.85); margin-bottom: 1.5rem; font-weight: 500; }
.theme-precontact__eyebrow-line { height: 1px; width: 2rem; background: rgba(252,248,251,0.5); }
.theme-precontact__heading { font-family: var(--font-display); color: var(--color-background); line-height: 1.05; letter-spacing: -0.01em; margin: 0 auto; max-width: 56rem; font-size: clamp(2rem, 5.6vw, 4.2rem); }
.theme-precontact__body { margin-top: 1.75rem; max-width: 36rem; margin-inline: auto; font-size: 15px; color: rgba(252,248,251,0.85); line-height: 1.6; }
.theme-precontact__cta { margin-top: 2.5rem; text-shadow: none; }

/* ==========================================================================
   Contact
   ========================================================================== */
.theme-contact { background: var(--color-background); padding: 6rem 0 4rem; }
@media (min-width: 768px) { .theme-contact { padding: 8rem 0 5rem; } }
.theme-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-contact__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 5rem; } }
.theme-contact__left { display: flex; flex-direction: column; height: 100%; }
.theme-contact__eyebrow { font-size: 15px; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
.theme-contact__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-contact__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact__heading { font-size: 3.4rem; } }
.theme-contact__body { margin-top: 1.5rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 28rem; }
.theme-contact__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-contact__link { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 200ms; }
a.theme-contact__link:hover { color: var(--color-primary); }
.theme-contact__icon-circle { width: 44px; height: 44px; border-radius: 999px; background: var(--color-secondary); border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 200ms; }
a.theme-contact__link:hover .theme-contact__icon-circle { border-color: var(--color-primary); }
.theme-contact__link-text { display: flex; flex-direction: column; text-align: left; }
.theme-contact__link-label { font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact__link-value { font-size: 15px; font-weight: 500; }
.theme-contact__quote-box { margin-top: auto; padding-top: 2.5rem; }
.theme-contact__quote-card {
	border-radius: 1rem;
	border: 1px solid var(--color-border);
	background: var(--color-secondary);
	padding: 1.5rem;
}
@media (min-width: 768px) { .theme-contact__quote-card { padding: 1.75rem; } }
.theme-contact__quote {
	font-family: var(--font-display);
	font-style: italic;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	font-size: 1.125rem;
	line-height: 1.4;
	border-left: 2px solid var(--color-primary);
	padding-left: 1.25rem;
	margin: 0;
}
@media (min-width: 768px) { .theme-contact__quote { font-size: 1.25rem; } }
.theme-contact__quote-note {
	margin-top: 0.75rem;
	padding-left: 1.25rem;
	font-size: 15px;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	letter-spacing: 0.02em;
}

.theme-contact__form { background: var(--color-secondary); border: 1px solid var(--color-border); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .theme-contact__form { padding: 2rem; } }
.theme-contact__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.theme-contact__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact__form-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.theme-contact__form label { display: block; font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-contact__form input,
.theme-contact__form select,
.theme-contact__form textarea {
	width: 100%; height: 48px; padding: 0 1rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 6px;
	font-size: 15px; color: var(--color-foreground);
}
.theme-contact__form textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-contact__form input::placeholder, .theme-contact__form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-contact__form input:focus, .theme-contact__form select:focus, .theme-contact__form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact__select-wrap { position: relative; }
.theme-contact__select-wrap select { appearance: none; padding-right: 2.5rem; }
.theme-contact__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact__form-submit { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-contact__form-note { font-size: 15px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.theme-newsletter { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 768px) { .theme-newsletter { padding: 7rem 0; } }
.theme-newsletter__inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.theme-newsletter__eyebrow { font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; font-weight: 500; }
@media (min-width: 640px) { .theme-newsletter__eyebrow { font-size: 15px; letter-spacing: 0.4em; } }
.theme-newsletter__heading { font-size: 1.875rem; line-height: 1.1; }
@media (min-width: 640px) { .theme-newsletter__heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .theme-newsletter__heading { font-size: 3rem; } }
.theme-newsletter__body { margin-top: 1rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-newsletter__form { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin-inline: auto; }
@media (min-width: 640px) { .theme-newsletter__form { flex-direction: row; } }
.theme-newsletter__form input {
	flex: 1; height: 48px; padding: 0 1.25rem; border-radius: 999px; background: var(--color-secondary); border: 1px solid var(--color-border);
	font-size: 15px; color: var(--color-foreground);
}
.theme-newsletter__form input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-newsletter__form input:focus { outline: none; border-color: var(--color-primary); }
.theme-newsletter__submit { border-radius: 999px; height: 48px; padding: 0 2rem; }
.theme-newsletter__disclaimer { margin-top: 1rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.theme-newsletter__disclaimer.is-success { color: var(--color-primary); font-weight: 500; font-size: 14px; }

/* ==========================================================================
   Reviews (single product page)
   ========================================================================== */
.theme-reviews { padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-reviews__header { text-align: center; margin-bottom: 2rem; }
.theme-reviews__eyebrow { font-size: 13px; letter-spacing: 0.35em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; font-weight: 500; }
.theme-reviews__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-reviews__heading { font-size: 2.25rem; } }
.theme-reviews__mobile { display: flex; flex-direction: column; gap: 1rem; padding: 0 0.25rem; }
.theme-reviews__marquee { display: none; position: relative; overflow-x: hidden; }
@media (min-width: 768px) { .theme-reviews__mobile { display: none; } .theme-reviews__marquee { display: block; } }
.theme-reviews__track { display: flex; gap: 1.25rem; width: max-content; padding: 2.5rem 0; animation: theme-marquee-right 45s linear infinite; }
.theme-reviews__marquee:hover .theme-review-card { filter: blur(3px); opacity: 0.6; }
.theme-reviews__marquee .theme-review-card:hover { filter: none; opacity: 1; transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .theme-reviews__track { animation: none; } }
.theme-review-card {
	width: 300px; flex-shrink: 0; border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
	background: var(--color-card); padding: 1.5rem; transition: all 500ms; cursor: pointer;
}
@media (min-width: 640px) { .theme-review-card { width: 340px; } }
.theme-review-card:hover { border-color: color-mix(in srgb, var(--color-primary) 45%, transparent); box-shadow: 0 24px 50px -28px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-review-card__stars { color: var(--color-primary); font-size: 13px; letter-spacing: 0.15em; }
.theme-review-card__text { margin-top: 0.75rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-review-card__name { margin-top: 1rem; font-size: 13px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-secondary); border-top: 1px solid var(--color-border); }
/* padding-block only — keep container-wide side margins on mobile */
.site-footer__inner { padding-block: 3.5rem 5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3rem; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
/* Footer logo matches Lovable h-16 / lg:h-20 */
.site-footer .site-logo-img,
.site-footer__logo {
	height: 64px;
	width: auto;
	max-width: none;
	object-fit: contain;
	display: block;
}
@media (min-width: 1024px) {
	.site-footer .site-logo-img,
	.site-footer__logo { height: 80px; }
}
.site-footer__tagline { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__quote { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 20rem; font-style: italic; font-family: var(--font-display); }
.site-footer__heading { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__list a,
.site-footer__contact-list .theme-footer-contact-link,
.theme-footer-static { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 200ms; }
.site-footer__list a:hover, a.theme-footer-contact-link:hover { color: var(--color-primary); }
.theme-footer-contact-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-footer-static { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-footer__payments { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.site-footer__payments-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.75rem; }
.theme-payment-icons { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.theme-payment-icon { height: 28px; width: 44px; border-radius: 6px; border: 1px solid var(--color-border); background: var(--color-card); display: flex; align-items: center; justify-content: center; transition: transform 300ms; }
.theme-payment-icon:hover { transform: translateY(-2px); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.theme-payment-icon svg { height: 16px; width: auto; }
.theme-payment-icon__glyph { color: var(--color-foreground); }
.site-footer__bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__credit a:hover { color: var(--color-primary); }

/* ==========================================================================
   404
   ========================================================================== */
.theme-404 { min-height: 60vh; display: flex; align-items: center; padding: 8rem 0; }
.theme-404__inner { text-align: center; max-width: 32rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.theme-404__title { font-size: 2.5rem; }
.theme-404__body { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ==========================================================================
   Generic pages / My Account / Cart page width parity (Section 13.7)
   ========================================================================== */
.theme-generic-page { padding: 7rem 0 6rem; }
.theme-generic-page .page-title { font-size: 2.5rem; margin-bottom: 2rem; }
body.woocommerce-account .theme-generic-page,
body.woocommerce-cart .theme-generic-page { padding-top: 1rem; }

/* ==========================================================================
   Single Product Page (Section 11)
   ========================================================================== */
.single-product .site-main { padding-top: 1.5rem; padding-bottom: 4rem; }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--color-primary); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.single-product .theme-product-layout {
	display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; align-items: start; min-width: 0;
}
@media (min-width: 1024px) { .single-product .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { position: sticky; top: calc(var(--header-height) + 1rem); align-self: start; }
@media (max-width: 1023px) { .theme-product-gallery { position: static; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; width: 100%; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: 6px; overflow: hidden; border: 2px solid transparent; transition: border-color 200ms; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

.theme-product-info__category { font-size: 15px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.theme-product-info__title.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.05; margin-bottom: 1rem; overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title.product-title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1rem; }
.theme-product-info__price .amount, .theme-product-info__price del { text-decoration: none; }
.theme-product-info__stock--out { color: var(--color-destructive); font-weight: 500; margin-bottom: 1rem; }
.theme-product-info__badge {
	display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: color-mix(in srgb, var(--color-primary) 10%, transparent); padding: 0.375rem 0.875rem; margin-bottom: 1.75rem;
}
.theme-product-info__badge-emoji { font-size: 14px; line-height: 1; }
.theme-product-info__badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-primary); }
.theme-product-info__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; }
.theme-product-info__description p { margin: 0 0 1em; }

.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-label { font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-quantity-wrapper {
	display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px;
}
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; transition: color 200ms; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.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: 15px; font-weight: 500; border: none; background: transparent;
	-moz-appearance: textfield; padding: 0.625rem 0; color: inherit;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-qty-input:focus { outline: none; }

/* Lovable layout: quantity stack, then full-width Add to Cart / Buy Now row */
.theme-add-to-cart-area {
	display: block;
	margin-top: 0;
}
.theme-single-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	margin-top: 0;
}
@media (min-width: 640px) {
	.theme-single-actions { flex-direction: row; }
}
.theme-single-actions .single_add_to_cart_button,
.theme-single-actions .theme-buynow-button {
	flex: 1 1 0;
	width: 100%;
	min-width: 0;
}

.theme-product-info__section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__section-heading { font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-bullet-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-bullet-list li { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; overflow-wrap: break-word; word-break: break-word; }
.theme-bullet-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--color-primary); margin: 0.55rem 0.75rem 0 0; flex-shrink: 0; }

.theme-included-accordion { margin-top: 1.5rem; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); overflow: hidden; }
.theme-included-accordion__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; transition: background-color 200ms; }
.theme-included-accordion__toggle:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-included-accordion__toggle span { font-family: var(--font-display); font-size: 1.25rem; }
.theme-included-accordion__toggle svg { color: var(--color-primary); transition: transform 300ms; }
.theme-included-accordion.is-open .theme-included-accordion__toggle svg { transform: rotate(180deg); }
.theme-included-accordion__panel { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.theme-included-accordion.is-open .theme-included-accordion__panel { max-height: 600px; }
.theme-included-accordion__panel .theme-bullet-list { padding: 0 1.25rem 1.25rem; }

.theme-product-info__features { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-feature { text-align: center; }
.theme-feature svg { margin: 0 auto 0.5rem; color: var(--color-primary); display: block; }
.theme-feature p { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-related-products { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-related-products__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.theme-related-products__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-related-products__heading { font-size: 2.25rem; } }
.theme-related-products__viewall { display: none; align-items: center; gap: 0.375rem; font-size: 15px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .theme-related-products__viewall { display: inline-flex; } }
.theme-related-products__viewall:hover { color: var(--color-primary); }
.theme-related-products__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 1024px) { .theme-related-products__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* Variable product attribute pills (Section 11.5.2) */
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill { padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--color-border); font-size: 14px; transition: all 200ms; }
.theme-attr-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-attr-pill.is-selected { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 500; }
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1rem; }
.single-product .variations tbody td.value select.theme-attr-select-hidden { display: none !important; }
.single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* ---- 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-primary-foreground) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_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-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: var(--color-primary) !important;
}
/* Card compact button variant — overrides global rules, scoped after them */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 40px !important;
	padding: 0 1.25rem !important;
	border-radius: 999px !important;
}
.single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Hide "View cart" injected by WooCommerce after AJAX add (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; }

/* WooCommerce notices — scoped visibility (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: 0.75rem; border: 1px solid var(--color-border); background: var(--color-secondary); color: var(--color-foreground);
	padding: 1rem 1.25rem; font-size: 14px; list-style: none; margin: 0 0 1.5rem;
}
.woocommerce-error { border-color: var(--color-destructive); background: color-mix(in srgb, var(--color-destructive) 8%, var(--color-background)); }

/* ==========================================================================
   Side Cart Drawer (Section 12)
   ========================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 90;
	opacity: 0; visibility: hidden; transition: opacity 300ms ease; pointer-events: none;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-linen);
	z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 350ms 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: 999px; transition: background-color 200ms; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 15px; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 80px; height: 96px; background: var(--color-bone); border-radius: 6px; overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 15px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 200ms; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 15px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-item__remove:hover { color: var(--color-destructive); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; background: color-mix(in srgb, var(--color-linen) 40%, var(--color-background)); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 15px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   Checkout Block (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .page-title { max-width: 84rem; margin: 0 auto 2rem; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 3rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--radius);
	padding: 2rem;
}
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 {
	font-family: var(--font-body); font-size: 15px; color: var(--color-foreground);
	border: 1px solid var(--color-border); border-radius: 6px; background: var(--color-background);
	width: 100% !important; max-width: none !important;
}
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 { padding: revert; }
body.woocommerce-checkout .wc-block-components-checkbox label,
body.woocommerce-checkout .wc-block-components-radio-control label { display: inline-flex; }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important; text-transform: none !important; border: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.75rem; font-family: var(--font-body);
}

/* ==========================================================================
   Cart / My Account pages (Section 13.7)
   ========================================================================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.woocommerce-cart .wc-block-cart,
body.woocommerce-account .woocommerce-MyAccount-content { max-width: 84rem; margin: 0 auto; }

/* ==========================================================================
   Thank You Page (Section 22.8)
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { max-width: 84rem; margin: 0 auto 2rem; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; background: var(--color-secondary); border-radius: var(--radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page 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-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); 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; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.25rem; font-size: 14px; line-height: 1.6; }
