/* ==========================================================================
   Vyron Axis Performance — theme.css
   All visual styling for the theme lives in this file (Section 10).
   Color custom properties (--color-*) are emitted by PHP (Section 22.9);
   the tokens below cover everything else (Section 6.1 / 2.2).
   ========================================================================== */

:root {
	--font-display: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.25rem;
	--shadow-soft: 0 4px 20px -4px hsl(212 100% 55% / 0.15);
	--shadow-elevated: 0 8px 40px -8px hsl(212 100% 55% / 0.25);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--theme-noise-texture: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	--theme-surface-noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	--theme-surface-gradients:
		radial-gradient(ellipse 70% 60% at 15% 10%, hsl(212 100% 22% / 0.35), transparent 65%),
		radial-gradient(ellipse 60% 50% at 90% 90%, hsl(200 90% 25% / 0.28), transparent 70%),
		linear-gradient(135deg, hsl(212 100% 55% / 0.06), transparent 45%),
		linear-gradient(315deg, hsl(200 90% 60% / 0.05), transparent 55%),
		var(--theme-surface-noise);

	--btn-radius: 0px;
	--btn-height: 3.25rem;
	--btn-padding: 1rem 2.25rem;
	--btn-font-size: 11px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--header-height: 80px;
	--card-radius: 0px;
	--section-padding: 3rem 0;
	--checkout-gap: 2rem;
}

/* --------------------------------------------------------------------
 * Reset & base
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-foreground);
	background-color: var(--color-background);
	background-image:
		radial-gradient(ellipse 80% 50% at 20% 0%, hsl(212 100% 18% / 0.55), transparent 60%),
		radial-gradient(ellipse 60% 50% at 90% 20%, hsl(200 90% 22% / 0.35), transparent 65%),
		radial-gradient(ellipse 70% 60% at 50% 100%, hsl(220 60% 18% / 0.4), transparent 70%),
		var(--theme-noise-texture);
	background-attachment: fixed, fixed, fixed, fixed;
	background-repeat: no-repeat, no-repeat, no-repeat, repeat;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

/* Lovable surface bands — mirrors src/index.css .bg-background / .bg-butter / etc. */
.theme-surface-bg,
.theme-surface-background {
	position: relative;
	background-color: var(--color-background);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.theme-surface-butter {
	position: relative;
	background-color: var(--color-butter);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.theme-surface-card {
	position: relative;
	background-color: var(--color-card);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.theme-surface-secondary {
	position: relative;
	background-color: var(--color-secondary);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.theme-surface-muted {
	position: relative;
	background-color: var(--color-muted);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

/* Heading font-weight / size reset (Tailwind-preflight parity, Section 2.2) */
h1, h2, h3, h4, h5, h6, .font-display {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.02em;
	margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; }

/* Global cover-image exclusion list (Section 15.1 completeness rule) */
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.site-footer__logo):not(.services-section__img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-xs { width: 16px; height: 16px; }
.icon-3xs { width: 12px; height: 12px; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 48px; height: 48px; color: var(--color-muted-foreground); }

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.site-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 6.5rem 1.5rem 4rem;
}
body.theme-no-hero .site-container { padding-top: calc(var(--site-chrome-height, var(--header-height)) + 2rem); }

.section-padding {
	padding-top: 3rem;
	padding-bottom: 5rem;
}
@media (min-width: 768px) {
	.section-padding {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.section-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-body);
	margin-bottom: 0.75rem;
}

.section-heading { font-weight: 600; }

.section-heading-wrap { margin-bottom: 2.5rem; }
.section-heading-wrap--center { text-align: center; }

.section-cta-center { text-align: center; margin-top: 3.5rem; }

.theme-link-underline {
	position: relative;
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-family: var(--font-body);
}
.theme-link-underline::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.theme-link-underline:hover::after { transform: scaleX(1); }

.text-gradient-blue {
	background: linear-gradient(90deg, hsl(212 100% 65%), hsl(200 100% 75%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	font-family: var(--font-display);
	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, transform 0.15s ease;
	cursor: pointer;
}
.theme-btn:active { transform: scale(0.97); }
.theme-btn-primary { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-primary:hover { opacity: 0.9; }
.single-product .theme-single-add-to-cart.theme-btn-primary {
	background-color: var(--color-foreground);
	color: var(--color-background);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.25em;
	border-radius: 999px !important;
	min-height: auto;
	padding: 1rem;
}
.single-product .theme-single-add-to-cart.theme-btn-primary:hover:not(:disabled) { opacity: 0.9; }
.single-product .theme-single-add-to-cart.theme-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.theme-btn-outline { background: transparent; border: 1px solid var(--color-border); color: var(--color-foreground); }
.theme-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button { text-transform: var(--btn-text-transform); }

/* --------------------------------------------------------------------
 * Scroll-reveal animation system (Section 2.1)
 * ------------------------------------------------------------------ */
.reveal-item, .scale-in-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
	transition-delay: var(--reveal-delay, 0s);
}
.reveal-item.is-visible, .scale-in-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-fade { opacity: 0; animation: none; }
.reveal-fade.is-visible { animation: theme-fade-in var(--duration, 0.7s) var(--transition-smooth) var(--delay, 0s) forwards; }

.reveal-slide-up { opacity: 0; transform: translateY(22px); }
.reveal-slide-up.is-visible { animation: theme-slide-up var(--duration, 0.7s) var(--transition-smooth) var(--delay, 0s) forwards; }

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .scale-in-item, .reveal-fade, .reveal-slide-up {
		transition: none !important;
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	.site-header__mobile-panel,
	.site-header__mobile-panel.is-open {
		animation: none !important;
	}
}

/* Customizer preview fallback — never hide content in the editor (Section 2.1.5) */
body.is-customizer .reveal-item,
body.is-customizer .scale-in-item,
body.is-customizer .reveal-fade,
body.is-customizer .reveal-slide-up {
	opacity: 1 !important;
	transform: none !important;
	animation: none !important;
}

.theme-product-card-wrap[data-grid-extra] { display: none; }

/* --------------------------------------------------------------------
 * Clickable elements — pointer cursor on all interactive targets
 * ------------------------------------------------------------------ */
[role="button"],
.theme-cat-filter,
.faq-item__question,
.theme-attribute-pill,
.theme-variation-swatch,
.theme-accordion__trigger,
.theme-product-thumb,
.stage-tile,
.theme-product-card__image-link,
.theme-product-card__title a,
.theme-product-card__quick-add,
.theme-announcement-bar__dismiss,
.site-header__icon-btn,
.theme-cart-drawer__close,
.theme-cart-drawer__qty-btn,
.theme-cart-drawer__remove,
.theme-modal__close,
.theme-qty-minus,
.theme-qty-plus,
.shop-section__price-toggle {
	cursor: pointer;
}
button:disabled,
.theme-btn.disabled,
.theme-attribute-pill:disabled,
.theme-variation-swatch:disabled {
	cursor: not-allowed;
}

/* --------------------------------------------------------------------
 * WordPress admin bar + fixed header positioning
 * ------------------------------------------------------------------ */
html {
	--vyron-admin-bar-height: 0px;
}
body.admin-bar {
	--vyron-admin-bar-height: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--vyron-admin-bar-height: 46px;
	}
}
@media screen and (max-width: 600px) {
	#wpadminbar {
		position: fixed !important;
	}
}

/* --------------------------------------------------------------------
 * Fixed site chrome (announcement bar + header)
 * ------------------------------------------------------------------ */
.site-chrome {
	position: fixed;
	top: var(--vyron-admin-bar-height, 0px);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 50;
	transition: top 0.15s ease;
}

/* --------------------------------------------------------------------
 * Announcement bar
 * ------------------------------------------------------------------ */
.theme-announcement-bar {
	position: relative;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	z-index: 1;
}
.theme-announcement-bar__inner { padding: 0.5rem 0; text-align: center; }
.theme-announcement-bar__text {
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0;
}
.theme-announcement-bar__dismiss {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.25rem;
	opacity: 0.7;
}
.theme-announcement-bar__dismiss:hover { opacity: 1; }

/* --------------------------------------------------------------------
 * Header (Section 22.7 — transparent on home / solid on inner pages)
 * ------------------------------------------------------------------ */
.site-header {
	position: relative;
	background-color: var(--color-background);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: var(--color-border);
}
.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	position: relative;
}
.site-header__brand { display: flex; align-items: center; gap: 0.75rem; }
.site-header__brand-name { font-family: var(--font-display); font-weight: 600; }
.site-logo-img { height: var(--logo-height, 48px) !important; width: auto !important; display: block; }
.site-logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: var(--logo-height, 48px); display: block; }

.site-header__links {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	align-items: center;
	gap: 2rem;
}
@media (min-width: 1024px) { .site-header__links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-list a, .theme-anchor-link {
	font-size: 11px;
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s ease;
}
.theme-nav-list a:hover, .theme-anchor-link:hover { color: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .site-header__actions { gap: 0.75rem; } }
.site-header__icon-btn {
	position: relative;
	padding: 0.5rem;
	transition: opacity 0.2s ease;
}
.site-header__icon-btn:hover { opacity: 0.6; }
.site-header__search-btn { display: none; }
@media (min-width: 768px) { .site-header__search-btn { display: inline-flex; } }
.site-header__menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }
.icon-menu-close { display: none; }
.site-header__menu-toggle.is-open .icon-menu-open { display: none; }
.site-header__menu-toggle.is-open .icon-menu-close { display: block; }

.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-panel {
	display: none;
	border-top: 1px solid var(--color-border);
	padding: 1rem 0;
}
.site-header__mobile-panel.is-open {
	display: block;
	animation: mobile-menu-fade-in 0.6s var(--transition-smooth) forwards;
}
@keyframes mobile-menu-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (min-width: 1024px) {
	.site-header__mobile-panel { display: none !important; }
}
.theme-mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.theme-mobile-nav-list a,
.site-header__mobile-panel .theme-anchor-link {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 0.875rem;
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 0.5rem 0;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.theme-mobile-nav-list a:hover,
.site-header__mobile-panel .theme-anchor-link:hover { color: var(--color-primary); }

/* --------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------ */
.hero-section { position: relative; }
.hero-section__media { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-section__gradient-1 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, var(--color-background), color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 20%, transparent)); }
.hero-section__gradient-2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, var(--color-background), transparent, color-mix(in srgb, var(--color-background) 40%, transparent)); }
.hero-section__inner {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(var(--site-chrome-height, 0px));
}
.hero-section__content { max-width: 42rem; width: 100%; text-align: center; }
.hero-section__eyebrow {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
	color: var(--color-primary); font-weight: 500; margin-bottom: 1.5rem;
}
.hero-section__eyebrow-line { height: 1px; width: 2rem; background: var(--color-primary); }
.hero-section__heading {
	font-size: 3rem; line-height: 1.02; margin-bottom: 1.5rem; font-weight: 600;
}
@media (min-width: 768px) { .hero-section__heading { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-section__heading { font-size: 4.5rem; } }
.hero-section__paragraph {
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-inline: auto;
}
@media (min-width: 768px) { .hero-section__paragraph { font-size: 1.125rem; margin-bottom: 2.5rem; } }
.hero-section__ctas { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }
.hero-section__secondary-cta { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-foreground); }
.hero-section__secondary-cta:hover { color: var(--color-primary); }

/* --------------------------------------------------------------------
 * Shop by Stage tiles
 * ------------------------------------------------------------------ */
.stage-tiles-section__inner {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.stage-tiles-section__inner {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}
.stage-tiles-section .section-heading-wrap--center { margin-bottom: 2.5rem; }
.stage-tiles-section__heading { font-size: 1.875rem; text-align: center; }
@media (min-width: 768px) { .stage-tiles-section__heading { font-size: 2.25rem; } }
.stage-tiles-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .stage-tiles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.stage-tile {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	text-align: left;
	padding: 0;
}
.stage-tile__img {
	transition: transform 0.7s var(--transition-smooth);
	transform-origin: center center;
}
.stage-tile:hover .stage-tile__img { transform: scale(1.05); }
.stage-tile__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(
		to top,
		color-mix(in srgb, var(--color-background) 95%, transparent),
		color-mix(in srgb, var(--color-background) 50%, transparent),
		color-mix(in srgb, var(--color-background) 10%, transparent)
	);
	transition: background 0.5s var(--transition-smooth);
}
.stage-tile:hover .stage-tile__scrim {
	background: linear-gradient(
		to top,
		var(--color-background),
		color-mix(in srgb, var(--color-background) 50%, transparent),
		color-mix(in srgb, var(--color-background) 10%, transparent)
	);
}
.stage-tile__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	color: var(--color-foreground);
	z-index: 1;
}
@media (min-width: 768px) { .stage-tile__content { padding: 1.75rem; } }
.stage-tile__text { text-align: left; color: var(--color-foreground); }
.stage-tile__tagline { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; }
.stage-tile__tagline--primary { color: var(--color-primary); }
.stage-tile__tagline--marigold { color: var(--color-marigold); }
.stage-tile__tagline--teal { color: var(--color-teal); }
.stage-tile__tagline-line { height: 1px; width: 1.5rem; background: currentColor; flex-shrink: 0; }
.stage-tile__label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .stage-tile__label { font-size: 1.875rem; } }
.stage-tile__cta { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }

/* --------------------------------------------------------------------
 * Featured formulas
 * ------------------------------------------------------------------ */
.featured-section__inner {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.featured-section__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.featured-section .section-heading-wrap--center { margin-bottom: 3.5rem; }
.featured-section__heading {
	font-size: 1.875rem;
	line-height: 1.25;
}
@media (min-width: 768px) {
	.featured-section__heading { font-size: 3rem; }
}

/* --------------------------------------------------------------------
 * Product cards + grids (shared across all contexts, Section 31.13)
 * ------------------------------------------------------------------ */
.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid--shop { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.theme-product-grid--3col { grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--3col { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; flex: 1; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 3 / 4;
	background: var(--color-secondary);
	overflow: hidden;
	margin-bottom: 1.25rem;
	transition: transform 0.3s ease;
}
.theme-product-card__image-link {
	position: absolute;
	inset: 0;
	display: block;
	z-index: 1;
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-4px); }
.theme-product-card:hover .theme-product-card-img { transform: scale(1.04); }
.theme-product-card-img { transition: transform 0.7s var(--transition-smooth); }
.theme-product-card-img.is-faded { opacity: 0.6; }

.theme-product-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	padding: 0.25rem 0.75rem; font-size: 11px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.18em; border-radius: 999px;
	pointer-events: none;
}
.theme-product-badge--sold-out { background: var(--color-foreground); color: var(--color-background); }
.theme-product-badge--coming-soon { background: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__quick-add {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 4;
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground);
	box-shadow: var(--shadow-soft);
	border: none;
	padding: 0;
	opacity: 1;
	transition: opacity 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
	.theme-product-card__quick-add { opacity: 0; }
	.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
}
.theme-product-card__quick-add:hover { transform: scale(1.08); }

.theme-product-card__info { text-align: center; margin-top: 1rem; }
.theme-product-card__title {
	font-size: 0.875rem; font-family: var(--font-body); font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.15em; line-height: 1.4;
	margin-bottom: 0.5rem; transition: color 0.3s ease;
}
.theme-product-card__title a { color: inherit; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1rem; } }
.theme-product-card:hover .theme-product-card__title,
.theme-product-card:hover .theme-product-card__title a { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; font-weight: 400; }
@media (min-width: 768px) { .theme-product-card__price { font-size: 1.125rem; } }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; }

/* --------------------------------------------------------------------
 * About
 * ------------------------------------------------------------------ */
.about-section__inner { padding: 4rem 1.5rem; }
@media (min-width: 768px) { .about-section__inner { padding: 6rem 3.5rem; } }
@media (min-width: 1024px) { .about-section__inner { padding: 6rem 5rem; } }
.about-section__content { max-width: 56rem; margin: 0 auto; text-align: center; }
.about-section__heading { font-size: 1.875rem; line-height: 1.25; margin-bottom: 2rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 2.25rem; } }
.about-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }
.about-section__button { margin-top: 1.5rem; color: var(--color-foreground); }

/* --------------------------------------------------------------------
 * Founder
 * ------------------------------------------------------------------ */
.founder-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .founder-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.founder-section__media { position: relative; min-height: 380px; }
@media (min-width: 768px) { .founder-section__media { min-height: 520px; } }
@media (min-width: 1024px) { .founder-section__media { min-height: 620px; } }
.founder-section__photo { object-position: top; }
.founder-section__content-wrap { display: flex; align-items: center; padding: 3rem 1.5rem; }
@media (min-width: 768px) { .founder-section__content-wrap { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .founder-section__content-wrap { padding: 5rem 5rem; } }
@media (min-width: 1280px) { .founder-section__content-wrap { padding: 5rem 6rem; } }
.founder-section__content { max-width: 36rem; }
.founder-section__heading { font-size: 2.25rem; line-height: 1.15; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .founder-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .founder-section__heading { font-size: 3.75rem; } }
.founder-section__quote {
	font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent); margin-bottom: 2rem;
}
@media (min-width: 768px) { .founder-section__quote { font-size: 1.5rem; } }
.founder-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------
 * Services / Performance System
 * Lovable applies bg-butter + surface gradients on the section AND each
 * text column independently (Index.tsx services map).
 * ------------------------------------------------------------------ */
.services-section__intro,
.services-section__content {
	position: relative;
	background-color: var(--color-butter);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.services-section__intro { padding: 4rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .services-section__intro { padding: 6rem 3.5rem; } }
.services-section__heading { font-size: 2.25rem; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 768px) { .services-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 4.5rem; } }
.services-section__row { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .services-section__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.services-section__row.is-reversed .services-section__media { order: 2; }
.services-section__row.is-reversed .services-section__content { order: 1; }
@media (max-width: 1023px) {
	.services-section__row.is-reversed .services-section__media,
	.services-section__row.is-reversed .services-section__content { order: initial; }
}
.services-section__media { position: relative; min-height: 300px; overflow: hidden; }
@media (min-width: 768px) { .services-section__media { min-height: 400px; } }
@media (min-width: 1024px) { .services-section__media { min-height: 460px; } }
.services-section__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.9s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.services-section__img.is-object-top { object-position: top; }
.services-section__media:hover .services-section__img { transform: scale(1.03); }
.services-section__numeral {
	position: absolute; top: 1.25rem; left: 1.25rem;
	font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.3em;
	padding: 0.25rem 0.75rem; background: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(4px); color: var(--color-primary);
}
.services-section__content { display: flex; align-items: center; padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .services-section__content { padding: 3.5rem 3rem; } }
@media (min-width: 1024px) { .services-section__content { padding: 4rem 4rem; } }
@media (min-width: 1280px) { .services-section__content { padding: 4rem 5rem; } }
.services-section__content-inner { max-width: 36rem; }
.services-section__icon-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.services-section__icon-badge {
	display: flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-primary);
}
.services-section__kicker { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-primary); }
.services-section__title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .services-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__title { font-size: 3.75rem; } }
.services-section__description { font-size: 1rem; line-height: 1.7; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .services-section__description { font-size: 1.125rem; } }

/* --------------------------------------------------------------------
 * Waitlist
 * ------------------------------------------------------------------ */
.waitlist-section { position: relative; overflow: hidden; }
.waitlist-section__bg { opacity: 0.35; }
.waitlist-section__gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 50%, transparent)); }
.waitlist-section__inner { position: relative; padding: 4rem 0; }
@media (min-width: 768px) { .waitlist-section__inner { padding: 6rem 0; } }
.waitlist-section__card {
	max-width: 48rem; margin: 0 auto; text-align: center;
	background: color-mix(in srgb, var(--color-card) 90%, transparent);
	backdrop-filter: blur(4px); box-shadow: var(--shadow-elevated);
	border: 1px solid var(--color-border);
	padding: 2rem 2rem 3rem;
}
@media (min-width: 768px) { .waitlist-section__card { padding: 4rem 3.5rem; } }
.waitlist-section__header { margin-bottom: 2.5rem; }
.waitlist-section__heading { font-size: 1.875rem; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: var(--color-foreground); }
@media (min-width: 768px) { .waitlist-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .waitlist-section__heading { font-size: 3rem; } }
.waitlist-section__heading-italic { display: block; font-style: italic; font-weight: 400; margin-top: 0.5rem; }
.waitlist-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 36rem; margin: 0 auto; }
.waitlist-section__form { max-width: 32rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .waitlist-section__form { flex-direction: row; } }
.waitlist-section__field-wrap { flex-grow: 1; position: relative; }
.waitlist-section__input {
	width: 100%; padding: 1rem; background: color-mix(in srgb, var(--color-background) 10%, transparent);
	border: 1px solid var(--color-border); color: var(--color-foreground); font-size: 0.875rem;
}
.waitlist-section__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.waitlist-section__input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 1px var(--color-primary); }
.waitlist-section__submit { white-space: nowrap; }
.waitlist-section__submit:hover { box-shadow: 0 0 30px color-mix(in srgb, var(--color-primary) 40%, transparent); }
.waitlist-section__success { text-align: center; margin-top: 2rem; color: var(--color-primary); font-size: 0.875rem; letter-spacing: 0.02em; }

/* --------------------------------------------------------------------
 * Made For
 * ------------------------------------------------------------------ */
.made-for-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 1024px) { .made-for-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.made-for-section__media { position: relative; min-height: 420px; order: 2; }
@media (min-width: 768px) { .made-for-section__media { min-height: 560px; } }
@media (min-width: 1024px) { .made-for-section__media { min-height: 640px; order: 2; } }
.made-for-section__overlay-img {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 2;
	width: 8rem;
	aspect-ratio: 3 / 4;
	height: auto;
	object-fit: cover;
	box-shadow: var(--shadow-elevated);
	border: 4px solid var(--color-background);
}
@media (min-width: 768px) { .made-for-section__overlay-img { width: 11rem; } }
@media (min-width: 1024px) { .made-for-section__overlay-img { width: 13rem; } }
.made-for-section__content-wrap { display: flex; align-items: center; padding: 3rem 1.5rem; order: 1; }
@media (min-width: 768px) { .made-for-section__content-wrap { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .made-for-section__content-wrap { padding: 5rem 5rem; order: 1; } }
@media (min-width: 1280px) { .made-for-section__content-wrap { padding: 5rem 6rem; } }
.made-for-section__content { max-width: 36rem; }
.made-for-section__heading { font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .made-for-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .made-for-section__heading { font-size: 3.75rem; } }
.made-for-section__heading-italic { display: block; font-style: italic; font-weight: 400; color: var(--color-primary); }
.made-for-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 1.5rem; }
.made-for-section__paragraph--italic { font-style: italic; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 2.5rem; }

/* --------------------------------------------------------------------
 * Shop section
 * ------------------------------------------------------------------ */
.shop-section__intro { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
.shop-section__search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-section__search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-section__search-input {
	width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent;
	border: none; border-bottom: 1px solid var(--color-border); color: var(--color-foreground); font-size: 0.9rem;
	border-radius: 0;
}
.shop-section__search-input:focus { outline: none; border-bottom-color: var(--color-primary); }
.shop-section__categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.theme-cat-filter {
	padding: 0.5rem 1.25rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground);
	transition: all 0.3s ease;
}
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-section__price-toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-section__price-toggle {
	display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground);
	transition: color 0.3s ease;
}
.shop-section__price-toggle:hover { color: var(--color-primary); }
.shop-section__price-toggle .icon { transition: transform 0.3s ease; }
.shop-section__price-toggle.is-open .icon { transform: rotate(180deg); }
.shop-section__price-toggle-value { text-transform: none; letter-spacing: normal; opacity: 0.7; }
.shop-section__price-panel {
	width: 100%; max-width: 22rem; overflow: hidden; max-height: 0; opacity: 0;
	transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}
.shop-section__price-panel.is-open { max-height: 8rem; opacity: 1; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin: 0.5rem 0; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none; pointer-events: auto;
	width: 18px; height: 18px; border-radius: 50%;
	background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer;
}
.range-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }

/* --------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------ */
.faq-section__intro { max-width: 42rem; margin: 0 auto 3.5rem; text-align: center; }
.faq-section__heading { font-size: 1.875rem; line-height: 1.25; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__list { max-width: 48rem; margin: 0 auto; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0; text-align: left;
}
.faq-item__question-text { font-family: var(--font-display); font-size: 1rem; font-weight: 500; transition: color 0.3s ease; }
@media (min-width: 768px) { .faq-item__question-text { font-size: 1.125rem; } }
.faq-item__question:hover .faq-item__question-text { color: var(--color-primary); }
.faq-item__icon { color: var(--color-primary); transition: transform 0.3s ease; }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { overflow: hidden; }
.faq-item__answer p { padding: 0 2.5rem 1.5rem 0; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; font-size: 0.9rem; }
@media (min-width: 768px) { .faq-item__answer p { font-size: 1rem; } }

/* --------------------------------------------------------------------
 * Final CTA
 * ------------------------------------------------------------------ */
.cta-section { position: relative; overflow: hidden; }
.cta-section__bg { opacity: 0.4; }
.cta-section__gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 50%, transparent)); }
.cta-section__inner { position: relative; padding: 5rem 0; }
@media (min-width: 768px) { .cta-section__inner { padding: 7rem 0; } }
.cta-section__card {
	max-width: 40rem; margin: 0 auto; text-align: center;
	background: color-mix(in srgb, var(--color-card) 90%, transparent);
	backdrop-filter: blur(4px); box-shadow: var(--shadow-elevated); border: 1px solid var(--color-border);
	padding: 2rem 2rem 3rem;
}
@media (min-width: 768px) { .cta-section__card { padding: 4rem 3.5rem; } }
.cta-section__heading { font-size: 1.875rem; line-height: 1.3; margin-bottom: 1.5rem; color: var(--color-foreground); }
@media (min-width: 768px) { .cta-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-section__heading { font-size: 3rem; } }
.cta-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 28rem; margin: 0 auto 2.5rem; }
.cta-section__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; }
@media (min-width: 640px) { .cta-section__actions { flex-direction: row; } }

/* --------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--color-border); }
.site-footer__inner { padding-block: 3rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 3.5rem; } }
.site-footer__top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	width: 100%;
}
@media (min-width: 768px) {
	.site-footer__top {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
.site-footer__brand { display: flex; align-items: center; flex-shrink: 0; }
.site-footer__logo {
	height: 3rem !important;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}
.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 1;
	min-width: 0;
}
@media (min-width: 768px) { .site-footer__nav { gap: 1.75rem; } }
.site-footer__nav > .theme-footer-nav-list { display: contents; }
.theme-footer-nav-list { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
@media (min-width: 768px) { .theme-footer-nav-list { gap: 1.75rem; } }
.theme-footer-nav-list a,
.site-footer__nav .theme-anchor-link {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	transition: color 0.3s ease;
	white-space: nowrap;
}
.theme-footer-nav-list a:hover,
.site-footer__nav .theme-anchor-link:hover { color: var(--color-primary); }
.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	flex-shrink: 0;
}
@media (min-width: 640px) { .site-footer__contact { flex-direction: row; align-items: center; gap: 1.25rem; } }
.site-footer__contact-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	transition: color 0.3s ease;
	white-space: nowrap;
}
.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__contact-link .icon { width: 0.875rem; height: 0.875rem; }
.site-footer__social { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.site-footer__social-link { display: flex; color: var(--color-muted-foreground); transition: color 0.3s ease; }
.site-footer__social-link:hover { color: var(--color-primary); }
.site-footer__social-link .icon { width: 1rem; height: 1rem; }
.site-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__tagline,
.site-footer__copyright {
	font-family: var(--font-body);
	font-size: 12px;
	color: var(--color-muted-foreground);
	margin: 0;
}
.site-footer__tagline { letter-spacing: 0.2em; text-transform: uppercase; }
.site-footer__copyright { letter-spacing: 0.02em; }

/* --------------------------------------------------------------------
 * Contact modal (Section 9)
 * ------------------------------------------------------------------ */
.theme-modal-overlay {
	position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.7);
	display: flex; align-items: center; justify-content: center; padding: 1.5rem;
	opacity: 0; transition: opacity 0.2s ease;
}
.theme-modal-overlay[hidden] { display: none; }
.theme-modal-overlay.is-open { opacity: 1; }
.theme-modal {
	position: relative; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border: 1px solid var(--color-border);
	padding: 1.5rem; box-shadow: var(--shadow-elevated);
	transform: scale(0.95); transition: transform 0.2s ease;
}
.theme-modal-overlay.is-open .theme-modal { transform: scale(1); }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; opacity: 0.7; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__title { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.theme-modal__description { color: var(--color-muted-foreground); font-size: 0.9rem; margin-bottom: 1.25rem; }
.theme-modal__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-modal__meta-link { display: flex; align-items: center; gap: 0.5rem; }
.theme-modal__meta-link:hover { color: var(--color-primary); }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success[hidden] { display: none; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.theme-modal__success-heading { font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.theme-modal__success-text { color: var(--color-muted-foreground); font-size: 0.875rem; }
.theme-form-row { display: grid; gap: 1rem; }
.theme-form-row--2col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-form-row--2col { grid-template-columns: 1fr 1fr; } }
.theme-form-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.theme-form-field label { font-size: 0.875rem; font-weight: 500; }
.theme-form-field input, .theme-form-field textarea {
	padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	color: var(--color-foreground); border-radius: var(--radius); font-size: 1rem; resize: none;
	transition: box-shadow 0.3s ease;
}
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-error { color: var(--color-destructive); font-size: 0.85rem; margin-top: -0.5rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------
 * Cart drawer + overlay (Section 12)
 * ------------------------------------------------------------------ */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 95; background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background-color: var(--color-background);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
	z-index: 96; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.7; }
.theme-cart-drawer__close:hover { opacity: 1; }
.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__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { position: relative; width: 5rem; height: 6rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-price, .theme-cart-drawer__item-meta { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__item-meta-list { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.5rem; }
.theme-cart-drawer__item-meta { display: flex; align-items: baseline; gap: 0.375rem; font-size: 0.8125rem; color: var(--color-muted-foreground); margin-top: 0; line-height: 1.4; }
.theme-cart-drawer__item-meta-label { font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.theme-cart-drawer__item-meta-value { color: var(--color-foreground); font-weight: 500; }
.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: var(--radius); transition: background 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal-value { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; }

/* Hide WooCommerce's own "View cart" link injected 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; }

/* --------------------------------------------------------------------
 * Add to cart button overrides (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 circular button overrides the global rule above */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	width: 40px !important;
	height: 40px !important;
	padding: var(--btn-icon-padding) !important;
	border-radius: 50% !important;
	letter-spacing: normal !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; }

/* --------------------------------------------------------------------
 * 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-error, .woocommerce-info {
	font-family: var(--font-body); border-radius: var(--radius); border: 1px solid var(--color-border);
	background: var(--color-secondary); color: var(--color-foreground); padding: 1rem 1.5rem; margin: 0 0 1.5rem;
	list-style: none;
}
.woocommerce-error { border-color: var(--color-destructive); }

/* --------------------------------------------------------------------
 * Single product page (Section 11.13)
 * ------------------------------------------------------------------ */
.theme-breadcrumb { padding: 1.5rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 6rem; padding-top: 1rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; align-items: start; } }

.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__mobile { display: block; }
.theme-product-gallery__desktop { display: none; }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: nowrap; max-width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.3s ease; }
.theme-product-thumb.is-active img, .theme-product-thumb:hover img { opacity: 1; }
.theme-product-thumb::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-foreground); opacity: 0; }
.theme-product-thumb.is-active::after { opacity: 1; }
.theme-product-main-image { position: relative; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; }
.theme-product-gallery__stack-item { position: relative; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; }
@media (min-width: 1024px) {
	.theme-product-gallery__mobile { display: none; }
	.theme-product-gallery__desktop { display: flex; flex-direction: column; gap: 1rem; }
}

.theme-product-info { position: static; }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; position: sticky; top: 7rem; align-self: start; } }
.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title { font-family: var(--font-body); font-weight: 600; }
.theme-product-info__title { font-size: 1.875rem; line-height: 1.1; margin-top: 0.75rem; margin-bottom: 1.25rem; font-family: var(--font-display); font-weight: 400; }
@media (min-width: 768px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 2.75rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--color-foreground); }
.theme-product-info__price .amount,
.theme-product-info__price ins .amount { color: var(--color-foreground); }
.theme-product-info__price del { color: var(--color-muted-foreground); opacity: 0.7; }
.theme-product-info__price .screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}
.theme-product-info__teaser { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }

.theme-attribute-block { margin-bottom: 1.5rem; }
.theme-attribute-block__label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-attribute-block__value { color: var(--color-foreground); letter-spacing: 0.05em; text-transform: none; font-weight: 500; }
.theme-attribute-block__value:empty { display: none; }
.theme-attribute-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attribute-pill {
	padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	border: 1px solid var(--color-border); border-radius: 999px; transition: all 0.2s ease;
	background: transparent; color: var(--color-foreground);
}
.theme-attribute-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-attribute-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-variation-swatch { min-width: 2.75rem; text-align: center; line-height: 1.2; }
.theme-variation-swatch.is-unavailable { opacity: 0.35; text-decoration: line-through; pointer-events: none; }
.theme-variation-swatch--color {
	width: 2.25rem; height: 2.25rem; min-width: 2.25rem; padding: 0; border-radius: 50%;
	background-color: var(--swatch-color, var(--color-secondary));
	position: relative; overflow: hidden;
}
.theme-variation-swatch--color .theme-variation-swatch__label {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.theme-variation-swatch--color:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-variation-swatch--color.is-selected {
	background-color: var(--swatch-color, var(--color-secondary));
	color: transparent;
	box-shadow: 0 0 0 1px var(--color-background), 0 0 0 2px var(--color-foreground);
}

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3rem; text-align: center; background: transparent; border: none; color: var(--color-foreground);
	font-size: 0.875rem; -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-single-add-to-cart { width: 100%; border-radius: 999px !important; margin-top: 0.5rem; }

.theme-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__trigger .icon { transition: transform 0.3s ease; }
.theme-accordion__trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.theme-accordion__panel { padding-bottom: 1.5rem; }
.theme-accordion__panel[hidden] { display: none; }
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; }
.woocommerce-product-details__short-description p { font-size: 15px; color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.theme-accordion__list { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-accordion__list li { display: flex; align-items: flex-start; font-size: 15px; color: var(--color-muted-foreground); }
.theme-accordion__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--color-foreground); margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0; }
.theme-accordion__panel p { font-size: 15px; color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 0.75rem; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-section__heading { text-align: center; margin-bottom: 3rem; }
.related-products-section__eyebrow { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; font-weight: 400; }
.related-products-section__title { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }

/* --------------------------------------------------------------------
 * Variable-product variations table (kept for future extensibility —
 * this catalog currently ships simple products only, 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; }
.theme-attr-select-hidden { display: none !important; }
.theme-variable-product-form .theme-attribute-block,
.theme-variable-product-form .theme-single-add-to-cart { flex: 1 1 100%; }
.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

/* --------------------------------------------------------------------
 * 404
 * ------------------------------------------------------------------ */
.theme-404__inner { padding: 8rem 0; text-align: center; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { opacity: 0.9; }

.page-title-wrap { margin-bottom: 2rem; }
.page-title { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }

/* --------------------------------------------------------------------
 * Checkout Block overrides (Section 13)
 * ------------------------------------------------------------------ */
body.woocommerce-checkout .site-main { padding-top: calc(var(--site-chrome-height, var(--header-height)) + 1rem); padding-bottom: 4rem; }
body.woocommerce-checkout .site-container { padding-top: 0; }
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wc-block-cart {
	font-family: var(--font-body);
	color: var(--color-foreground);
}
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,
	body.woocommerce-checkout .wc-block-checkout__main-and-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-cart .wc-block-cart__sidebar {
	background-color: var(--color-card);
	background-image: var(--theme-surface-gradients);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-foreground);
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 1px var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius);
	font-family: var(--font-display);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	min-height: var(--btn-height);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; border-radius: var(--radius); }

body.woocommerce-checkout h2, body.woocommerce-checkout h3 { font-family: var(--font-display); font-weight: 600; }

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-blocks-components-select__label,
body.woocommerce-checkout .wc-block-components-checkbox label,
body.woocommerce-checkout .wc-block-components-radio-control label {
	color: #000;
}

/* --------------------------------------------------------------------
 * Order-received / thank-you page (Section 22.8)
 * ------------------------------------------------------------------ */
body.theme-thankyou-page { overflow-x: hidden; }
.theme-thankyou { max-width: 40rem; margin: 0 auto; text-align: center; padding: 3rem 0 5rem; }
.theme-thankyou__icon { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.theme-thankyou__heading { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-thankyou__heading { font-size: 2.5rem; } }
.theme-thankyou__text { color: var(--color-muted-foreground); margin-bottom: 2rem; }
.theme-thankyou__button { display: inline-flex; }
.theme-thankyou__error { color: var(--color-destructive); margin-top: 1rem; }

body.theme-thankyou-page .woocommerce-order { margin-top: 3rem; text-align: left; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.5rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details table,
body.theme-thankyou-page .woocommerce-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); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
	font-style: normal;
	line-height: 1.7;
}

/* --------------------------------------------------------------------
 * Responsive utility
 * ------------------------------------------------------------------ */
.scroll-mt-offset { scroll-margin-top: calc(var(--site-chrome-height, var(--header-height, 80px)) + 1rem); }
