/* ==========================================================================
   Liore Skin Boutique — theme stylesheet
   ========================================================================== */

:root {
	--font-display: 'Cormorant Garamond', serif;
	--font-body: 'Jost', sans-serif;
	--radius: 0.85rem;
	--shadow-soft: 0 4px 24px -6px rgba(15, 28, 56, 0.14);
	--shadow-elevated: 0 18px 52px -14px rgba(15, 28, 56, 0.32);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 96px;
	--btn-radius: 999px;
	--btn-height: 52px;
	--btn-padding: 0 2.1rem;
	--btn-font-size: 12px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--color-button-text: var(--color-primary-foreground);
	--checkout-gap: 3rem;
	--card-radius: 1.25rem;
	--section-padding: 2rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	margin: 0;
	line-height: 1.15;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: color-mix(in srgb, var(--color-accent) 35%, transparent); color: var(--color-foreground); }

img:not(.cover-img):not(.hero-section__video):not(.theme-product-thumb img):not(.theme-cart-item__image img) {
	max-width: 100%;
	height: auto;
}
.cover-img, video.hero-section__video,
.theme-product-card__image-wrapper img,
.theme-product-gallery__main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.theme-cart-item__image { position: relative; }
.theme-cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

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

.scroll-mt-24 { scroll-margin-top: 6rem; }

/* ---------- Utility / motion classes ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
	font-weight: 500; color: var(--color-primary);
}
.eyebrow svg { color: var(--color-accent); flex-shrink: 0; }
@media (min-width: 768px) { .eyebrow { font-size: 13px; } }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
	background: currentColor; transform-origin: left; transform: scaleX(0);
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.gold-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }

.text-gradient-brand {
	background: linear-gradient(100deg, var(--color-primary), var(--color-accent), var(--color-marigold, var(--color-accent)));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.press-tap { transition: transform 0.15s ease-out; }
.press-tap:active { transform: scale(0.96); }

.hover-lift { transition: transform 0.3s ease; }
.hover-lift:hover { transform: translateY(-4px); }

.icon-nudge svg { transition: transform 0.3s ease-out; }
.icon-nudge:hover svg { transform: translateX(3px); }

.glow-ring { transition: box-shadow 0.3s ease; }
.glow-ring:hover { box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent) 18%, transparent); }

.sheen { position: relative; overflow: hidden; }
.sheen::after {
	content: ''; position: absolute; inset: 0; transform: translateX(-120%);
	background: linear-gradient(100deg, transparent 20%, color-mix(in srgb, var(--color-accent) 28%, transparent) 50%, transparent 80%);
	transition: transform 0.9s var(--transition-smooth); pointer-events: none;
}
.sheen:hover::after { transform: translateX(120%); }

.animate-bob { animation: theme-bob 2.2s ease-in-out infinite; }
.animate-pulse-soft { animation: theme-pulse-soft 2.4s ease-in-out infinite; }
.skeleton-shimmer {
	background: linear-gradient(100deg, color-mix(in srgb, var(--color-muted-foreground) 15%, transparent) 20%, color-mix(in srgb, var(--color-background) 50%, transparent) 40%, color-mix(in srgb, var(--color-muted-foreground) 15%, transparent) 60%);
	background-size: 200% 100%;
	animation: theme-shimmer 1.6s ease-in-out infinite;
}
@keyframes theme-bob { 0%, 100% { transform: translateY(0); opacity: 0.85; } 50% { transform: translateY(6px); opacity: 1; } }
@keyframes theme-pulse-soft { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes theme-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: theme-fade-in 0.6s var(--transition-smooth) forwards; }

@media (prefers-reduced-motion: reduce) {
	.animate-bob, .animate-pulse-soft, .skeleton-shimmer { animation: none !important; }
	.hero-section__video { animation: none !important; transform: scale(1); }
}

/* Scroll reveal (Section 2.1) */
.theme-reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}
.theme-reveal-item[data-reveal="fade"] { transform: none; }
.theme-reveal-item.is-visible { opacity: 1; transform: none; }
body.is-customizer .theme-reveal-item,
body.is-customizer .theme-product-card-wrap { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.theme-reveal-item { transition: none; opacity: 1; transform: none; }
}

/* ---------- Buttons ---------- */
.btn-hero-primary, .btn-hero-outline, .btn-outline-pill, .theme-btn-primary, .btn-cta-secondary {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: uppercase;
	font-weight: var(--btn-font-weight);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.btn-hero-primary, .theme-btn-primary {
	background: var(--color-primary); color: var(--color-primary-foreground);
	padding: 1rem 2.25rem; box-shadow: var(--shadow-soft); border: none;
	font-size: 12px; letter-spacing: 0.28em;
}
@media (min-width: 768px) {
	.btn-hero-primary, .theme-btn-primary { font-size: 13px; }
}
.btn-hero-primary:hover, .theme-btn-primary:hover:not(.disabled) { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.btn-hero-outline {
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-primary); background: transparent; padding: 1rem 2rem;
	font-size: 12px; letter-spacing: 0.28em;
}
@media (min-width: 768px) { .btn-hero-outline { font-size: 13px; } }
.btn-hero-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-hero-primary svg, .btn-hero-outline svg, .eyebrow svg, .category-tile__circle svg, .pillar-item__icon svg {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.btn-outline-pill {
	border: 1px solid var(--color-primary); color: var(--color-primary); background: transparent;
	padding: 1rem 2.25rem; font-size: 12px; letter-spacing: 0.24em;
}
.btn-outline-pill:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-cta-secondary {
	background: color-mix(in srgb, var(--color-background) 80%, transparent);
	color: var(--color-foreground); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	padding: 1rem 2rem; font-size: 15px; letter-spacing: normal; text-transform: none;
}
.btn-cta-secondary:hover { background: var(--color-background); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50; width: 100%;
	background: var(--color-background);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
}
.site-header.is-scrolled,
.site-header.is-menu-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px 0 color-mix(in srgb, var(--color-foreground) 8%, transparent);
}
.site-header__inner { padding-block: 0; }
.site-nav { display: flex; align-items: center; height: 5rem; position: relative; }
@media (min-width: 768px) { .site-nav { height: 7rem; } }

.site-nav-desktop { display: none; width: 100%; align-items: center; }
.site-nav-mobile { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.75rem; }
.site-nav-mobile__actions { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) {
	.site-nav-desktop { display: flex; }
	.site-nav-mobile { display: none; }
}

.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.site-nav__side { flex: 1; display: flex; align-items: center; }
.site-nav__side--left { justify-content: flex-start; }
.site-nav__side--right { justify-content: flex-end; gap: 2rem; }
.theme-nav-list li a, .theme-nav-list li button {
	font-family: var(--font-body);
	font-size: 15px; font-weight: 500; letter-spacing: 0.025em;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.2s ease;
	background: none; border: none; padding: 0; cursor: pointer;
}
.theme-nav-list li a:hover, .theme-nav-list li button:hover { color: var(--color-primary); }

.site-logo-link { display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease; text-decoration: none; }
.site-logo-link--desktop { padding: 0 1.5rem; }
.site-logo-link--mobile { padding: 0; }
.site-logo-link:hover { transform: translateY(-4px); }
.site-logo-img { height: min(var(--logo-height, 5rem), 3rem) !important; width: auto !important; display: block; object-fit: contain; transition: all 0.3s ease; }
@media (min-width: 768px) { .site-logo-link--desktop .site-logo-img { height: var(--logo-height, 5rem) !important; } }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); line-height: 1.2; }

.theme-cart-toggle {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
	color: var(--color-foreground); transition: border-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0; font-family: var(--font-body); font-size: 12px; font-weight: 500;
}
.theme-cart-toggle:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cart-count {
	position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle { display: inline-flex; padding: 0.5rem; margin-right: -0.5rem; color: var(--color-foreground); flex-shrink: 0; transition: opacity 0.2s ease; }
.theme-mobile-toggle:hover { opacity: 0.6; }

.theme-mobile-menu { display: none; border-top: 1px solid var(--color-border); padding-block: 1rem; }
.theme-mobile-menu.is-open { display: block; animation: theme-fade-in 0.2s ease; }
.theme-mobile-nav-list li a, .theme-mobile-nav-list li button {
	display: block; width: 100%; text-align: left; padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	font-family: var(--font-body); font-size: 14px; background: none; border-left: none; border-right: none; border-top: none;
	color: inherit; cursor: pointer; transition: color 0.2s ease;
}
.theme-mobile-nav-list li a:hover, .theme-mobile-nav-list li button:hover { color: var(--color-primary); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section__media { position: relative; width: 100%; height: calc(100svh - var(--header-height, 80px)); overflow: hidden; }
body.theme-no-hero .hero-section { display: none; }
.hero-section__video {
	transform: scale(1.04);
	animation: hero-video-zoom 1.6s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}
@keyframes hero-video-zoom {
	from { transform: scale(1.04); }
	to { transform: scale(1); }
}
.hero-section__gradient--h { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in srgb, var(--color-background) 95%, transparent), color-mix(in srgb, var(--color-background) 60%, transparent), color-mix(in srgb, var(--color-background) 5%, transparent)); }
.hero-section__gradient--v { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 40%, transparent), transparent, color-mix(in srgb, var(--color-background) 15%, transparent)); }
.hero-section__content { position: relative; height: calc(100svh - var(--header-height, 80px)); width: 100%; display: flex; flex-direction: column; padding: 0 1.5rem; }
@media (min-width: 1024px) { .hero-section__content { padding: 0 2rem; } }
.hero-section__inner { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; max-width: 72rem; margin: 0 auto; width: 100%; padding: 6rem 0; }
@media (min-width: 1024px) { .hero-section__inner { align-items: flex-start; text-align: left; } }
.hero-section__copy { max-width: 42rem; }
@media (min-width: 1024px) {
	.hero-section__copy {
		backdrop-filter: blur(2px);
		background: linear-gradient(to right, color-mix(in srgb, var(--color-background) 40%, transparent), color-mix(in srgb, var(--color-background) 25%, transparent), transparent);
		border-radius: 1.5rem;
		padding: 2rem;
		margin-left: -2rem;
	}
}
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-title-line1 { display: block; }
.hero-title { font-weight: 300; color: var(--color-foreground); line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(3rem, 9vw, 7rem); text-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.hero-title__em { display: block; font-style: italic; }
.hero-rule { width: 14rem; margin: 1.75rem auto 0; }
@media (min-width: 1024px) { .hero-rule { margin-left: 0; } }
.hero-subtitle { margin-top: 1.75rem; max-width: 36rem; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-size: 1.125rem; line-height: 1.6; font-weight: 300; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; width: auto; } }
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }
.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding-bottom: 2.5rem; align-self: center; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.hero-scroll-indicator span { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; }

/* ==========================================================================
   VALUE PILLARS
   ========================================================================== */
.pillars-section { background: var(--color-card); padding-block: 4rem; }
@media (min-width: 768px) { .pillars-section { padding-block: 5rem; } }
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.pillar-item__icon {
	flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-primary) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	display: flex; align-items: center; justify-content: center; color: var(--color-primary);
	transition: all 0.5s ease;
}
.pillar-item:hover .pillar-item__icon { background: color-mix(in srgb, var(--color-accent) 15%, transparent); border-color: var(--color-accent); transform: rotate(6deg); }
.pillar-item__title { font-size: 1.5rem; margin-bottom: 0.5rem; line-height: 1.2; }
@media (min-width: 768px) { .pillar-item__title { font-size: 1.75rem; } }
.pillar-item__text { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; }
@media (min-width: 768px) { .pillar-item__text { font-size: 1rem; } }

/* ==========================================================================
   SECTION HEADS (shared)
   ========================================================================== */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head__eyebrow { margin-bottom: 1rem; justify-content: center; }
.section-heading { font-weight: 300; line-height: 1.05; }
.category-section__heading, .services-section__heading, .shop-heading { font-size: 2.5rem; line-height: 1.02; }
.category-section__em { font-style: italic; color: var(--color-primary); }
@media (min-width: 768px) { .category-section__heading, .services-section__heading { font-size: 3.75rem; } .shop-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .category-section__heading, .services-section__heading { font-size: 4.5rem; } }
.featured-section { padding-block: 4rem; }
@media (min-width: 768px) { .featured-section { padding-block: 6rem; } }
.featured-section__heading { font-size: 2.5rem; }
@media (min-width: 768px) { .featured-section__heading { font-size: 3.75rem; } }
.section-cta-row { text-align: center; margin-top: 3.5rem; }

/* ==========================================================================
   CATEGORY STRIP
   ========================================================================== */
.category-section { padding-block: 4rem; }
@media (min-width: 768px) { .category-section { padding-block: 6rem; } }
.category-tiles { display: grid; grid-template-columns: repeat(2, 1fr); justify-items: center; row-gap: 2.5rem; column-gap: 1rem; padding: 1.5rem 0.5rem 1rem; }
@media (min-width: 640px) { .category-tiles { grid-template-columns: repeat(4, 1fr); } }
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.category-tile__circle {
	width: 6rem; height: 6rem; border-radius: 999px; display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-secondary) 70%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	color: var(--color-primary);
	transition: all 0.5s ease;
	ring: 2px solid transparent;
}
@media (min-width: 640px) { .category-tile__circle { width: 7rem; height: 7rem; } }
@media (min-width: 768px) { .category-tile__circle { width: 9rem; height: 9rem; } }
.category-tile:hover .category-tile__circle { transform: scale(1.05); box-shadow: var(--shadow-elevated); background: color-mix(in srgb, var(--color-primary) 5%, transparent); box-shadow: 0 0 0 2px var(--color-accent), var(--shadow-elevated); }
.category-tile:hover .category-tile__circle svg { transform: scale(1.1) rotate(-6deg); color: var(--color-accent); }
.category-tile__circle svg { transition: transform 0.5s ease, color 0.5s ease; }
.category-tile__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); text-align: center; }
@media (min-width: 768px) { .category-tile__label { font-size: 14px; } }
.category-tile:hover .category-tile__label { color: var(--color-primary); }

/* ==========================================================================
   PRODUCT GRID / CARD
   ========================================================================== */
.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; } }
.featured-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; transition: transform 0.3s ease; }
.theme-product-card-wrap:hover { transform: translateY(-3px); }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-card-link { color: inherit; text-decoration: none; }
.theme-card-link--media { position: absolute; inset: 0; z-index: 1; }
.theme-card-link--info { display: block; }

.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1 / 1; border-radius: 1.25rem; overflow: hidden; margin-bottom: 1.25rem;
	background: var(--color-card);
}
.theme-product-card__image-wrapper img { transition: transform 0.7s cubic-bezier(0.25,0.4,0.25,1); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.05); }

.theme-product-card__badge {
	position: absolute; top: 1rem; right: 1rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 0.375rem;
	font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
	background: var(--color-foreground); color: var(--color-background);
}
.theme-product-card__add-btn {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 4;
	padding: 0.75rem 0; border-radius: 999px; text-align: center;
	background: var(--color-primary); color: var(--color-primary-foreground);
	border: 1px solid var(--color-primary);
	font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	opacity: 0; transform: translateY(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.theme-product-card:hover .theme-product-card__add-btn { opacity: 1; transform: translateY(0); }
.theme-product-card__add-btn:hover { background: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); }

.theme-product-card__info { padding: 0 0.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.375rem; position: relative; z-index: 2; }
.theme-product-card__category { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); }
.theme-product-card__title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; line-height: 1.375; color: var(--color-foreground); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-family: var(--font-body); font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; }

/* ==========================================================================
   BANNER CAROUSEL
   ========================================================================== */
.banner-carousel { position: relative; width: 100%; height: 40vh; overflow: hidden; background: var(--color-background); }
@media (min-width: 768px) { .banner-carousel { height: 55vh; } }
@media (min-width: 1024px) { .banner-carousel { height: 65vh; } }
.banner-carousel__slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity 1.2s cubic-bezier(0.25,0.4,0.25,1), transform 1.2s cubic-bezier(0.25,0.4,0.25,1); }
.banner-carousel__slide.is-active { opacity: 1; transform: scale(1); }
.banner-carousel__tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-nopal) 15%, transparent); }
.banner-carousel__dots { position: absolute; bottom: 1.5rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.75rem; z-index: 10; }
.banner-carousel__dots button { width: 10px; height: 10px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent); transition: all 0.3s ease; }
.banner-carousel__dots button:hover { background: var(--color-primary-foreground); }
.banner-carousel__dots button.is-active { background: var(--color-accent); transform: scale(1.25); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 4rem 1.5rem 6rem; }
@media (min-width: 768px) { .about-section__inner { padding: 6rem 3.5rem 8rem; } }
@media (min-width: 1024px) { .about-section__inner { padding: 6rem 5rem 8rem; } }
.about-section__heading { font-family: var(--font-display); font-weight: 300; font-size: 1.875rem; line-height: 1.15; color: var(--color-foreground); margin: 1.5rem 0 2.5rem; }
.about-section__heading em { font-style: italic; color: var(--color-primary); }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.4rem; } }
.about-section__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; font-size: 1rem; font-weight: 300; }
@media (min-width: 768px) { .about-section__body { font-size: 1.25rem; } }
.about-section__rule { width: 10rem; margin: 3rem auto; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 0 auto 3rem; }
.about-stat__value { font-family: var(--font-display); font-size: 2.25rem; color: var(--color-primary); line-height: 1; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .about-stat__value { font-size: 3.75rem; } }
.about-stat__label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
@media (min-width: 768px) { .about-stat__label { font-size: 14px; } }
.about-section__link { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: var(--color-foreground); }

/* ==========================================================================
   OWNER
   ========================================================================== */
.owner-section { background: var(--color-primary); color: var(--color-primary-foreground); padding-block: 5rem; }
@media (min-width: 768px) { .owner-section { padding-block: 7rem; } }
.owner-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .owner-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.owner-photo { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-accent) 20%, transparent); aspect-ratio: 4 / 5; }
@media (min-width: 768px) { .owner-photo { aspect-ratio: 3 / 4; } }
.owner-photo img { transition: transform 0.7s ease; }
.owner-photo:hover img { transform: scale(1.05); }
.owner-photo__gradient { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-nopal) 60%, transparent), transparent); }
.owner-photo__caption { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; color: #fff; }
.owner-photo__caption-line1 { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; }
@media (min-width: 768px) { .owner-photo__caption-line1 { font-size: 1.875rem; } }
.owner-photo__caption-line2 { font-size: 0.9rem; opacity: 0.8; margin-top: 0.25rem; }
.owner-copy__eyebrow { color: var(--color-accent); margin-bottom: 1.25rem; }
.owner-copy__heading { font-weight: 300; font-size: 2.5rem; line-height: 1.05; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .owner-copy__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .owner-copy__heading { font-size: 4.5rem; } }
.owner-copy__p { font-size: 1.125rem; line-height: 1.7; font-weight: 300; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .owner-copy__p { font-size: 1.25rem; } }
@media (min-width: 1024px) { .owner-copy__p { font-size: 1.5rem; } }
.owner-copy__quote { font-family: var(--font-display); font-style: italic; color: var(--color-accent); font-size: 1.5rem; margin-bottom: 2.25rem; line-height: 1.35; }
@media (min-width: 768px) { .owner-copy__quote { font-size: 1.875rem; } }
.owner-copy__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; font-size: 1rem; }
.owner-copy__meta a, .owner-copy__meta button, .owner-copy__meta span { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); transition: color 0.2s ease; }
.owner-copy__meta a:hover, .owner-copy__meta button:hover { color: var(--color-accent); }
.owner-copy__meta svg { color: var(--color-accent); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section { background: var(--color-card); padding-block: 5rem; }
@media (min-width: 768px) { .services-section { padding-block: 7rem; } }
.services-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.service-card {
	display: flex; flex-direction: column; text-align: center; background: var(--color-background);
	border-radius: 1rem; padding: 2.25rem; border: 1px solid var(--color-border);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-accent) 50%, transparent); }
.service-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: transform 0.5s ease; }
.service-card:hover .service-card__icon { transform: scale(1.1) rotate(-6deg); }
.service-card.is-primary .service-card__icon, .service-card.is-primary .service-card__kicker, .service-card.is-primary .service-card__cta { color: var(--color-primary); }
.service-card.is-accent .service-card__icon, .service-card.is-accent .service-card__kicker, .service-card.is-accent .service-card__cta { color: var(--color-accent); }
.service-card.is-rosa .service-card__icon, .service-card.is-rosa .service-card__kicker, .service-card.is-rosa .service-card__cta { color: var(--color-rosa); }
.service-card.is-teal .service-card__icon, .service-card.is-teal .service-card__kicker, .service-card.is-teal .service-card__cta { color: var(--color-teal); }
.service-card__kicker { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; }
.service-card__title { font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .service-card__title { font-size: 1.75rem; } }
.service-card__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .service-card__desc { font-size: 1rem; } }
.service-card__cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; }
.service-card__cta:hover { color: var(--color-accent); }

/* ==========================================================================
   SHOP
   ========================================================================== */
.shop-section { padding-block: 4rem; }
@media (min-width: 768px) { .shop-section { padding-block: 6rem; } }
.shop-search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.shop-search svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-search input {
	width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent;
	border: none; border-bottom: 1px solid var(--color-border); font-family: var(--font-body); font-size: 1rem;
	color: var(--color-foreground);
}
.shop-search input:focus { outline: none; border-color: var(--color-foreground); }
.shop-category-tabs { display: flex; overflow-x: auto; gap: 0.5rem; margin-bottom: 1rem; padding-bottom: 0.25rem; scrollbar-width: none; }
.shop-category-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .shop-category-tabs { flex-wrap: wrap; justify-content: center; overflow: visible; } }
.shop-category-tab {
	flex-shrink: 0; padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground);
	transition: all 0.3s ease;
}
.shop-category-tab:hover { border-color: var(--color-accent); color: var(--color-primary); }
.shop-category-tab.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter__toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__toggle svg { transition: transform 0.3s ease; }
.shop-price-filter__toggle.is-open svg { transform: rotate(180deg); }
.shop-price-filter__value { opacity: 0.7; text-transform: none; letter-spacing: normal; }
.shop-price-filter__panel { width: 100%; max-width: 24rem; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth); }
.shop-price-filter__panel.is-open { max-height: 10rem; opacity: 1; padding: 0.5rem 0; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-bottom: 0.75rem; }
.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: 20px; height: 20px; border-radius: 999px; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; margin-top: 0; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 20px; height: 20px; border-radius: 999px; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-webkit-slider-runnable-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); }

.shop-tagline { text-align: center; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.shop-show-more { text-align: center; margin-top: 3rem; }
.shop-empty-state { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { background: var(--color-background); padding-block: 5rem; }
@media (min-width: 768px) { .faq-section { padding-block: 7rem; } }
.faq-intro { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.faq-heading { font-size: 2.5rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 4.5rem; } }
.faq-intro__text { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .faq-intro__text { font-size: 1.125rem; } }
.faq-intro__text a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: color-mix(in srgb, var(--color-accent) 60%, transparent); word-break: break-all; }
.faq-intro__text a:hover { text-decoration-color: var(--color-accent); }

.faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 2.5rem; }
.faq-tab { border-radius: 999px; border: 1px solid; padding: 0.625rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; background: transparent; transition: all 0.2s ease; }
.faq-tab--nopal { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-tab--nopal:hover { background: color-mix(in srgb, var(--color-nopal) 10%, transparent); }
.faq-tab--nopal.is-active { background: var(--color-nopal); color: var(--color-background); }
.faq-tab--teal { border-color: var(--color-teal); color: var(--color-teal); }
.faq-tab--teal:hover { background: color-mix(in srgb, var(--color-teal) 10%, transparent); }
.faq-tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.faq-tab--rosa { border-color: var(--color-rosa); color: var(--color-rosa); }
.faq-tab--rosa:hover { background: color-mix(in srgb, var(--color-rosa) 15%, transparent); }
.faq-tab--rosa.is-active { background: var(--color-rosa); color: var(--color-background); }
.faq-tab--marigold { border-color: var(--color-marigold); color: var(--color-foreground); }
.faq-tab--marigold:hover { background: color-mix(in srgb, var(--color-marigold) 25%, transparent); }
.faq-tab--marigold.is-active { background: var(--color-marigold); color: var(--color-foreground); }
.faq-tab--lilac { border-color: var(--color-lilac); color: var(--color-foreground); }
.faq-tab--lilac:hover { background: color-mix(in srgb, var(--color-lilac) 25%, transparent); }
.faq-tab--lilac.is-active { background: var(--color-lilac); color: var(--color-foreground); }

.faq-panels { max-width: 48rem; margin: 0 auto; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-panel { display: none; }
.faq-panel.is-active { display: block; animation: theme-fade-in 0.25s ease; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__q span { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-foreground); transition: color 0.2s ease; }
@media (min-width: 768px) { .faq-item__q span { font-size: 1.5rem; } }
.faq-item:hover .faq-item__q span { color: var(--color-primary); }
.faq-item__q svg { margin-top: 0.25rem; flex-shrink: 0; color: var(--color-accent); transition: transform 0.3s ease; }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-smooth); }
.faq-item.is-open .faq-item__a { max-height: 20rem; }
.faq-item__a p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; line-height: 1.6; padding-bottom: 1.25rem; padding-right: 1rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; min-height: 85vh; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 1rem; gap: 3rem; }
.cta-band__tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-nopal) 45%, transparent); backdrop-filter: saturate(1.05) blur(1px); }
.cta-band__panel { position: relative; z-index: 10; width: 100%; max-width: 56rem; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-elevated); backdrop-filter: blur(8px); background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 97%, transparent) 0%, color-mix(in srgb, var(--color-card) 94%, transparent) 55%, color-mix(in srgb, var(--color-accent) 30%, transparent) 100%); }
.cta-band__inner { padding: 3.5rem 2rem; text-align: center; }
@media (min-width: 768px) { .cta-band__inner { padding: 5rem 4rem; } }
.cta-band__eyebrow { font-family: var(--font-display); font-style: italic; color: var(--color-primary); font-size: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .cta-band__eyebrow { font-size: 1.875rem; } }
.cta-band__title { font-weight: 300; color: var(--color-foreground); font-size: 2.5rem; line-height: 1.05; margin-bottom: 1.75rem; }
@media (min-width: 768px) { .cta-band__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 4.5rem; } }
.cta-band__title em { font-style: italic; }
.cta-band__body { font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 36rem; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .cta-band__body { font-size: 1.125rem; } }
.cta-band__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2.25rem; }
@media (min-width: 640px) { .cta-band__actions { flex-direction: row; } }
.cta-band .btn-hero-primary { text-transform: none; letter-spacing: normal; font-size: 0.875rem; }
@media (min-width: 768px) { .cta-band .btn-hero-primary { font-size: 1rem; } }
.cta-band__badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
@media (min-width: 768px) { .cta-band__badges { font-size: 14px; } }
.cta-band__badges span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-band__badges svg { color: var(--color-accent); }
.cta-band__dot { opacity: 0.3; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding-block: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.footer-col__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .footer-col__title { font-size: 1.5rem; } }
.footer-col__links li { margin-bottom: 0.75rem; }
.footer-col__links a, .footer-col__links button { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); background: none; border: none; padding: 0; font-family: inherit; cursor: pointer; text-align: left; }
.footer-col__links a:hover, .footer-col__links button:hover { color: var(--color-primary); }
.footer-col__text { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col__email { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.footer-col__email:hover { color: var(--color-primary); }
.footer-col__email span { word-break: break-all; }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__quote { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; color: var(--color-primary); font-family: var(--font-display); font-style: italic; }
@media (min-width: 768px) { .site-footer__quote { font-size: 14px; } }
.site-footer__quote svg { color: var(--color-accent); flex-shrink: 0; }
.site-footer__legal { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .site-footer__legal { flex-direction: row; align-items: center; gap: 1rem; } }
.site-footer__legal p { font-size: 12px; color: var(--color-muted-foreground); }
.site-footer__legal a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__legal a:hover { color: var(--color-accent); }

/* ==========================================================================
   CART DRAWER & OVERLAY
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, 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; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 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; 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__header h2 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: 0.5rem; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__title { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__title:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-item__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__note { font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; padding: 0.9rem; text-transform: none; letter-spacing: normal; font-size: 1rem; }
.theme-cart-drawer__empty-btn { width: 100%; padding: 0.6rem; font-size: 0.875rem; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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; }

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */
.theme-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.theme-modal.is-open { display: flex; }
.theme-modal__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); animation: theme-fade-in 0.2s ease; }
.theme-modal__panel {
	position: relative; z-index: 1; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow-elevated);
	animation: theme-modal-in 0.25s var(--transition-smooth);
}
@keyframes theme-modal-in { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem; }
.theme-modal__close:hover { opacity: 0.6; }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__desc { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.5; margin-bottom: 1rem; }
.theme-modal__meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal__meta-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-modal__meta-item svg { color: var(--color-accent); flex-shrink: 0; }
.theme-modal__meta a:hover { color: var(--color-foreground); }
.theme-form-row { margin-bottom: 1rem; }
.theme-form-row--split { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-form-row--split { grid-template-columns: 1fr 1fr; } }
.theme-form-row label { font-size: 0.875rem; font-weight: 500; display: block; margin-bottom: 0.375rem; }
.theme-form-row input, .theme-form-row select, .theme-form-row textarea {
	width: 100%; padding: 0.65rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: 0.375rem; font-family: var(--font-body); font-size: 1rem; color: var(--color-foreground);
	transition: box-shadow 0.3s ease;
}
.theme-form-row textarea { resize: none; }
.theme-form-row input:focus, .theme-form-row select:focus, .theme-form-row 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: #b3261e; font-size: 0.85rem; margin-top: 0.5rem; }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */
.single-product-page { padding-block: 1.5rem 2rem; }
@media (min-width: 1024px) { .single-product-page { padding-block: 2rem 2rem; } }
.product-breadcrumb { padding: 0.75rem 0; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb__current { color: var(--color-foreground); }

.single-product .theme-product-layout {
	display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 6rem; align-items: start; min-width: 0;
}
@media (min-width: 1024px) {
	.single-product .theme-product-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; }
}

.single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__mobile { display: block; }
.theme-product-gallery__desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__mobile { display: none; }
	.theme-product-gallery__desktop { display: flex; flex-direction: column; gap: 1rem; }
}
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; border-radius: 1.25rem; }
.theme-product-gallery__stack-item { position: relative; aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; border-radius: 1.25rem; }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.25rem; max-width: 100%; }
.theme-product-thumb { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); border-radius: 0.5rem; border: none; padding: 0; cursor: pointer; }
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active img, .theme-product-thumb:hover img { opacity: 1; }
.theme-product-thumb.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-foreground); }

@media (min-width: 1024px) {
	.single-product .theme-product-info { position: sticky; top: 7rem; align-self: start; padding-left: 1rem; }
}

.theme-product-info__category { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); display: block; }
.theme-product-info__category a { color: inherit; }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.1; margin: 0.75rem 0 1.25rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.theme-product-info__price { font-family: var(--font-body); font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--color-foreground); }
.theme-product-info__price ins { text-decoration: none; }
.theme-product-info__desc { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 2rem; font-family: var(--font-body); font-size: 1rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__desc-lead { margin: 0 0 1rem; }
.theme-product-info__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-info__bullets li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; line-height: 1.5; }
.theme-product-info__bullets li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-foreground); margin-top: 0.55rem; flex-shrink: 0; }
.theme-product-info__desc ul { list-style: none; margin: 0.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-info__desc ul li { display: flex; align-items: flex-start; gap: 0.75rem; }
.theme-product-info__desc ul li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-foreground); margin-top: 0.55rem; flex-shrink: 0; }
.theme-stock-status { margin-bottom: 1.5rem; font-size: 0.9rem; font-weight: 500; }
.theme-stock-status--out { color: #b3261e; }

.theme-field-label {
	font-family: var(--font-body); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--color-muted-foreground); margin: 0 0 0.75rem; font-weight: 400;
}
.theme-quantity-block { margin-bottom: 1rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 999px; }
.theme-qty-minus, .theme-qty-plus { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 0.75rem; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-minus { border-radius: 999px 0 0 999px; }
.theme-qty-plus { border-radius: 0 999px 999px 0; }
.theme-qty-input { width: 2.75rem; min-width: 2.75rem; border: none; background: transparent; text-align: center; font-family: var(--font-body); 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; }
.single_variation_wrap .woocommerce-variation-add-to-cart:not(.theme-variation-cart) {
	display: none !important;
}
.variations_form .woocommerce-variation-add-to-cart.variations_button,
.variations_form .theme-variation-cart {
	display: block !important;
	visibility: visible !important;
}
.variations_form .theme-variation-cart .theme-quantity-block,
.variations_form .theme-variation-cart .theme-quantity-wrapper {
	display: block !important;
	visibility: visible !important;
}
.variations_form .theme-variation-cart .theme-quantity-wrapper {
	display: inline-flex !important;
}
.variations_form .variations_button > .quantity,
.variations_form .theme-variation-cart > .quantity {
	display: none !important;
}
.variations_form .woocommerce-variation-add-to-cart { margin-top: 0; }
.theme-add-to-cart-form, .variations_form.cart { margin-bottom: 0.5rem; }
.theme-btn-add-to-cart-full {
	width: 100% !important; min-height: 3.5rem !important; padding: 1rem 2rem !important;
	font-size: 12px !important; letter-spacing: 0.25em !important; text-transform: uppercase !important;
	font-weight: 500 !important; margin-top: 0.25rem;
}
.theme-btn-add-to-cart-full:hover:not(.disabled):not(:disabled) { opacity: 0.9 !important; }

.theme-product-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; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; background: none; border: none; cursor: pointer; text-align: left; }
.theme-accordion__trigger svg { transition: transform 0.3s ease; flex-shrink: 0; }
.theme-accordion.is-open .theme-accordion__trigger svg { transform: rotate(180deg); }
.theme-accordion__panel { display: none; padding-bottom: 1.5rem; font-family: var(--font-body); font-size: 15px; color: var(--color-muted-foreground); line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
.theme-accordion.is-open .theme-accordion__panel { display: block; }
.theme-accordion__description p { margin: 0 0 1rem; white-space: pre-line; }

.related-products-section { padding-block: 4rem; border-top: 1px solid var(--color-border); }
.related-products-section__head { text-align: center; margin-bottom: 2.5rem; }
.related-products-section__eyebrow { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.25rem; }
.related-products-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ==========================================================================
   ADD TO CART BUTTON — GLOBAL WOOCOMMERCE OVERRIDE (Section 11.4.1)
   ========================================================================== */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.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 */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.75rem 0 !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* ==========================================================================
   VARIABLE PRODUCT PILLS
   ========================================================================== */
.theme-variations { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; }
.theme-variation-label {
	font-family: var(--font-body); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--color-muted-foreground); margin: 0 0 0.75rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--color-border);
	font-family: var(--font-body); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	background: transparent; color: var(--color-foreground); transition: all 0.2s ease;
}
.theme-variation-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-variation-pill.is-selected {
	background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground);
}
.theme-variation-select {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.variations_form .woocommerce-variation-price { margin-bottom: 1rem; font-family: var(--font-body); }
.variations_form .woocommerce-variation-availability { margin-bottom: 1rem; }

.theme-add-to-cart-form, .variations_form.cart { margin-bottom: 0.5rem; }

/* ==========================================================================
   WOOCOMMERCE NOTICES (scoped, Section 14.1)
   ========================================================================== */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.25rem; border-radius: 0.5rem;
	background: var(--color-card); border: 1px solid var(--color-border); font-family: var(--font-body); font-size: 0.9rem;
}
.woocommerce-error { border-color: #b3261e; color: #b3261e; }

/* ==========================================================================
   SHOP ARCHIVE (non-homepage category/tag pages)
   ========================================================================== */
.shop-archive-page { padding: 3rem 0 5rem; }
.shop-archive-page .page-title { font-size: 2.25rem; margin-bottom: 2rem; text-align: center; }
.theme-archive-pagination { display: flex; justify-content: center; margin-top: 3rem; gap: 0.5rem; }
.theme-archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid var(--color-border); }
.theme-archive-pagination .page-numbers.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* ==========================================================================
   404
   ========================================================================== */
.theme-404 { min-height: 100svh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; }
.theme-404__code { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404__inner .link-underline { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.theme-404__inner .link-underline:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-404__inner .link-underline::after { display: none; }

/* ==========================================================================
   CHECKOUT (WooCommerce Checkout Block)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-block: 2rem 4rem; }
body.woocommerce-checkout .page-title { max-width: 80rem; margin: 0 auto 2rem; font-size: 2rem; font-family: var(--font-display); font-weight: 700; }

/* Single stable grid — avoid nested layout fights from WooCommerce blocks */
body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
	max-width: 80rem;
	margin: 0 auto;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 3rem !important;
	align-items: start !important;
	width: 100% !important;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: 4rem !important;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	grid-column: auto !important;
	float: none !important;
}
body.woocommerce-checkout .wc-block-components-sidebar-layout > * {
	min-width: 0;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout input[type="number"] {
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.375rem !important;
	background: var(--color-background) !important;
	color: var(--color-foreground) !important;
	width: 100% !important;
	max-width: none !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout input:focus {
	outline: none !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card) !important;
	border-radius: var(--card-radius) !important;
	padding: var(--section-padding) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important; color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important; text-transform: none !important;
	font-family: var(--font-body) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; }

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
.theme-thankyou { max-width: 60rem; margin: 0 auto; padding: 0 0 4rem; }
.theme-thankyou__icon { width: 4rem; height: 4rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
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-order h2, body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem; font-family: var(--font-display); font-size: 1.75rem; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
	body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }
}

/* ==========================================================================
   CART / MY ACCOUNT WIDTH PARITY (Section 13.7)
   ========================================================================== */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: 2rem; padding-bottom: 4rem; }
