/* =========================================================================
   Bloomi Mochie — theme.css
   All visual styling for the theme lives here (Section 10 / 14).
   Color custom properties are also re-emitted live from the Customizer via
   wp_add_inline_style() (Section 22.9) — the values below are fallbacks.
   ========================================================================= */

:root {
	--color-background: #fefbfb;
	--color-foreground: #513442;
	--color-primary: #ea90ab;
	--color-button-text: #ffffff;
	--color-muted: #f9f0f3;
	--color-muted-foreground: #896c7a;
	--color-accent: #dbc8ef;
	--color-border: #f1dfe5;
	--color-destructive: #e25050;
	--color-blush: #f4b9ca;
	--color-cream: #fbf5e9;
	--color-lavender: #dbc6f1;
	--color-mint: #cdeae0;
	--color-sky: #cde7f4;
	--color-surface: #ffffff;

	--font-display: 'Baloo 2', 'Quicksand', cursive;
	--font-body: 'Quicksand', sans-serif;

	--radius: 1.5rem;
	--card-radius: 1.5rem;

	--shadow-soft: 0 8px 28px -10px rgba(234, 144, 171, 0.35);
	--shadow-elevated: 0 20px 50px -14px rgba(150, 90, 110, 0.28);

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--header-height: 80px;
	--logo-height: 64px;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
}

/* -------------------------------------------------------------------
   Base reset
   ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }

body {
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	font-style: normal;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: inherit;
	font-style: normal;
	letter-spacing: -0.01em;
	margin: 0;
}
.font-display { font-weight: inherit; font-size: inherit; }

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

img:not(.cover-img):not(.hero-media--image):not(.hero-bg-img):not(.theme-product-card__image):not(.about-image):not(.founder-image):not(.instagram-tile-img):not(.product-main-img-el):not(.theme-product-thumb-img):not(.newsletter-bg-img) {
	max-width: 100%;
	height: auto;
	display: block;
}

.cover-img, .hero-media--image, .hero-media--video, .hero-bg-img, .theme-product-card__image,
.instagram-tile-img, .product-main-img-el, .theme-product-thumb-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	display: block;
}

.theme-cart-item-img,
.theme-cart-item-image img,
.theme-product-thumb-main img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

button {
	font-family: inherit;
	cursor: pointer;
	background: none;
	border: none;
	color: inherit;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-left: 2rem; padding-right: 2rem; } }

.eyebrow {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--color-primary);
}

.section-heading { font-weight: 800; font-size: 2.25rem; line-height: 1.1; }
@media (min-width: 640px) { .section-heading { font-size: 3rem; } }

.section-intro .eyebrow { margin-bottom: 0.75rem; }
.section-intro .section-heading { margin-bottom: 1rem; }
.section-subtitle { color: var(--color-muted-foreground); }
.section-intro { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.section-intro--tight { margin-bottom: 2rem; }
.section-intro--wide { max-width: 48rem; margin-bottom: 3.5rem; }

/* -------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	height: var(--btn-height);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	white-space: nowrap;
	border: 1px solid transparent;
	transition: transform 0.3s cubic-bezier(0.34, 1.6, 0.5, 1), background-color 0.25s ease, color 0.25s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.96); transition-duration: 0.1s; }

.btn-primary {
	background: var(--color-primary);
	color: var(--color-button-text);
	border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-background); color: var(--color-primary); }

.btn-outline {
	background: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
}
.btn-outline:hover { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.btn-sm { height: 36px; padding: 0 1.25rem; font-size: 11px; }
.btn-lg { height: 48px; padding: 0 2.5rem; }

.btn-hero-primary, .btn-hero-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 1rem 2rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	width: 100%;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.6, 0.5, 1);
	border: 1px solid var(--color-background);
}
.btn-hero-primary:hover, .btn-hero-outline:hover { transform: translateY(-2px); }
.btn-hero-primary { background: var(--color-background); color: var(--color-foreground); }
.btn-hero-primary:hover { background: var(--color-foreground); color: var(--color-background); }
.btn-hero-outline { position: relative; background: transparent; color: var(--color-background); border-color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.btn-hero-outline:hover { background: var(--color-background); color: var(--color-foreground); }
.btn-hero-chevron { position: absolute; right: 1.25rem; }

/* -------------------------------------------------------------------
   Animations & reveal system (Section 2.1)
   ------------------------------------------------------------------- */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bounceSoft { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.06); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes wiggle { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-7deg); } 50% { transform: rotate(6deg); } 75% { transform: rotate(-4deg); } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 0.75rem)); } }

.animate-float { animation: floatY 6s ease-in-out infinite; }
.animate-bounce-soft { animation: bounceSoft 3.2s ease-in-out infinite; }
.animate-fade-in { animation: fadeIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) both; }
.animate-slide-up { animation: slideUp 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) both; }

.reveal {
	opacity: 0;
	transition-property: opacity, transform;
	transition-duration: 0.75s;
	transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal-up { transform: translateY(28px); }
.reveal-down { transform: translateY(-28px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-zoom { transform: scale(0.94); }
.reveal-fade { transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Customizer preview fallback (Section 2.1 / 32.2 check 12) — never leave
   reveal-hidden content invisible while editing live in the panel. */
body.is-customizer .reveal,
body.is-customizer .theme-product-card-wrap {
	opacity: 1 !important;
	transform: none !important;
}

body.is-customizer .marquee-track { animation: none; }
body.is-customizer .marquee {
	overflow-x: auto;
	-webkit-mask-image: none;
	mask-image: none;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* -------------------------------------------------------------------
   Header
   ------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--color-background);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid,
.site-header.is-scrolled,
.site-header.is-menu-open {
	border-bottom-color: color-mix(in srgb, var(--color-border) 70%, transparent);
	box-shadow: var(--shadow-soft);
}

.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; height: 5rem; }

.site-brand { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.site-logo-img {
	height: var(--logo-height) !important;
	width: var(--logo-height) !important;
	border-radius: 999px;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.site-brand:hover .site-logo-img { transform: scale(1.05) rotate(3deg); }
.site-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; line-height: var(--logo-height); display: block; }

.site-nav-links { display: none; }
@media (min-width: 1280px) { .site-nav-links { display: flex; align-items: center; gap: 0.25rem; } }
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-list > li { list-style: none; margin: 0; padding: 0; }
.theme-nav-link {
	position: relative;
	font-size: 13px;
	font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-radius: 999px;
	padding: 0.5rem 0.75rem;
	white-space: nowrap;
	transition: color 0.25s ease, background-color 0.25s ease;
}
.theme-nav-link:hover { color: var(--color-primary); background: var(--color-muted); }
.theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 4px;
	height: 2px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.underline-sweep { position: relative; }
.underline-sweep::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.underline-sweep:hover::after { transform: scaleX(1); transform-origin: left; }

.site-nav-actions { display: flex; align-items: center; gap: 0.375rem; flex-shrink: 0; }
.icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	transition: background-color 0.25s ease, opacity 0.25s ease;
}
.icon-btn:hover { background: var(--color-muted); }
.icon-btn--cart { background: var(--color-primary); color: var(--color-button-text); }
.icon-btn--cart:hover { background: var(--color-primary); opacity: 0.9; }
.theme-cart-count {
	position: absolute;
	top: -0.25rem;
	right: -0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 4px;
	font-size: 11px;
	font-weight: 700;
	background: var(--color-foreground);
	color: var(--color-background);
	border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle { display: inline-flex; }
@media (min-width: 1280px) { .mobile-menu-toggle { display: none; } }
.icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu { display: none; border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); padding-top: 1rem; padding-bottom: 1rem; }
.mobile-menu.is-open { display: block; }
.mobile-menu-grid { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; margin: 0; padding: 0; width: 100%; }
.mobile-menu-grid > li { list-style: none; margin: 0; padding: 0; display: block; width: 100%; }
.mobile-menu .theme-nav-list { flex-direction: column; align-items: stretch; width: 100%; }
.mobile-menu-grid .theme-nav-link {
	display: block;
	width: 100%;
	text-align: left;
	background: color-mix(in srgb, var(--color-muted) 60%, transparent);
	border-radius: 1rem;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
}
.mobile-menu-grid .theme-nav-link::after { display: none; }

/* -------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
body.theme-no-hero .site-main { padding-top: var(--header-height); }

.hero-section { background: var(--color-background); }
.hero-media-wrap { position: relative; width: 100%; min-height: 100vh; overflow: hidden; }
.hero-media--mobile-only { display: block; }
@media (min-width: 1024px) { .hero-media--mobile-only { display: none; } }
.hero-media--video { display: none; }
@media (min-width: 1024px) {
	.hero-media--video {
		display: block;
		position: absolute;
		inset: 0;
		width: 100% !important;
		height: 100% !important;
		max-width: none;
		object-fit: cover;
		pointer-events: none;
	}
}

.hero-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 45%, transparent); pointer-events: none; }
.hero-overlay-gradient { position: absolute; left: 0; right: 0; bottom: 0; height: 33%; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 55%, transparent), transparent); pointer-events: none; }

.hero-deco { position: absolute; color: var(--color-cream); }
.hero-deco--star { top: 14%; left: 8%; display: none; animation: floatY 6s ease-in-out infinite; fill: color-mix(in srgb, var(--color-cream) 70%, transparent); }
@media (min-width: 768px) { .hero-deco--star { display: block; } }
.hero-deco--sparkles { top: 22%; right: 10%; color: var(--color-blush); animation: bounceSoft 3.2s ease-in-out infinite; }
.hero-deco--heart { bottom: 24%; right: 8%; display: none; color: var(--color-blush); fill: color-mix(in srgb, var(--color-blush) 70%, transparent); animation: floatY 6s ease-in-out infinite; animation-delay: 1.5s; }
@media (min-width: 768px) { .hero-deco--heart { display: block; } }
.hero-deco--gift { bottom: 18%; left: 6%; color: var(--color-lavender); animation: bounceSoft 3.2s ease-in-out infinite; animation-delay: 0.5s; }

.hero-content-wrap {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
@media (min-width: 640px) { .hero-content-wrap { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .hero-content-wrap { padding-left: 2rem; padding-right: 2rem; } }
.hero-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 64rem; padding: 6rem 0.5rem; }
.hero-eyebrow { display: block; color: color-mix(in srgb, var(--color-background) 85%, transparent); margin-bottom: 1.5rem; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.2em; }
.hero-heading { font-weight: 800; line-height: 0.9; letter-spacing: -0.02em; font-size: clamp(2.75rem, 9vw, 7rem); filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35)); }
.hero-heading-line1 { color: var(--color-background); }
.hero-heading-line2 { color: var(--color-blush); }
.hero-subtitle { margin-top: 2rem; max-width: 42rem; color: color-mix(in srgb, var(--color-background) 90%, transparent); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-actions { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 20rem; width: 100%; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .hero-actions { grid-template-columns: 1fr 1fr; max-width: 28rem; } }

/* -------------------------------------------------------------------
   Trust bar / stats
   ------------------------------------------------------------------- */
.trust-bar { background: color-mix(in srgb, var(--color-primary) 10%, transparent); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-bar-grid { padding-top: 1.5rem; padding-bottom: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 1024px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-item > div { min-width: 0; }
.trust-icon { color: var(--color-primary); flex-shrink: 0; transition: transform 0.3s ease; }
.trust-item:hover .trust-icon { transform: scale(1.1) rotate(-6deg); }
.trust-label { font-weight: 700; font-size: 0.875rem; line-height: 1.2; margin: 0; }
.trust-sub { font-size: 0.75rem; color: var(--color-muted-foreground); margin: 0; }

.stats-section { padding: 4rem 0; background: var(--color-background); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--color-surface); border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); box-shadow: var(--shadow-soft); padding: 1.5rem; transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.5, 1), box-shadow 0.35s ease; }
.stat-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-elevated); }
.stat-value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--color-primary); margin: 0; }
@media (min-width: 640px) { .stat-value { font-size: 3rem; } }
.stat-label { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

/* -------------------------------------------------------------------
   Collections
   ------------------------------------------------------------------- */
.collections-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .collections-grid { grid-template-columns: repeat(5, 1fr); } }
.collection-tile {
	border-radius: 1.5rem;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	transition: transform 0.4s cubic-bezier(0.34, 1.6, 0.5, 1), box-shadow 0.4s ease;
}
.collection-tile:hover { transform: translateY(-6px) rotate(-1.5deg) scale(1.03); box-shadow: var(--shadow-soft); }
.collection-tile--blush { background: color-mix(in srgb, var(--color-blush) 60%, transparent); }
.collection-tile--cream { background: var(--color-cream); }
.collection-tile--mint { background: color-mix(in srgb, var(--color-mint) 70%, transparent); }
.collection-tile--lavender { background: color-mix(in srgb, var(--color-lavender) 70%, transparent); }
.collection-tile--sky { background: color-mix(in srgb, var(--color-sky) 70%, transparent); }
.collection-emoji { display: block; font-size: 2.25rem; margin-bottom: 0.5rem; transition: transform 0.5s ease; }
.collection-tile:hover .collection-emoji { transform: scale(1.25) rotate(-6deg); }
.collection-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

/* -------------------------------------------------------------------
   Shop
   ------------------------------------------------------------------- */
.shop-section { padding: 5rem 0; background: color-mix(in srgb, var(--color-cream) 50%, transparent); scroll-margin-top: 6rem; }
.shop-heading { font-size: 2.25rem; }
@media (min-width: 640px) { .shop-heading { font-size: 3rem; } }
.shop-controls { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; justify-content: space-between; margin-bottom: 2rem; }
@media (min-width: 640px) { .shop-controls { flex-direction: row; align-items: center; } }
.shop-search { position: relative; width: 100%; }
@media (min-width: 640px) { .shop-search { max-width: 20rem; } }
.shop-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem; }
.shop-search input:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.shop-category-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cat-filter-btn { padding: 0.625rem 1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 700; border: 1px solid var(--color-border); background: var(--color-background); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease; }
.cat-filter-btn:hover { border-color: var(--color-primary); }
.cat-filter-btn.is-active { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; }
.theme-product-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--color-surface);
	border-radius: 1.5rem;
	border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.5, 1), box-shadow 0.35s ease;
}
.theme-product-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-elevated); }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; background: var(--color-muted); overflow: hidden; }
.theme-product-card__image { transition: transform 0.7s ease-out; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.1) rotate(1deg); }
.theme-product-card__image-wrapper > .theme-card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}
.theme-product-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; z-index: 2; pointer-events: none; }
.badge { display: inline-block; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.15em; padding: 0.25rem 0.75rem; border-radius: 999px; }
.badge--new { background: var(--color-lavender); color: var(--color-foreground); }
.badge--best { background: var(--color-primary); color: var(--color-button-text); }
.badge--stock { background: var(--color-destructive); color: #fff; }

.theme-wishlist-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	transition: background-color 0.25s ease;
}
.theme-wishlist-btn:hover { background: var(--color-background); animation: wiggle 0.6s ease-in-out; }
.theme-wishlist-btn.is-active { color: var(--color-primary); }
.theme-wishlist-btn.is-active svg { fill: var(--color-primary); transform: scale(1.1); }

.theme-product-card__info { padding: 1rem; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 3; }
.theme-product-card__brand { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.2em; color: var(--color-muted-foreground); margin-bottom: 0.25rem; }
.theme-product-card__brand a { color: inherit; }
.theme-card-title-link { display: block; }
.theme-card-title-link .theme-product-card__title { display: inline-block; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; line-height: 1.25; transition: color 0.25s ease; }
.theme-card-title-link:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__footer { margin-top: auto; padding-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; min-width: 0; }
.theme-product-card__price { font-weight: 700; font-size: 1.125rem; min-width: 0; }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.375rem; }

.theme-card-add-btn {
	position: relative;
	z-index: 4;
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-button-text);
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: var(--font-body);
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	border: none;
	transition: opacity 0.2s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.6, 0.5, 1);
}
.theme-card-add-btn:hover {
	opacity: 0.9;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 18%, transparent), var(--shadow-soft);
	transform: none;
}
.theme-card-add-btn svg { transition: transform 0.3s ease; }
.theme-card-add-btn:hover svg { transform: rotate(90deg); }
.theme-card-add-btn--disabled { background: var(--color-muted); color: var(--color-muted-foreground); cursor: not-allowed; pointer-events: none; }

.shop-empty-message { text-align: center; color: var(--color-muted-foreground); padding: 4rem 0; }

/* -------------------------------------------------------------------
   Reviews marquee
   ------------------------------------------------------------------- */
.reviews-section { padding: 6rem 0; background: color-mix(in srgb, var(--color-cream) 50%, transparent); overflow: hidden; scroll-margin-top: 6rem; }
.reviews-heading { font-size: 3rem; }
@media (min-width: 640px) { .reviews-heading { font-size: 3.75rem; } }
.section-subtitle--lg { font-size: 1.125rem; margin-top: 1rem; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.marquee-track { display: flex; gap: 1.5rem; width: max-content; padding: 0.5rem 0.75rem; animation: marqueeScroll 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { overflow-x: auto; } }
.review-card { background: var(--color-surface); border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); box-shadow: var(--shadow-soft); padding: 2rem; display: flex; flex-direction: column; width: 320px; flex-shrink: 0; }
@media (min-width: 640px) { .review-card { width: 420px; } }
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: var(--color-primary); }
.review-text { font-size: 1rem; color: var(--color-muted-foreground); flex: 1; line-height: 1.7; }
@media (min-width: 640px) { .review-text { font-size: 1.125rem; } }
.review-name { font-weight: 700; margin-top: 1.25rem; }

/* -------------------------------------------------------------------
   About / Founder
   ------------------------------------------------------------------- */
.about-section, .founder-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.founder-section { background: color-mix(in srgb, var(--color-blush) 25%, transparent); }
.about-grid, .founder-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid, .founder-grid { grid-template-columns: 1fr 1fr; } }
.about-heading { font-size: 2.25rem; margin: 0.75rem 0 1.25rem; }
@media (min-width: 640px) { .about-heading { font-size: 3rem; } }
.founder-heading { font-size: 2.25rem; margin: 0.75rem 0 1.25rem; }
@media (min-width: 640px) { .founder-heading { font-size: 3rem; } }
.about-copy { color: var(--color-muted-foreground); display: flex; flex-direction: column; gap: 1rem; }
.about-copy-bold { font-weight: 600; color: var(--color-foreground); }
.about-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.about-image-wrap, .founder-image-wrap { border-radius: 2.5rem; overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); }
.about-image-wrap { order: 2; }
@media (min-width: 1024px) { .about-image-wrap { order: 0; } }
.founder-image-wrap { order: 1; }
@media (min-width: 1024px) { .founder-image-wrap { order: 0; } }
.about-image, .founder-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.about-image-wrap:hover .about-image, .founder-image-wrap:hover .founder-image { transform: scale(1.05); }

/* -------------------------------------------------------------------
   Blog
   ------------------------------------------------------------------- */
.blog-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.blog-card { background: var(--color-surface); border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); box-shadow: var(--shadow-soft); padding: 1.5rem; display: flex; flex-direction: column; transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.5, 1), box-shadow 0.35s ease; }
.blog-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-elevated); }
.blog-card--soon { cursor: default; pointer-events: none; }
.blog-card--soon:hover { transform: none; box-shadow: var(--shadow-soft); }
.blog-card--soon:hover .blog-card-title { color: inherit; }
.blog-card-tag { margin-bottom: 0.75rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.25s ease; }
.blog-card:hover .blog-card-title { color: var(--color-primary); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--color-muted-foreground); flex: 1; }
.blog-card-date { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 1rem; display: block; }

/* -------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; background: color-mix(in srgb, var(--color-cream) 50%, transparent); scroll-margin-top: 6rem; }
.faq-container { max-width: 48rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--color-surface); border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow 0.35s ease; }
.faq-item:hover { box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 18%, transparent), var(--shadow-soft); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; text-align: left; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); animation: fadeIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) both; }
.faq-answer[hidden] { display: none; }

/* -------------------------------------------------------------------
   Shipping
   ------------------------------------------------------------------- */
.shipping-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.shipping-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .shipping-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.shipping-card { background: var(--color-surface); border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); box-shadow: var(--shadow-soft); padding: 1.5rem; transition: transform 0.35s cubic-bezier(0.34, 1.6, 0.5, 1), box-shadow 0.35s ease; }
.shipping-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-elevated); }
.shipping-icon { display: block; color: var(--color-primary); margin-bottom: 1rem; transition: transform 0.3s ease; }
.shipping-icon svg { width: 1.75rem; height: 1.75rem; }
.shipping-card:hover .shipping-icon { transform: rotate(-12deg) scale(1.1); }
.shipping-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.shipping-card-body { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------
   Instagram
   ------------------------------------------------------------------- */
.instagram-section { padding: 5rem 0; background: color-mix(in srgb, var(--color-lavender) 25%, transparent); }
.instagram-heading { font-size: 2.25rem; margin: 0.75rem 0 1rem; }
@media (min-width: 640px) { .instagram-heading { font-size: 3rem; } }
.instagram-subtitle { max-width: 36rem; margin: 0 auto 2rem; color: var(--color-muted-foreground); }
.instagram-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .instagram-grid { grid-template-columns: repeat(5, 1fr); } }
.instagram-tile { position: relative; aspect-ratio: 1 / 1; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--color-border); display: block; }
.instagram-tile-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: transparent; color: var(--color-background); opacity: 0; transition: background-color 0.25s ease, opacity 0.25s ease; }
.instagram-tile:hover .instagram-tile-overlay { background: color-mix(in srgb, var(--color-foreground) 25%, transparent); opacity: 1; }
.instagram-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* -------------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------------- */
.newsletter-section {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	scroll-margin-top: 6rem;
	background-color: var(--color-muted);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.newsletter-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 60%, transparent); }
.newsletter-inner { position: relative; }
.newsletter-card { position: relative; padding: 2rem; text-align: center; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-card { padding: 3rem; } }
.newsletter-icon { color: var(--color-primary); margin: 0 auto 1rem; display: block; animation: bounceSoft 3.2s ease-in-out infinite; }
.newsletter-heading { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .newsletter-heading { font-size: 2.25rem; } }
.newsletter-subtitle { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.newsletter-success { font-weight: 700; color: var(--color-primary); display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; }
.newsletter-success[hidden] { display: none; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form[hidden] { display: none; }
.newsletter-form input { flex: 1; padding: 0.75rem 1.25rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem; }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.newsletter-embed { max-width: 28rem; margin: 0 auto 0.5rem; text-align: left; }
.newsletter-embed input, .newsletter-embed select, .newsletter-embed textarea {
	max-width: 100%;
}
.newsletter-note { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 1rem; }
.newsletter-note a { color: var(--color-primary); font-weight: 600; }
.newsletter-note a:hover { text-decoration: underline; }

/* -------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-cream) 60%, transparent); }
.footer-inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: inline-block; }
.footer-brand .site-logo-img { height: 5rem !important; width: 5rem !important; }
.footer-tagline { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 20rem; }
.footer-tagline-bold { display: block; margin-top: 0.5rem; font-weight: 600; color: var(--color-foreground); }
.footer-col-heading { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.theme-footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-footer-nav a { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.25s ease; }
.theme-footer-nav a:hover { color: var(--color-primary); }
.footer-social { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; color: var(--color-foreground); transition: background-color 0.25s ease, color 0.25s ease; }
.footer-social-btn--blush { background: color-mix(in srgb, var(--color-blush) 50%, transparent); }
.footer-social-btn--lavender { background: color-mix(in srgb, var(--color-lavender) 60%, transparent); }
.footer-social-btn--mint { background: color-mix(in srgb, var(--color-mint) 70%, transparent); }
.footer-social-btn:hover { background: var(--color-primary); color: var(--color-button-text); }
.footer-email { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.footer-email:hover { color: var(--color-primary); }
.footer-bottom { margin-top: 3rem; 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; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copyright { font-size: 0.75rem; color: var(--color-muted-foreground); text-align: center; }
@media (min-width: 640px) { .footer-copyright { text-align: left; } }
.footer-site-link { font-size: 0.75rem; color: var(--color-muted-foreground); }
.footer-site-link:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------
   Cart drawer & overlay (Section 12)
   ------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; animation: fadeIn 0.3s ease both; }

#theme-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	max-width: 28rem;
	background: var(--color-background);
	z-index: 91;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	border-top-left-radius: 1.5rem;
	border-bottom-left-radius: 1.5rem;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer-header h2 { font-size: 1.25rem; font-weight: 700; }
.theme-cart-drawer-close { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; }
.theme-cart-drawer-close:hover { background: var(--color-muted); }

.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer-empty svg { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer-empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-cart-drawer-items { flex: 1; overflow: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-image { width: 5rem; height: 6rem; background: var(--color-muted); overflow: hidden; flex-shrink: 0; border-radius: 1rem; }
.theme-cart-item-img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-name { font-size: 0.875rem; font-weight: 600; line-height: 1.3; }
.theme-cart-item-price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item-variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.375rem; border-radius: 999px; }
.theme-cart-qty-btn:hover { background: var(--color-muted); }
.theme-cart-qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; font-weight: 600; }
.theme-cart-remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); border-radius: 999px; padding: 0.25rem 0.5rem; }
.theme-cart-remove:hover { color: var(--color-primary); }

.theme-cart-drawer-footer { padding: 1.25rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-coupon-row { display: flex; gap: 0.5rem; }
.theme-coupon-input-wrap { position: relative; flex: 1; min-width: 0; }
.theme-coupon-input-wrap svg {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-muted-foreground);
	pointer-events: none;
}
.theme-coupon-input { width: 100%; padding: 0.625rem 0.75rem 0.625rem 2.5rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem; font-family: var(--font-body); }
.theme-coupon-message { font-size: 0.75rem; color: var(--color-destructive); margin-top: 0.375rem; min-height: 1em; }
.theme-coupon-message.is-success { color: var(--color-primary); }
.theme-coupon-applied { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--color-primary); margin-top: 0.375rem; }
.theme-coupon-applied button { font-size: 1rem; line-height: 1; }
.theme-cart-totals { font-size: 0.875rem; display: flex; flex-direction: column; gap: 0.25rem; }
.theme-cart-totals-row { display: flex; justify-content: space-between; }
.theme-cart-totals-row--discount { color: var(--color-primary); }
.theme-cart-totals-row--total { font-weight: 700; font-size: 1rem; }
.theme-cart-shipping-note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-checkout-btn { width: 100%; }
.theme-cart-empty-btn { width: 100%; }

/* -------------------------------------------------------------------
   Contact modal
   ------------------------------------------------------------------- */
.theme-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.contact-open .theme-modal-overlay { opacity: 1; pointer-events: auto; }
.theme-modal { position: fixed; inset: 0; z-index: 96; display: flex; align-items: center; justify-content: center; padding: 1.25rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.contact-open .theme-modal { opacity: 1; pointer-events: auto; }
.theme-modal-panel { position: relative; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; background: var(--color-background); border-radius: 1.5rem; box-shadow: var(--shadow-elevated); padding: 2rem; transform: scale(0.94) translateY(12px); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
body.contact-open .theme-modal-panel { transform: scale(1) translateY(0); }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; }
.theme-modal-close:hover { background: var(--color-muted); }
.theme-modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal-desc { color: var(--color-muted-foreground); font-size: 0.9rem; margin-bottom: 1.25rem; }
.theme-modal-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal-links a { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-modal-links a:hover { color: var(--color-primary); }
.theme-modal-success { text-align: center; padding: 2rem 0; animation: fadeIn 0.4s ease both; }
.theme-modal-success[hidden] { display: none; }
.theme-modal-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--color-primary); color: var(--color-button-text); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal-form[hidden] { display: none; }
.theme-form-row--split { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row--split { 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: 600; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 1rem;
	font-size: 1rem;
	resize: none;
}
.theme-form-field input:focus, .theme-form-field textarea:focus, .theme-form-field select: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; }
[data-contact-submit][disabled] { opacity: 0.6; cursor: wait; }

/* =========================================================================
   WooCommerce overrides (Section 14)
   ========================================================================= */

/* Notices scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message {
	display: none;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body);
	border-radius: 1rem;
	border-top: none;
	background: var(--color-muted);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
	list-style: none;
}
.woocommerce-error { background: color-mix(in srgb, var(--color-destructive) 12%, transparent); color: var(--color-destructive); }

/* Add-to-cart button style override (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button:not(.theme-card-add-btn),
a.single_add_to_cart_button,
a.add_to_cart_button:not(.theme-card-add-btn) {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:not(.theme-card-add-btn):hover {
	background-color: var(--color-background) !important;
	color: var(--color-primary) !important;
	border: 1px solid var(--color-primary) !important;
	opacity: 1 !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}

/* Card compact button — overrides global rules (scoped, placed after) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.6rem 1rem !important;
	border-radius: 999px !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; }

/* Hide "View cart" injected after AJAX add (Section 11.4.2) */
.woocommerce img.theme-product-card__image,
.woocommerce img.product-main-img-el,
.woocommerce img.theme-product-thumb-img,
.woocommerce img.theme-cart-item-img,
.theme-product-card__image,
.product-main-img-el,
.theme-product-thumb-img,
.theme-cart-item-img {
	height: 100% !important;
}
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* Variations table layout (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; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; position: relative; margin-bottom: 1rem; }
.single-product .variations select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.theme-variation-label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	padding: 0.625rem 1rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	background: var(--color-background);
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.theme-variation-pill:hover { border-color: var(--color-primary); }
.theme-variation-pill.is-active {
	background: var(--color-primary);
	color: var(--color-button-text);
	border-color: var(--color-primary);
}
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled {
	opacity: 0.5;
	pointer-events: none;
	cursor: not-allowed;
	transform: none;
}

/* -------------------------------------------------------------------
   Single product page
   ------------------------------------------------------------------- */
.single-product-main { padding: 7rem 0 5rem; }
.product-page-wrap {
	width: 100%;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
.back-to-shop { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.back-to-shop:hover { color: var(--color-primary); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; min-width: 0; }
@media (min-width: 768px) { .theme-product-layout { grid-template-columns: 1fr 1fr; } }
.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-thumb-main { position: relative; aspect-ratio: 1 / 1; border-radius: 1.5rem; overflow: hidden; background: var(--color-muted); border: 1px solid var(--color-border); }
.single-product .theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; max-width: 100%; }
.theme-product-thumb { position: relative; width: 4rem; height: 4rem; border-radius: 1rem; overflow: hidden; border: 2px solid var(--color-border); flex-shrink: 0; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb-img { width: 100%; height: 100%; }

.theme-product-brand { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.2em; color: var(--color-muted-foreground); margin-bottom: 0.25rem; }
.theme-product-title { font-family: var(--font-display); font-weight: 700; font-size: 1.875rem; line-height: 1.2; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-product-title { font-size: 2.25rem; } }
.theme-product-price { font-weight: 700; font-size: 1.5rem; margin-bottom: 1rem; }
.theme-stock-indicator--out { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--color-destructive); background: color-mix(in srgb, var(--color-destructive) 12%, transparent); border-radius: 999px; padding: 0.25rem 0.875rem; margin-bottom: 1rem; }
.theme-product-info { display: flex; flex-direction: column; min-height: 0; }
.theme-product-purchase { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.theme-product-description { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; overflow-wrap: break-word; word-break: break-word; white-space: pre-line; }
.theme-product-description p { margin-bottom: 0.75rem; }
.theme-product-description p:last-child { margin-bottom: 0; }

.theme-product-details-list { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 0.375rem; }
.theme-product-details-item { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-product-details-bullet { color: var(--color-primary); flex-shrink: 0; line-height: 1.4; }

.theme-quantity-row { display: flex; align-items: center; gap: 1rem; }
.theme-quantity-label { font-size: 0.875rem; font-weight: 600; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--color-border); border-radius: 999px; padding: 0.25rem 0.5rem; }
.theme-qty-minus, .theme-qty-plus { width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-size: 1rem; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-muted); }
.theme-qty-input { width: 2rem; text-align: center; font-weight: 600; border: none; background: transparent; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; width: 100%; }

.single-post-main { padding: 7rem 0 5rem; }
.single-post-wrap { max-width: 48rem; }
.single-post-tag { margin-bottom: 0.75rem; }
.single-post-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .single-post-title { font-size: 2.5rem; } }
.single-post-meta { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.single-post-featured { margin-bottom: 2rem; border-radius: 1.5rem; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.single-post-featured-img { width: 100%; height: auto; display: block; }
.single-post-content { font-size: 1rem; line-height: 1.7; color: var(--color-muted-foreground); }
.single-post-content p { margin-bottom: 1rem; }
.single-post-content a { color: var(--color-primary); font-weight: 600; }

.theme-product-details { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.theme-product-details-heading { font-family: var(--font-body); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.theme-product-details-body { font-size: 0.875rem; color: var(--color-muted-foreground); overflow-wrap: break-word; word-break: break-word; }
.theme-product-details-body p { margin-bottom: 0.5rem; }

.single-product .posted_in,
.theme-product-categories { display: block; margin-top: 1.25rem; font-size: 0.8rem; color: var(--color-muted-foreground); overflow-wrap: break-word; word-break: break-word; }
.theme-product-categories a { color: var(--color-primary); }

.related-products-section { margin-top: 4rem; }
.related-products-heading { font-size: 1.75rem; margin-bottom: 1.5rem; }

/* -------------------------------------------------------------------
   Shop archive
   ------------------------------------------------------------------- */
.woocommerce-archive-wrap { padding: 7rem 0 5rem; }
.woocommerce-archive-wrap .page-title { font-size: 2.25rem; margin-bottom: 2rem; }

/* -------------------------------------------------------------------
   404 page
   ------------------------------------------------------------------- */
.theme-404-main { min-height: 100vh; background: var(--color-muted); display: flex; align-items: center; justify-content: center; padding: 0; }
.theme-404 { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; }
.theme-404-code { font-size: 2.25rem; font-weight: 700; font-family: var(--font-display); }
.theme-404-message { font-size: 1.25rem; color: var(--color-muted-foreground); }
.theme-404-link { color: var(--color-primary); text-decoration: underline; font-size: 1rem; }
.theme-404-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* Generic page shell */
.site-main { padding-top: var(--header-height); }
body.theme-no-hero:not(.woocommerce-checkout):not(.single-product) .site-main { padding-top: var(--header-height); }
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 3rem; }
.single-product .site-main.single-product-main { padding-top: 7rem; padding-bottom: 5rem; }
.page-wrap { padding-top: 3rem; padding-bottom: 5rem; }
.page-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; margin-bottom: 2rem; }

/* =========================================================================
   Checkout Block overrides (Section 13)
   ========================================================================= */
body.woocommerce-checkout .entry-content { max-width: 100%; padding-top: 0; padding-bottom: 0; }
body.woocommerce-checkout .page-wrap { padding-top: 0.75rem; }
body.woocommerce-checkout .page-title { margin-bottom: 1rem; }

body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-checkout__main ~ .wc-block-checkout__sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout > .wc-block-checkout__sidebar {
		grid-column: auto;
	}
}

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-text-input input,
body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-state-input select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-blocks-components-select select,
body.woocommerce-checkout .wc-block-checkout select,
body.woocommerce-checkout .wc-block-checkout input[type="text"],
body.woocommerce-checkout .wc-block-checkout input[type="email"],
body.woocommerce-checkout .wc-block-checkout input[type="tel"],
body.woocommerce-checkout .wc-block-checkout input[type="number"],
body.woocommerce-checkout .wc-block-checkout textarea,
body.woocommerce-checkout .wc-block-components-text-input .wc-block-components-text-input__input {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 1rem !important;
	background-color: var(--color-background) !important;
	box-shadow: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-checkout select:focus,
body.woocommerce-checkout .wc-block-checkout input:focus,
body.woocommerce-checkout .wc-block-checkout textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus {
	outline: none !important;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent) !important;
	border-color: var(--color-border) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-checkout input::placeholder,
body.woocommerce-checkout .wc-block-checkout textarea::placeholder { color: var(--color-muted-foreground) !important; }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: 1px solid var(--color-primary) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background: var(--color-background) !important;
	color: var(--color-primary) !important;
}

.checkout-page-wrap {
	max-width: 80rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
	width: 100% !important;
	max-width: 100% !important;
}

body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar.is-sticky,
body.woocommerce-checkout .wc-block-checkout__sidebar.is-large {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	flex: 1 1 0 !important;
	align-self: stretch !important;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar > *,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .wc-block-components-checkout-order-summary__content,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-panel__content {
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-order-summary__content {
	width: 100% !important;
	max-width: none !important;
}

/* Order summary items — single-column block layout (no grid columns) */
body.woocommerce-checkout .wc-block-components-order-summary-item {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding: 1rem 0 !important;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
	border-bottom: none;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
	float: left;
	width: 4.5rem !important;
	height: 4.5rem !important;
	margin-right: 1rem !important;
	margin-bottom: 0.25rem;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	overflow: hidden;
	word-break: normal !important;
	overflow-wrap: anywhere;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	text-align: right !important;
	clear: both;
	padding-top: 0.5rem;
	margin-top: 0.25rem;
}

body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-product-metadata__description {
	max-width: none !important;
	width: 100% !important;
}

body.woocommerce-checkout .wc-block-components-product-metadata__description p {
	white-space: normal !important;
	word-break: normal !important;
}

body.woocommerce-checkout .wc-block-components-totals-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 1rem !important;
	width: 100% !important;
}

body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 1rem; font-family: var(--font-body); }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-surface);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); }

/* -------------------------------------------------------------------
   Other WooCommerce pages: width & alignment parity (Section 13.7)
   ------------------------------------------------------------------- */
body.woocommerce-cart .page-wrap,
body.woocommerce-account .page-wrap { padding-top: 2rem; }
body.woocommerce-cart .woocommerce,
body.woocommerce-account .woocommerce { max-width: 100%; }

/* -------------------------------------------------------------------
   Thank-you page (Section 22.8)
   ------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
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 { font-family: var(--font-body); }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	list-style: none;
	padding: 1.5rem;
	margin: 0 0 2rem;
	background: var(--color-surface);
	border-radius: var(--card-radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { margin: 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details th,
body.theme-thankyou-page .woocommerce-order-details 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;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
	background: var(--color-surface);
	border-radius: var(--card-radius);
	padding: 1.25rem;
	font-style: normal;
}

/* Variation labels — body font, not italic (Section 2.2) */
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }
