/*
 * Netta's Eats & Treats — theme stylesheet.
 * Design tokens mirror the source design system. Color values are
 * emitted as CSS variables on :root by functions.php (Section 6/6.1) from
 * the Customizer; the values below are load-time fallbacks only.
 */

/* ---------------------------------------------------------------
 * Design tokens (fallbacks — Customizer inline style overrides these).
 * ------------------------------------------------------------- */
:root {
	--color-background: #FAF6EF;
	--color-foreground: #141110;
	--color-primary: #D84B7A;
	--color-primary-foreground: #FFFFFF;
	--color-secondary: #F5E9DB;
	--color-muted-foreground: #584F4B;
	--color-accent: #CA9F49;
	--color-accent-deep: #A97C37;
	--color-border: #E6DCD1;
	--color-turquoise: #3EC1B4;
	--color-blush: #F7DDE3;
	--color-sand: #FBEAEE;
	--color-ivory: #FDFBF7;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-hero: 'Allura', 'Brush Script MT', cursive;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;

	--shadow-soft: 0 4px 18px rgba(20,16,16,0.06), 0 1px 3px rgba(20,16,16,0.04);
	--shadow-elevated: 0 20px 44px rgba(20,16,16,0.16);

	--radius-card: 0.5rem;
	--header-height: 80px;

	--btn-radius: 999px;
	--btn-height: 48px;
	--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;

	--checkout-gap: 2rem;
}

@media (min-width: 768px) {
	:root { --header-height: 88px; }
}

@media (min-width: 1024px) {
	:root { --header-height: 96px; }
}

/* ---------------------------------------------------------------
 * Reset / base.
 * ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image):not(.theme-product-thumb img):not(.theme-product-gallery__image):not(.site-logo-img):not(.footer-logo-img) { height: auto; }
.cover-img,
.hero-bg-img,
.theme-product-card__image,
.theme-product-thumb img,
#product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	color: var(--color-foreground);
	margin: 0;
	line-height: 1.05;
}
.font-hero {
	font-family: var(--font-hero);
	font-weight: 600;
	letter-spacing: -0.02em;
}
.accent-text { color: var(--color-accent-deep); font-style: normal; }
.accent-text-teal { color: var(--color-turquoise); font-style: normal; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.break-all { word-break: break-all; }

/* ---------------------------------------------------------------
 * Labels / eyebrows / flourish lines.
 * ------------------------------------------------------------- */
.cs-label {
	font-family: var(--font-body);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 12px;
	line-height: 1.2;
}
.cs-flourish-line { display: inline-flex; align-items: center; gap: 12px; }
.cs-flourish-line::before { content: ''; width: 28px; height: 1px; background-color: currentColor; opacity: 0.7; }
.eyebrow { display: block; margin-bottom: 0; }
.eyebrow--deep { color: var(--color-accent-deep); }
.eyebrow--teal { color: var(--color-turquoise); display: inline-flex; align-items: center; gap: 0.5rem; }
.eyebrow--teal svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------
 * Sections / heading scale (Section 2.2.5 — per-section scoped scales).
 * ------------------------------------------------------------- */
.section { position: relative; padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section--cream { background-color: var(--color-background); color: var(--color-foreground); }
.section--ivory { background-color: var(--color-ivory); color: var(--color-foreground); }
.section--sand { background-color: var(--color-sand); color: var(--color-foreground); overflow: hidden; }
.section--shop {
	background: linear-gradient(to bottom, var(--color-ivory) 0%, color-mix(in srgb, var(--color-sand) 40%, transparent) 50%, var(--color-secondary) 100%);
	color: var(--color-foreground);
}

.section-heading-block { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.section-subtitle { font-family: var(--font-body); color: var(--color-muted-foreground); font-size: 1rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .section-subtitle { font-size: 1.125rem; } }

.section-heading { font-size: 2.25rem; line-height: 1.02; margin-top: 1.25rem; letter-spacing: -0.01em; }
@media (min-width: 768px) { .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 4.5rem; } }
.section-heading .accent-text { font-family: var(--font-hero); font-weight: 600; font-size: 1.15em; }

/* ---------------------------------------------------------------
 * Reveal on scroll (Section 2.1).
 * ------------------------------------------------------------- */
[data-cs-fade], .reveal-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 800ms cubic-bezier(0.22,1,0.36,1), transform 800ms cubic-bezier(0.22,1,0.36,1);
	transition-delay: var(--cs-fade-delay, 0ms);
}
[data-cs-fade].is-visible, .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-blur { filter: blur(8px); opacity: 0; transition: filter 900ms cubic-bezier(0.22,1,0.36,1), opacity 900ms cubic-bezier(0.22,1,0.36,1); }
.reveal-blur.is-visible { filter: blur(0); opacity: 1; }

body.is-customizer [data-cs-fade],
body.is-customizer .reveal-item,
body.is-customizer .reveal-blur {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
.animate-slide-up { animation: slideUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }

@keyframes mia-ken {
	0% { transform: scale(1) translate3d(0,0,0); }
	50% { transform: scale(1.06) translate3d(-1%,-1%,0); }
	100% { transform: scale(1) translate3d(0,0,0); }
}
.mia-ken { animation: mia-ken 24s ease-in-out infinite; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
	[data-cs-fade], .reveal-item, .reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
	.mia-ken, .marquee-track, .btn-shimmer::before { animation: none !important; }
}

/* ---------------------------------------------------------------
 * Buttons.
 * ------------------------------------------------------------- */
.theme-btn-primary, .theme-btn-outline-dark, .theme-btn-outline-light, .theme-btn-teal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-family: var(--font-body);
	font-weight: var(--btn-font-weight);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-btn-primary svg, .theme-btn-outline-dark svg, .theme-btn-outline-light svg, .theme-btn-teal svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.theme-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.theme-btn-primary:hover { background-color: var(--color-accent); color: var(--color-foreground); border-color: var(--color-accent); }
.theme-btn-teal { background-color: var(--color-primary); color: var(--color-primary-foreground); border: 2px solid var(--color-turquoise); }
.theme-btn-teal:hover { background-color: #B73A65; color: #fff; border-color: #B73A65; }
.theme-btn-outline-dark { background-color: transparent; color: var(--color-foreground); border-color: var(--color-foreground); }
.theme-btn-outline-dark:hover { background-color: var(--color-foreground); color: var(--color-background); }
.theme-btn-outline-light { background-color: transparent; color: var(--color-sand); border-color: color-mix(in srgb, var(--color-sand) 60%, transparent); }
.theme-btn-outline-light:hover { background-color: var(--color-sand); color: var(--color-foreground); }

.btn-shimmer { position: relative; overflow: hidden; isolation: isolate; }
.btn-shimmer::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 900ms cubic-bezier(0.22,1,0.36,1);
	pointer-events: none; z-index: 1;
}
.btn-shimmer:hover::before { transform: translateX(120%); }
.btn-shimmer > span, .btn-shimmer > svg { position: relative; z-index: 2; }

/* ---------------------------------------------------------------
 * Announcement bar.
 * ------------------------------------------------------------- */
.announcement-bar { position: relative; background-color: var(--color-secondary); border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); }
.announcement-bar__inner { padding: 0.5rem 1.5rem; text-align: center; }
.announcement-bar__text { color: var(--color-foreground); font-size: 12px; margin: 0; }
.announcement-bar__dismiss {
	position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
	padding: 0.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
}
.announcement-bar__dismiss svg { width: 14px; height: 14px; }
.announcement-bar__dismiss:hover { color: var(--color-accent-deep); }
.announcement-bar.is-dismissed { display: none; }

/* ---------------------------------------------------------------
 * Header.
 * ------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50; width: 100%;
	background-color: var(--color-background);
	border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 1rem; }
@media (min-width: 768px) { .site-nav { height: 88px; } }
@media (min-width: 1024px) { .site-nav { height: 96px; } }
.site-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; padding-block: 0.25rem; }
.site-header .site-brand img.site-logo-img {
	height: 3.5rem;
	max-height: 3.5rem;
	width: auto;
	max-width: none;
	object-fit: contain;
	transition: transform 0.5s ease;
	filter: drop-shadow(0 4px 18px rgba(20,16,16,0.10));
}
@media (min-width: 768px) {
	.site-header .site-brand img.site-logo-img { height: 4rem; max-height: 4rem; }
}
@media (min-width: 1024px) {
	.site-header .site-brand img.site-logo-img { height: 4.5rem; max-height: 4.5rem; }
}
.site-brand:hover .site-logo-img { transform: scale(1.06); }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.site-brand-name-extra { font-family: var(--font-body); font-weight: 600; color: var(--color-foreground); }

.site-nav__links { display: none; align-items: center; gap: 2rem; margin-left: auto; }
@media (min-width: 1024px) { .site-nav__links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-link {
	font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--color-foreground);
	letter-spacing: 0.01em; transition: color 0.2s ease; background: none; border: none; cursor: pointer;
}
.theme-nav-link:hover { color: var(--color-turquoise); }

.site-nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-toggle {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-accent) 60%, transparent);
	color: var(--color-foreground); transition: background-color 0.2s ease, color 0.2s ease;
}
.cart-toggle svg { width: 16px; height: 16px; }
.cart-toggle:hover { background-color: var(--color-accent); color: var(--color-foreground); }
.theme-cart-count {
	position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; background-color: var(--color-accent); color: var(--color-foreground);
	font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle { display: inline-flex; padding: 0.5rem; color: var(--color-foreground); }
.mobile-menu-toggle svg { width: 20px; height: 20px; }
.mobile-menu-toggle__icon-close { display: none; }
.mobile-menu-toggle.is-open .mobile-menu-toggle__icon-open { display: none; }
.mobile-menu-toggle.is-open .mobile-menu-toggle__icon-close { display: inline-flex; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

.mobile-menu { display: none; border-top: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); padding: 1rem 0; }
.mobile-menu.is-open { display: block; animation: fadeIn 0.4s ease; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__list a, .mobile-menu__list button,
.mobile-menu .theme-nav-list a, .mobile-menu .theme-nav-list button {
	display: block; width: 100%; text-align: left; font-family: var(--font-body);
	padding: 0.75rem 0.5rem; border-radius: 6px; color: var(--color-foreground); font-size: 15px;
	background: none; border: none; cursor: pointer;
}
.mobile-menu__list a:hover, .mobile-menu__list button:hover,
.mobile-menu .theme-nav-list a:hover, .mobile-menu .theme-nav-list button:hover {
	background-color: color-mix(in srgb, var(--color-accent) 10%, transparent); color: var(--color-accent-deep);
}
.mobile-menu .theme-nav-list {
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
	width: 100%;
}

body.is-solid .site-header { background-color: var(--color-background); }
main { padding-top: 0; }
body.theme-no-hero .site-main { padding-top: var(--header-height); }

/* ---------------------------------------------------------------
 * Hero.
 * ------------------------------------------------------------- */
.hero-section {
	position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
	background-color: #141110; overflow: hidden;
}
.hero-section__bg { position: absolute; inset: 0; overflow: hidden; background-color: #141110; z-index: 0; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__overlay {
	position: absolute; inset: 0; z-index: 2; pointer-events: none;
	background: linear-gradient(180deg, rgba(20,16,16,0.55) 0%, rgba(20,16,16,0.30) 60%, rgba(20,16,16,0.55) 100%);
}
.hero-section__content { position: relative; z-index: 10; padding: 2rem 0; text-align: center; }
@media (min-width: 768px) { .hero-section__content { padding: 2.5rem 0; } }
@media (min-width: 1024px) { .hero-section__content { padding: 3rem 0; } }
.hero-section__inner { max-width: 64rem; margin: 0 auto; }
.hero-title {
	font-family: var(--font-hero); font-weight: 600; letter-spacing: -0.02em;
	font-size: 2.75rem; line-height: 1.05; color: #FBEAEE;
}
@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }
.hero-subtitle {
	font-family: var(--font-body); color: color-mix(in srgb, var(--color-secondary) 85%, transparent);
	font-size: 1rem; margin-top: 1.25rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-weight: 400; line-height: 1.7;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; margin-top: 1.5rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.75rem; }
@media (min-width: 768px) { .hero-ctas { margin-top: 2rem; } }

/* ---------------------------------------------------------------
 * Services.
 * ------------------------------------------------------------- */
.services-section__heading, .about-section__heading, .gallery-section__heading, .testimonials-section__heading { font-size: 2.25rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.service-card {
	display: flex; flex-direction: column; height: 100%;
	background-color: #FFFDFB; border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
	border-radius: 12px; padding: 2.25rem;
	transition: transform 500ms cubic-bezier(0.22,1,0.36,1), border-color 500ms cubic-bezier(0.22,1,0.36,1), border-width 500ms;
}
@media (min-width: 1024px) { .service-card { padding: 2.5rem; } }
.service-card:hover { transform: translateY(-1rem) scale(1.02); border-color: var(--color-accent-deep); border-width: 2px; }
.service-card__icon {
	width: 5rem; height: 5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.75rem; background-color: var(--color-blush); color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.service-card__icon svg { width: 2.5rem; height: 2.5rem; }
.service-card:hover .service-card__icon { transform: rotate(8deg) scale(1.25); }
.service-card__title { font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.75rem; font-weight: 500; }
@media (min-width: 768px) { .service-card__title { font-size: 1.75rem; } }
.service-card__body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }

/* ---------------------------------------------------------------
 * CTA bands.
 * ------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); }
@media (min-width: 768px) { .cta-band { padding: 6rem 0; } }
.cta-band--celebrations { border-color: color-mix(in srgb, var(--color-turquoise) 30%, transparent); }
.cta-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; }
.cta-band--celebrations .cta-band__bg { opacity: 0.4; }
.cta-band__tint { position: absolute; inset: 0; }
.cta-band__tint--blush { background: linear-gradient(135deg, color-mix(in srgb, var(--color-blush) 35%, transparent), color-mix(in srgb, var(--color-sand) 30%, transparent), color-mix(in srgb, var(--color-secondary) 35%, transparent)); }
.cta-band__tint--celebrations { background: linear-gradient(135deg, color-mix(in srgb, var(--color-blush) 40%, transparent), color-mix(in srgb, var(--color-sand) 35%, transparent), color-mix(in srgb, var(--color-secondary) 40%, transparent)); }
.cta-band__decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-band__panel {
	position: relative; overflow: hidden; border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
	padding: 2rem; background-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px);
	box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .cta-band__panel { padding: 3.5rem; } }
.cta-band__panel--celebrations { border: 2px solid color-mix(in srgb, var(--color-turquoise) 40%, transparent); box-shadow: none; }
.cta-band__glow { position: absolute; top: -4rem; right: -4rem; width: 16rem; height: 16rem; border-radius: 999px; background: rgba(255,255,255,0.5); filter: blur(64px); pointer-events: none; }
.cta-band__glow--teal { background: color-mix(in srgb, var(--color-turquoise) 10%, transparent); }
.cta-band__row { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 2rem; }
@media (max-width: 767px) {
	.cta-band__row { align-items: center; }
	.cta-band__copy { text-align: center; width: 100%; }
}
@media (min-width: 768px) { .cta-band__row { flex-direction: row; align-items: center; } }
.cta-band__copy { max-width: 42rem; }
.cta-band__title { font-size: 1.875rem; line-height: 1.05; margin-top: 1rem; }
@media (min-width: 768px) { .cta-band__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 3rem; } }
.cta-band__body { font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-size: 15px; margin-top: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .cta-band__body { font-size: 1rem; } }
.cta-band__cta { flex-shrink: 0; }

/* ---------------------------------------------------------------
 * About / Our Story.
 * ------------------------------------------------------------- */
.about-section { overflow: hidden; }
@media (max-width: 767px) {
	.about-section .about-section__grid {
		width: 100%;
		max-width: 100%;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
		overflow: hidden;
		grid-template-columns: minmax(0, 1fr);
	}
	.about-section__copy,
	.about-section__media { min-width: 0; width: 100%; max-width: 100%; }
	.about-section__heading { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
	.about-section__body { overflow-wrap: break-word; }
	.about-section__frame {
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		padding-bottom: 2.75rem;
		overflow: hidden;
		box-sizing: border-box;
	}
	.about-section__image-wrap { width: 100%; max-width: 100%; }
	.about-section__badge {
		right: 0.5rem;
		bottom: 0.25rem;
		left: auto;
		max-width: calc(100% - 1rem);
		padding: 0.625rem 1rem;
	}
	.about-section__badge p { white-space: normal; text-align: center; line-height: 1.35; letter-spacing: 0.08em; }
}
.about-section__decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.decor-icon { position: absolute; color: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.decor-icon svg { width: 6rem; height: 6rem; }
.about-section__decor .decor-icon--1 { top: 12%; left: 4%; transform: rotate(12deg); }
.about-section__decor .decor-icon--2 { bottom: 18%; left: 6%; transform: rotate(-12deg); width: 5rem; }
.about-section__decor .decor-icon--3 { top: 8%; right: 7%; transform: rotate(-6deg); }
.about-section__decor .decor-icon--4 { bottom: 22%; right: 5%; transform: rotate(12deg); width: 5rem; }
.about-section__decor .decor-icon--5 { top: 45%; right: 3%; width: 5rem; }
.about-section__decor .decor-icon--6 { bottom: 10%; left: 45%; width: 4rem; opacity: 0.9; }
.about-section__grid { position: relative; z-index: 10; display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; align-items: center; width: 100%; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.about-section__copy { grid-column: 1 / -1; order: 2; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__copy { grid-column: span 6; order: 1; } }
.about-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 4.5rem; } }
.about-section__body { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1rem; line-height: 1.7; max-width: 100%; }
@media (min-width: 768px) { .about-section__body { font-size: 1.125rem; } }
.about-section__cta { margin-top: 2rem; }
.about-section__media { grid-column: 1 / -1; order: 1; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__media { grid-column: span 6; order: 2; } }
.about-section__frame { position: relative; padding-bottom: 2rem; padding-right: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__frame { padding-bottom: 2.5rem; padding-right: 2rem; } }
.about-section__image-wrap {
	position: relative; width: 100%; max-width: 100%; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); box-shadow: var(--shadow-soft);
	transition: border-color 0.5s ease;
}
.about-section__image-wrap:hover { border-color: var(--color-accent-deep); border-width: 2px; }
.about-section__image { transition: transform 900ms ease-out; }
.about-section__image-wrap:hover .about-section__image { transform: scale(1.08); }
.about-section__badge {
	position: absolute; bottom: 0; right: 0; background-color: var(--color-blush); color: var(--color-foreground);
	border-radius: 999px; padding: 0.75rem 1.5rem; border: 1px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
	z-index: 10; transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-section__badge:hover { transform: translateY(-0.5rem) scale(1.1); border-color: var(--color-accent-deep); }
.about-section__badge p { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin: 0; }
@media (min-width: 768px) {
	.about-section__badge p { white-space: nowrap; }
}

/* ---------------------------------------------------------------
 * Gallery marquee + lightbox.
 * ------------------------------------------------------------- */
.gallery-marquee { position: relative; overflow: hidden; padding: 1rem 0; }
.gallery-marquee__track { display: flex; gap: 1.25rem; width: max-content; animation: marquee-scroll 60s linear infinite; will-change: transform; }
@keyframes marquee-scroll { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-50%,0,0); } }
.gallery-marquee:hover .gallery-marquee__track { animation-play-state: paused; }
@media (min-width: 1024px) { .gallery-marquee__track { gap: 1.75rem; } }
@media (max-width: 767px) { .gallery-marquee__track { animation-duration: 40s; } }
.gallery-marquee__item {
	position: relative; flex-shrink: 0; width: 260px; aspect-ratio: 4/5; border-radius: 8px; overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); background-color: var(--color-secondary);
	box-shadow: var(--shadow-soft); transition: transform 500ms cubic-bezier(0.22,1,0.36,1), border-color 500ms, border-width 500ms;
	padding: 0;
}
@media (min-width: 640px) { .gallery-marquee__item { width: 320px; } }
@media (min-width: 1024px) { .gallery-marquee__item { width: 380px; } }
.gallery-marquee__item:hover { transform: translateY(-0.75rem) scale(1.04); border-color: var(--color-accent-deep); border-width: 2px; }
.gallery-marquee__img { transition: transform 900ms ease-out; }
.gallery-marquee__item:hover .gallery-marquee__img { transform: scale(1.12); }

.lightbox {
	display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center;
	padding: 1rem; background-color: rgba(20,17,16,0.9);
}
.lightbox.is-open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border-radius: 999px; background-color: rgba(253,251,247,0.1); color: var(--color-ivory); display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover { background-color: var(--color-ivory); color: var(--color-foreground); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__image { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 6px; box-shadow: var(--shadow-elevated); }

/* ---------------------------------------------------------------
 * Shop grid + product cards.
 * ------------------------------------------------------------- */
.shop-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 4.5rem; } }
.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, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.shop-empty { text-align: center; color: var(--color-muted-foreground); padding: 3rem 0; }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card {
	display: flex; flex-direction: column; height: 100%; width: 100%;
	background-color: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden;
	transition: transform 500ms cubic-bezier(0.22,1,0.36,1), border-color 500ms, border-width 500ms;
}
.theme-product-card:hover { transform: translateY(-0.75rem) scale(1.02); border-color: var(--color-accent-deep); border-width: 2px; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/5; width: 100%; overflow: hidden; background-color: var(--color-secondary); }
.theme-product-card__image { transition: transform 900ms ease-out; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.10); }
.theme-product-card__image-tint {
	position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent, transparent);
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__image-tint { opacity: 1; }
.theme-product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; gap: 0.5rem; }
.theme-product-card__category { color: var(--color-accent-deep); font-size: 11px; }
.theme-product-card__title { font-size: 1.5rem; font-weight: 500; line-height: 1.3; }
.theme-product-card__desc {
	font-size: 14px; font-family: var(--font-body); color: var(--color-muted-foreground); margin-top: 0.25rem; flex: 1;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); min-width: 0; }
.theme-product-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.375rem; font-size: 0.85em; }
.theme-product-card__view { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent-deep); transition: color 0.3s ease; }
.theme-product-card__view svg { width: 12px; height: 12px; transition: transform 0.5s ease; }
.theme-product-card:hover .theme-product-card__view { color: var(--color-accent); }
.theme-product-card:hover .theme-product-card__view svg { transform: translateX(0.5rem); }

/* ---------------------------------------------------------------
 * Testimonials.
 * ------------------------------------------------------------- */
.testimonials-section__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.testimonials-section__tint { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-sand) 70%, transparent), color-mix(in srgb, var(--color-sand) 50%, transparent), color-mix(in srgb, var(--color-sand) 80%, transparent)); }
.testimonials-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .testimonials-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .testimonials-section__heading { font-size: 4.5rem; } }
.testimonials-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testimonial-card {
	position: relative; background-color: #FFFDFB; border-radius: 8px; padding: 2rem;
	border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	transition: transform 500ms cubic-bezier(0.22,1,0.36,1), border-color 500ms, border-width 500ms;
}
@media (min-width: 768px) { .testimonial-card { padding: 2.5rem; } }
.testimonial-card:hover { transform: translateY(-0.75rem) rotate(-2deg) scale(1.04); border-color: var(--color-accent-deep); border-width: 2px; }
.testimonial-card__stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-card__star svg { width: 1rem; height: 1rem; color: var(--color-accent); }
.testimonial-card__star svg.is-filled, .testimonial-card__star svg { fill: var(--color-accent); }
.testimonial-card__quote { font-family: var(--font-hero); font-size: 1.5rem; line-height: 1.3; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .testimonial-card__quote { font-size: 1.75rem; } }
.testimonial-card__footer { padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent); }
.testimonial-card__name { font-family: var(--font-display); font-size: 1.125rem; }
.testimonial-card__occasion { font-family: var(--font-body); color: var(--color-muted-foreground); font-size: 13px; margin-top: 0.125rem; }
.testimonial-card__heart { position: absolute; top: 1.5rem; right: 1.5rem; opacity: 0; transition: opacity 0.3s ease; }
.testimonial-card__heart svg { width: 1rem; height: 1rem; color: var(--color-turquoise); fill: var(--color-turquoise); }
.testimonial-card:hover .testimonial-card__heart { opacity: 1; }

/* ---------------------------------------------------------------
 * Contact section + form.
 * ------------------------------------------------------------- */
.contact-section { overflow: hidden; }
.contact-section__decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.contact-section__decor .decor-icon--1 { top: 8%; left: 6%; width: 7rem; }
.contact-section__decor .decor-icon--2 { top: 62%; left: 3%; width: 6rem; transform: rotate(-12deg); }
.contact-section__decor .decor-icon--3 { top: 18%; right: 8%; width: 6rem; transform: rotate(12deg); }
.contact-section__decor .decor-icon--4 { bottom: 10%; right: 5%; width: 7rem; }
.contact-section__decor .decor-icon--5 { top: 40%; left: 45%; width: 5rem; opacity: 0.9; }
.contact-section__decor .decor-icon--6 { bottom: 22%; left: 38%; width: 5rem; opacity: 0.9; }
.contact-section__decor .decor-icon--7 { top: 70%; right: 42%; width: 4rem; opacity: 0.85; }
.contact-section__decor .decor-icon--8 { top: 6%; right: 38%; width: 5rem; opacity: 0.9; }
.contact-section__grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-section__info { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.contact-title { font-size: 2.25rem; margin-top: 1.25rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.75rem; } }
.contact-section__subtitle { font-family: var(--font-body); color: var(--color-muted-foreground); font-size: 1rem; max-width: 32rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .contact-section__subtitle { font-size: 1.125rem; } }
.contact-section__list { display: flex; flex-direction: column; gap: 1rem; font-family: var(--font-body); font-size: 15px; }
.contact-section__link { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--color-foreground); transition: color 0.2s ease; min-width: 0; }
.contact-section__link:hover { color: var(--color-accent-deep); }
.contact-section__icon { width: 44px; height: 44px; border-radius: 999px; background-color: var(--color-blush); border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease, border-color 0.3s ease; }
.contact-section__icon svg { width: 1rem; height: 1rem; }
.contact-section__link:hover .contact-section__icon { transform: scale(1.25); border-color: var(--color-accent-deep); }
.contact-section__address { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--color-foreground); }
.contact-section__address a:hover { color: var(--color-accent-deep); }

.contact-section__form-card, .contact-modal__body {
	background-color: #FFFDFB; border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .contact-section__form-card { padding: 2.5rem; } }
.contact-section__form-heading { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .contact-section__form-heading { font-size: 2.25rem; } }
.contact-section__form-subtitle { font-family: var(--font-body); color: var(--color-muted-foreground); font-size: 15px; margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-form__row--2col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-form__row--2col { grid-template-columns: 1fr 1fr; } }
.contact-form__field { display: flex; flex-direction: column; min-width: 0; }
.contact-form__field label { font-size: 14px; font-weight: 500; margin-bottom: 0.375rem; font-family: var(--font-body); color: var(--color-foreground); }
.contact-form__field input, .contact-form__field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background-color: var(--color-secondary);
	border: 1px solid var(--color-border); font-size: 16px; border-radius: 6px; color: var(--color-foreground);
	font-family: var(--font-body); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__field textarea { resize: none; }
.contact-form__field input::placeholder, .contact-form__field textarea::placeholder { color: var(--color-muted-foreground); }
.contact-form__field input:focus, .contact-form__field textarea:focus {
	outline: none; border-color: color-mix(in srgb, var(--color-accent) 60%, transparent);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 40%, transparent);
}
.contact-form__actions { display: flex; }
.contact-form__actions--end { justify-content: flex-end; }
.contact-form__submit, .contact-form__actions button[type="submit"] { width: 100%; }
.contact-form.is-submitting button[type="submit"] { opacity: 0.7; pointer-events: none; }

.contact-form__success { display: none; text-align: center; padding: 2rem 0; }
.contact-form__success.is-visible { display: block; animation: fadeIn 0.3s ease; }
.contact-form__success-icon { width: 3.5rem; height: 3.5rem; background-color: var(--color-blush); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent); }
.contact-form__success-icon svg { width: 1.75rem; height: 1.75rem; }
.contact-form__success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form__success p { font-family: var(--font-body); font-size: 14px; color: var(--color-muted-foreground); }

/* ---------------------------------------------------------------
 * Contact modal.
 * ------------------------------------------------------------- */
.contact-modal { display: none; position: fixed; inset: 0; z-index: 90; align-items: center; justify-content: center; padding: 1rem; }
.contact-modal.is-open { display: flex; }
.contact-modal__overlay { position: fixed; inset: 0; background-color: rgba(20,17,16,0.5); animation: fadeIn 0.2s ease; }
.contact-modal__panel {
	position: relative; z-index: 1; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto;
	background-color: var(--color-background); border: 1px solid var(--color-border); border-radius: 10px;
	padding: 2rem; box-shadow: var(--shadow-elevated); animation: slideUp 0.3s cubic-bezier(0.22,1,0.36,1);
}
.contact-modal__close { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem; opacity: 0.7; transition: opacity 0.2s ease; }
.contact-modal__close:hover { opacity: 1; }
.contact-modal__close svg { width: 18px; height: 18px; }
.contact-modal__title { font-size: 1.875rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.contact-modal__subtitle { font-family: var(--font-body); color: var(--color-muted-foreground); font-size: 15px; margin-bottom: 1rem; }
.contact-modal__quicklink { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 14px; color: var(--color-muted-foreground); font-family: var(--font-body); margin-bottom: 1.25rem; }
.contact-modal__quicklink a { display: inline-flex; align-items: center; gap: 0.5rem; }
.contact-modal__quicklink a svg { width: 1rem; height: 1rem; }
.contact-modal__quicklink a:hover { color: var(--color-accent-deep); }
.contact-modal__body { padding: 0; border: none; box-shadow: none; }

/* ---------------------------------------------------------------
 * Footer.
 * ------------------------------------------------------------- */
.site-footer {
	position: relative; overflow: hidden;
	border-top: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
	background: linear-gradient(160deg, var(--color-sand) 0%, var(--color-blush) 45%, var(--color-secondary) 100%);
}
.site-footer__inner {
	padding: 4rem 1.5rem 5rem;
	position: relative;
	z-index: 10;
}
@media (min-width: 640px) {
	.site-footer__inner { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
	.site-footer__inner { padding: 5rem 2rem 5.5rem; }
}
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.site-footer__brand-col { grid-column: 1 / -1; }
@media (min-width: 1024px) { .site-footer__brand-col { grid-column: span 5; } }
.footer-brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer .footer-brand img.footer-logo-img {
	height: 7rem;
	max-height: 7rem;
	width: auto;
	max-width: none;
	object-fit: contain;
	transition: transform 0.5s ease;
}
@media (min-width: 768px) {
	.site-footer .footer-brand img.footer-logo-img { height: 8rem; max-height: 8rem; }
}
@media (min-width: 1024px) {
	.site-footer .footer-brand img.footer-logo-img { height: 9rem; max-height: 9rem; }
}
.footer-brand:hover .footer-logo-img { transform: scale(1.06); }
.footer-tagline { font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-top: 1.5rem; max-width: 28rem; font-size: 15px; line-height: 1.6; }
.footer-socials { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social-link { width: 36px; height: 36px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent); display: flex; align-items: center; justify-content: center; color: var(--color-foreground); transition: color 0.2s ease, border-color 0.2s ease; }
.footer-social-link svg { width: 1rem; height: 1rem; }
.footer-social-link:hover { color: var(--color-turquoise); border-color: var(--color-turquoise); }
.site-footer__nav-col { grid-column: 1 / -1; }
@media (min-width: 1024px) { .site-footer__nav-col { grid-column: span 3; } }
.site-footer__contact-col { grid-column: 1 / -1; min-width: 0; width: 100%; }
@media (min-width: 1024px) { .site-footer__contact-col { grid-column: span 4; width: auto; } }
.footer-col-heading { color: var(--color-accent-deep); margin-bottom: 1.25rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-link { font-size: 14px; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 80%, transparent); text-align: left; transition: color 0.2s ease; }
.footer-nav-link:hover { color: var(--color-accent-deep); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 14px; font-family: var(--font-body); width: 100%; }
@media (max-width: 767px) { .footer-contact-list { font-size: 13px; } }
.footer-contact-link {
	display: inline-flex; align-items: center; gap: 0.5rem; width: fit-content; max-width: 100%;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s ease;
}
.footer-contact-link span { white-space: nowrap; }
.footer-contact-link svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-contact-link:hover { color: var(--color-accent-deep); }
.footer-contact-address {
	display: flex; align-items: center; gap: 0.5rem; width: 100%;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.footer-contact-address svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-contact-address a {
	white-space: nowrap; width: fit-content; max-width: 100%;
	transition: color 0.2s ease;
}
.footer-contact-address a:hover { color: var(--color-accent-deep); }
.site-footer__bottom {
	margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
	display: grid; grid-template-columns: 1fr; gap: 0.75rem; align-items: center; text-align: center;
}
@media (min-width: 768px) { .site-footer__bottom { grid-template-columns: repeat(3, 1fr); } }
.footer-copyright, .footer-credit { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-family: var(--font-body); margin: 0; }
@media (min-width: 768px) { .footer-copyright { text-align: left; } }
.footer-credit a { color: var(--color-accent-deep); font-weight: 500; transition: color 0.2s ease; }
.footer-credit a:hover { color: var(--color-turquoise); }
.footer-back-to-top { display: none; }
@media (min-width: 768px) { .footer-back-to-top { display: inline-flex; align-items: center; justify-content: flex-end; gap: 0.375rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-left: auto; } }
.footer-back-to-top:hover { color: var(--color-accent-deep); }
.footer-back-to-top svg { width: 14px; height: 14px; }

.back-to-top-fab {
	position: fixed; bottom: 2rem; right: 2rem; z-index: 50; width: 40px; height: 40px; border-radius: 999px;
	background-color: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; pointer-events: none;
}
@media (min-width: 768px) { .back-to-top-fab { width: 48px; height: 48px; } }
.back-to-top-fab.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top-fab:hover { transform: scale(1.18) translateY(-4px); }
.back-to-top-fab svg { width: 20px; height: 20px; color: #fff; }
@media (min-width: 768px) { .back-to-top-fab svg { width: 24px; height: 24px; } }

/* ---------------------------------------------------------------
 * 404.
 * ------------------------------------------------------------- */
.not-found-page { min-height: 60vh; display: flex; align-items: center; }
.not-found-page__inner { width: 100%; text-align: center; padding: 5rem 0; }
.not-found-page__content { max-width: 32rem; margin: 0 auto; }
.not-found-page__code { font-size: 2.5rem; margin-bottom: 1rem; }
.not-found-page__body { font-family: var(--font-body); color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* ---------------------------------------------------------------
 * Generic content pages.
 * ------------------------------------------------------------- */
.generic-content .page-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.generic-content .entry-content { font-family: var(--font-body); line-height: 1.7; }

/* =================================================================
 * WOOCOMMERCE
 * ================================================================= */

/* Add-to-cart button style override (Section 11.4.1). */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.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;
}
.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-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; }

/* Notices — scoped visibility (Section 14.1). */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body);
	border-top-color: var(--color-accent) !important;
	border-radius: 6px;
}
.woocommerce-error { border-top-color: var(--color-primary) !important; }

/* ---------------------------------------------------------------
 * Single product page layout.
 * ------------------------------------------------------------- */
.single-product-page { padding-top: 2.5rem; padding-bottom: 6rem; background-color: var(--color-background); }
@media (min-width: 1024px) { .single-product-page { padding-top: 3.5rem; } }
.product-breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted-foreground); font-family: var(--font-body); }
.product-breadcrumb a { transition: color 0.2s ease; }
.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); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 1rem 0 6rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; aspect-ratio: 4/5; background-color: var(--color-secondary); overflow: hidden; border-radius: 6px; box-shadow: var(--shadow-soft); }
.theme-product-gallery__image { display: block; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; max-width: 100%; }
.theme-product-thumb { position: relative; width: 72px; height: 90px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; flex-shrink: 0; }
.theme-product-thumb.is-active { border-color: var(--color-accent-deep); }

.theme-product-info { position: sticky; }
@media (min-width: 1024px) { .theme-product-info { top: 7rem; padding-left: 1rem; } }
.theme-simple-product-cart { display: contents; }
.theme-product-info__category { color: var(--color-accent-deep); font-size: 12px; }
.theme-product-info__title { font-size: 2.25rem; font-weight: 500; line-height: 1.05; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-product-info__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 3.75rem; } }
.theme-product-info__price { font-family: var(--font-display); font-size: 1.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.theme-product-info__price .woocommerce-Price-amount { font-family: var(--font-display); }
.theme-product-info__description,
.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in {
	overflow-wrap: break-word; word-break: break-word;
}
.theme-product-info__description { font-family: var(--font-body); color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; }
.theme-product-info__description p { margin-bottom: 1em; }
.theme-product-info__stock { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.theme-product-info__stock.is-out-of-stock { color: var(--color-primary); font-weight: 600; }

.theme-quantity-block { margin-bottom: 1.5rem; }
.theme-quantity-block__label { color: var(--color-muted-foreground); margin-bottom: 0.75rem; }
.theme-quantity-wrapper, .theme-add-to-cart-area .theme-quantity-wrapper {
	display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 6px; background-color: #fff;
}
.theme-qty-minus, .theme-qty-plus { padding: 0.5rem 0.75rem; transition: background-color 0.2s ease; }
.theme-qty-minus svg, .theme-qty-plus svg { width: 14px; height: 14px; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input {
	width: 44px; text-align: center; padding: 0.5rem 0; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
	background: transparent; font-family: var(--font-body); font-size: 14px; -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-top: 0.5rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.contact-button { flex: 1 1 auto; min-width: 160px; }

.theme-details-accordion { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-details-accordion__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-details-accordion__chevron { width: 14px; height: 14px; transition: transform 0.3s ease; }
.theme-details-accordion.is-open .theme-details-accordion__chevron { transform: rotate(180deg); }
.theme-details-accordion__panel { display: none; padding-bottom: 1.5rem; font-family: var(--font-body); }
.theme-details-accordion.is-open .theme-details-accordion__panel { display: block; }
.theme-details-accordion__panel ul { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-details-accordion__panel li { font-size: 15px; color: var(--color-muted-foreground); display: flex; align-items: flex-start; }
.theme-details-accordion__panel li::before { content: ''; width: 6px; height: 6px; background-color: var(--color-accent); border-radius: 999px; margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.related-products-section__heading { text-align: center; margin-bottom: 3rem; }
.related-products-section__heading span { color: var(--color-accent-deep); }
.related-products-section__heading h2 { font-size: 2.25rem; font-weight: 500; margin-top: 0.75rem; }
@media (min-width: 768px) { .related-products-section__heading h2 { font-size: 3rem; } }

/* Variation 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; }
.theme-attr-select-hidden { display: none !important; }

/* ---------------------------------------------------------------
 * Side cart drawer.
 * ------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 55; background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 56;
	background-color: var(--color-background); box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.5rem; font-weight: 500; }
.theme-cart-drawer__close { padding: 0.25rem; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__close svg { width: 20px; height: 20px; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon svg { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; font-family: var(--font-body); }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { width: 80px; height: 96px; background-color: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: 6px; display: block; }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 14px; font-weight: 500; font-family: var(--font-body); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity 0.2s ease; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-price { font-size: 14px; color: var(--color-accent-deep); font-weight: 600; margin-top: 0.125rem; font-family: var(--font-body); }
.theme-cart-drawer__item-variation { font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 0.2s ease; }
.theme-cart-drawer__qty-btn svg { width: 12px; height: 12px; }
.theme-cart-drawer__qty-btn:hover { background-color: var(--color-secondary); }
.theme-cart-drawer__qty-value { font-size: 14px; width: 24px; text-align: center; font-family: var(--font-body); }
.theme-cart-drawer__remove { margin-left: auto; font-size: 14px; color: var(--color-muted-foreground); font-family: var(--font-body); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; align-items: baseline; }
.theme-cart-drawer__subtotal-label { font-family: var(--font-body); font-weight: 500; }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 500; }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__clear { width: 100%; font-size: 13px; min-height: 40px; }
.theme-cart-drawer__clear svg { width: 14px; height: 14px; }

/* Product card hit-area rule guard (documented even though this design uses
   full-card <a> wrapping with no nested interactive elements — Section 31.3). */
.theme-product-card-wrap .theme-product-card { position: relative; }

/* =================================================================
 * WOOCOMMERCE CHECKOUT BLOCK
 * ================================================================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .page-content-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-content-container { padding: 0 2rem; } }
body.woocommerce-checkout .page-title { font-size: 2.5rem; margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border-radius: 6px;
	border-color: var(--color-border);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 40%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input {
	padding: revert;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--radius-card);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body);
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	font-size: var(--btn-font-size);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	opacity: 0.85;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 6px; font-family: var(--font-body); }

/* Cart / Account page width parity (Section 13.7). */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-cart .page-content-container,
body.woocommerce-account .page-content-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---------------------------------------------------------------
 * Thank-you page.
 * ------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.875rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { list-style: none; font-family: var(--font-body); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* ---------------------------------------------------------------
 * WordPress admin bar — keep sticky header and overlays below it.
 * ------------------------------------------------------------- */
body.admin-bar {
	--wp-admin-bar-offset: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		--wp-admin-bar-offset: var(--wp-admin--admin-bar--height, 46px);
	}
}

body.admin-bar .site-header {
	top: var(--wp-admin-bar-offset);
}

body.admin-bar #theme-cart-drawer {
	top: var(--wp-admin-bar-offset);
	height: calc(100% - var(--wp-admin-bar-offset));
}

body.admin-bar .contact-modal,
body.admin-bar .lightbox {
	top: var(--wp-admin-bar-offset);
	height: calc(100% - var(--wp-admin-bar-offset));
}

/* ---------------------------------------------------------------
 * Icon defaults.
 * ------------------------------------------------------------- */
svg.lucide { flex-shrink: 0; }
