/* =========================================================================
   LINSKI LEGACIES — THEME STYLESHEET
   ========================================================================= */

:root {
	--color-background: #fcfaf8;
	--color-foreground: #2e113b;
	--color-primary: #2e113b;
	--color-primary-foreground: #fcfaf8;
	--color-secondary: #f6eed5;
	--color-accent: #d4af35;
	--color-rose: #d4af35;
	--color-rose-foreground: #2e113b;
	--color-ivory: #fefdfb;
	--color-linen: #f9f6f0;
	--color-bone: #f0ece6;
	--color-border: #e3dae7;
	--color-destructive: #ca2b2b;
	--color-button-text: #2e113b;
	--logo-height: 44px;

	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;
	--section-padding: 6rem;
	--header-height: 116px;
	--checkout-gap: 2.5rem;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--shadow-soft: 0 4px 20px -8px rgba(46, 17, 59, 0.14);
	--shadow-elevated: 0 20px 50px -18px rgba(46, 17, 59, 0.28);
}

/* =========================================================================
   RESET / BASE
   ========================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.014em;
	margin: 0;
	line-height: 1.15;
}
.font-display { font-family: var(--font-display); font-weight: inherit; font-size: inherit; }
p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: inherit; background: none; border: none; padding: 0; color: inherit; }
[role="button"], label[for], summary,
.theme-cat-filter, .theme-nav-link, .site-header__brand, .catshow-card,
.theme-faq-question, .theme-product-thumb, .theme-attr-pill,
.theme-product-card, .theme-product-card a,
[data-cart-open], [data-cart-close], [data-menu-toggle],
.contact-section__link, .about-section__social-link,
.site-footer__social-link, .site-footer__contact-link,
.theme-btn, .theme-promo-banner__dismiss,
input[type="search"], input[type="submit"], input[type="button"], select {
	cursor: pointer;
}
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select {
	font-family: inherit;
	font-size: 0.875rem;
	color: var(--color-foreground);
}
section[id] { scroll-margin-top: 100px; }

.text-rose { color: var(--color-rose); }
.font-medium.text-rose,
.text-rose.font-medium { font-weight: 500; }
em.italic.text-rose,
.italic.text-rose { font-style: italic; color: var(--color-rose); }

.theme-icon--rose { color: var(--color-rose); flex-shrink: 0; }

/* WordPress admin bar — keep fixed header below toolbar */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar section[id] { scroll-margin-top: 126px; }
}

img:not(.cover-img):not(.catshow-card__img):not(.theme-product-card__img):not(.theme-product-thumb img):not(.theme-cart-drawer__item-thumb img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.catshow-card__img,
.theme-product-card__image-wrapper img,
.theme-product-gallery__main img,
.theme-product-thumb img,
.theme-cart-drawer__item-thumb img,
.services-card__image-wrapper img,
.about-section__image-wrapper img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-inline: 1.5rem;
}
@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 2.5rem; } }

.theme-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-rose);
	font-weight: 500;
	margin: 0 0 1rem;
}
.section-heading { color: var(--color-foreground); font-weight: inherit; }

/* =========================================================================
   REVEAL / SCROLL ANIMATION (Section 2.1)
   ========================================================================= */
.reveal-item, [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal-item.is-revealed, [data-reveal].is-revealed {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 320ms; }
.reveal-delay-4 { transition-delay: 420ms; }

body.is-customizer .reveal-item,
body.is-customizer [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, [data-reveal] { transition: none !important; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: 1px solid transparent;
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.theme-btn-primary { background: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.theme-btn-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn-glass { background: color-mix(in srgb, #fff 10%, transparent); color: #fff; border-color: color-mix(in srgb, #fff 40%, transparent); backdrop-filter: blur(10px); }
.theme-btn-glass:hover { background: color-mix(in srgb, #fff 20%, transparent); }
.theme-btn-ghost { background: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-btn-lg { height: 3.25rem; padding: 0 2rem; }
.theme-btn-sm { height: 2.5rem; padding: 0 1.25rem; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.site-announcement {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar {
	background: color-mix(in srgb, var(--color-ivory) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 1024px) {
	.site-header__row { height: 5rem; display: grid; grid-template-columns: 1fr auto 1fr; }
}
.site-header__burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	color: #fff;
	order: 1;
}
.site-header.is-solid .site-header__burger { color: var(--color-foreground); }
.site-header__burger:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header.is-solid .site-header__burger:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header__burger .theme-icon-close { display: none; }
.site-header__burger.is-open .theme-icon-menu { display: none; }
.site-header__burger.is-open .theme-icon-close { display: inline-flex; }
@media (min-width: 1024px) { .site-header__burger { display: none; } }

.site-header__brand { display: flex; align-items: center; gap: 0.75rem; order: 2; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-text { font-family: var(--font-display); font-size: 1.1rem; color: #fff; }
.site-header.is-solid .site-logo-text { color: var(--color-foreground); }
.site-header__brand-text {
	display: none;
	font-family: var(--font-display);
	font-size: 1.125rem;
	color: #fff;
}
.site-header.is-solid .site-header__brand-text { color: var(--color-foreground); }
@media (min-width: 640px) { .site-header__brand-text { display: inline; } }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; order: 2; justify-self: center; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-link {
	position: relative;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	color: color-mix(in srgb, #fff 85%, transparent);
	transition: color 0.3s ease;
}
.theme-nav-link::after {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.375rem;
	height: 2px;
	border-radius: 999px;
	background: var(--color-rose);
	opacity: 0;
	transform: scaleX(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-nav-link.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}
.site-header:not(.is-solid) .theme-nav-link.is-active { color: #fff; }
.site-header.is-solid .theme-nav-link { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-header.is-solid .theme-nav-link.is-active { color: var(--color-rose); }
.theme-nav-link:hover { color: #fff; }
.site-header.is-solid .theme-nav-link:hover { color: var(--color-rose); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; order: 3; justify-self: end; }
.site-header__cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	color: #fff;
}
.site-header.is-solid .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--color-rose);
	color: var(--color-rose-foreground);
	font-size: 0.75rem;
	font-weight: 500;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background: color-mix(in srgb, var(--color-ivory) 95%, transparent);
	backdrop-filter: blur(20px);
}
.site-header__mobile.is-open { display: block; animation: theme-fade-in 0.3s ease-out both; }
.site-header__mobile .container-wide { padding-block: 1rem; }
.site-header__mobile .theme-nav-list,
.theme-nav-list--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	padding: 0;
}
.site-header__mobile .theme-nav-link,
.theme-nav-list--mobile .theme-nav-link {
	display: block;
	padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.site-header__mobile .theme-nav-list li:last-child .theme-nav-link,
.theme-nav-list--mobile li:last-child .theme-nav-link { border-bottom: 0; }

/* Inner-page (non-home) header is always solid immediately (Section 22.7) */
body.theme-no-hero .site-main,
body.theme-no-hero .single-product-main,
body.theme-no-hero .woocommerce-archive-main { padding-top: var(--header-height); padding-bottom: 4rem; }

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero-section { position: relative; height: 100vh; min-height: 640px; width: 100%; overflow: hidden; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim-a { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.45)); pointer-events: none; }
.hero-section__scrim-b { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%, rgba(0,0,0,0.25)); pointer-events: none; }
.hero-section__content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-block: 5rem; color: #fff; }
.hero-section__inner { max-width: 48rem; margin-top: 3rem; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 999px;
	background: color-mix(in srgb, #fff 10%, transparent);
	border: 1px solid color-mix(in srgb, #fff 30%, transparent);
	backdrop-filter: blur(10px);
	font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.hero-section__badge svg { color: var(--color-rose); }
.hero-section__title {
	margin-top: 1.5rem;
	color: #fff;
	line-height: 1.02;
	letter-spacing: -0.02em;
	font-size: clamp(2.5rem, 6.5vw, 5rem);
	text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero-section__title em { font-style: italic; color: var(--color-rose); }
.hero-section__subtitle { margin: 1.5rem auto 0; max-width: 36rem; font-size: 0.9375rem; color: color-mix(in srgb, #fff 90%, transparent); line-height: 1.6; }
@media (min-width: 640px) { .hero-section__subtitle { font-size: 1rem; } }
.hero-section__features { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; font-size: 0.8125rem; color: color-mix(in srgb, #fff 85%, transparent); }
.hero-section__features li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-section__features svg { color: var(--color-rose); }
.hero-section__ctas { margin-top: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }

/* =========================================================================
   CATEGORY SHOWCASE
   ========================================================================= */
.catshow-section { background: var(--color-ivory); padding: 5rem 0; }
@media (min-width: 768px) { .catshow-section { padding: 7rem 0; } }
.catshow-section__head { max-width: 42rem; margin-bottom: 2.5rem; }
.catshow-section__head .section-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .catshow-section__head .section-heading { font-size: 3rem; } }
.catshow-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .catshow-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .catshow-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.catshow-card { display: block; overflow: hidden; border-radius: 1.5rem; background: var(--color-ivory); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); transition: box-shadow 0.5s ease; }
.catshow-card:hover { box-shadow: var(--shadow-elevated); }
.catshow-card__image-wrapper { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.catshow-card__img { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.catshow-card:hover .catshow-card__img { transform: scale(1.04); }
.catshow-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.25)); }
.catshow-card__body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.catshow-card__body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
@media (min-width: 768px) { .catshow-card__body h3 { font-size: 1.75rem; } }
.catshow-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.25rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); font-size: 0.8125rem; font-weight: 500; transition: background-color 0.3s ease; }
.catshow-card:hover .catshow-card__cta { background: color-mix(in srgb, var(--color-rose) 85%, transparent); }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-section { background: var(--color-linen); padding: 5rem 0; }
@media (min-width: 768px) { .about-section { padding: 7rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__media { display: flex; min-width: 0; }
.about-section__image-wrapper { position: relative; width: 100%; min-height: 420px; aspect-ratio: 4/5; overflow: hidden; border-radius: 1.5rem; background: var(--color-ivory); box-shadow: var(--shadow-elevated); }
.about-section__badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.75rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.about-section__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.about-section__copy { min-width: 0; }
.about-section__copy .section-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .about-section__copy .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__copy .section-heading { font-size: 3.4rem; } }
.about-section__quote { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__body { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.9375rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
.about-section__socials { margin-top: 2.5rem; }
.about-section__social-link { display: inline-flex; align-items: center; gap: 0.5rem; height: 2.75rem; padding: 0 1.25rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-ivory); font-size: 0.875rem; font-weight: 500; transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.about-section__social-link:hover { background: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }
.about-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-rose); }
@media (min-width: 768px) { .about-section__stat-value { font-size: 1.75rem; } }
.about-section__stat-label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* =========================================================================
   SHOP
   ========================================================================= */
.shop-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-section__subtitle { margin-top: 1.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 42rem; }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search input { width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-linen); border: 1px solid var(--color-border); font-size: 0.875rem; }
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-rose) 60%, transparent); }
.shop-section__notice { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; padding: 0.5rem 1rem; border-radius: 999px; background: var(--color-linen); border: 1px solid var(--color-border); font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.shop-section__notice svg { color: var(--color-rose); flex-shrink: 0; }
.shop-section__pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-cat-filter { height: 2.5rem; padding: 0 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; }
.theme-cat-filter:hover { border-color: var(--color-rose); color: var(--color-rose); }
.theme-cat-filter.is-active { background: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__load-more { margin-top: 3rem; display: flex; justify-content: center; }

/* Equal-height product grid (Section 31.9) */
.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 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: 2.5rem 1.5rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; width: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; background: var(--color-linen); margin-bottom: 1rem; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; display: block; }
.theme-product-card__image-wrapper *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper img { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.04); }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; background: var(--color-foreground); color: var(--color-background); font-size: 0.6875rem; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; }
.theme-product-card__quick-actions { position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 3; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.5s ease; }
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; }
.theme-product-card__add { flex: 1; pointer-events: auto; }
.theme-product-card__view { width: 2.5rem; height: 2.5rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); pointer-events: auto; z-index: 3; transition: background-color 0.3s ease; }
.theme-product-card__view:hover { background: color-mix(in srgb, var(--color-rose) 85%, transparent); }
.theme-product-card__info { display: block; flex: 1; padding: 0 0.125rem; }
.theme-product-card__cat { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; min-width: 0; }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.3rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--color-rose); }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35rem; font-weight: 400; }

.theme-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.theme-shop-empty { text-align: center; padding: 5rem 0; }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee-section { background: var(--color-rose); padding: 1.25rem 0; overflow: hidden; }
.marquee-section__track { display: flex; white-space: nowrap; width: max-content; animation: theme-marquee 22s linear infinite; }
.marquee-section__item { display: flex; align-items: center; flex-shrink: 0; color: var(--color-rose-foreground); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .marquee-section__item { font-size: 1.25rem; } }
.marquee-section__item span:first-child { margin: 0 1.5rem; }
@media (min-width: 768px) { .marquee-section__item span:first-child { margin: 0 2rem; } }
.marquee-section__dot { color: color-mix(in srgb, var(--color-rose-foreground) 70%, transparent); font-size: 0.875rem; }
@keyframes theme-marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__head { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section__head .section-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .services-section__head .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__head .section-heading { font-size: 3.2rem; } }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1280px) { .services-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.5rem; } }
.services-card { display: flex; flex-direction: column; background: var(--color-linen); border: 1px solid var(--color-border); border-radius: 1.25rem; overflow: hidden; transition: border-color 0.3s ease; }
.services-card:hover { border-color: color-mix(in srgb, var(--color-rose) 50%, transparent); }
.services-card__image-wrapper { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.services-card__image-wrapper img { transition: transform 0.7s ease; }
.services-card:hover .services-card__image-wrapper img { transform: scale(1.05); }
.services-card__icon { position: absolute; top: 1rem; left: 1rem; z-index: 2; width: 2.75rem; height: 2.75rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); box-shadow: var(--shadow-soft); }
.services-card__body { padding: 1.75rem; }
@media (min-width: 768px) { .services-card__body { padding: 2rem; } }
.services-card__body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .services-card__body h3 { font-size: 1.5rem; } }
.services-card__body p { font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* =========================================================================
   FAQ + TESTIMONIALS
   ========================================================================= */
.faq-section { background: var(--color-linen); border-top: 1px solid var(--color-border); padding: 6rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-section__stack { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .faq-section__stack { gap: 6rem; } }
.faq-section__row { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__row { grid-template-columns: 4fr 8fr; } }
.faq-section__side .section-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .faq-section__side .section-heading { font-size: 3rem; } }
.faq-section__subtitle { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 24rem; }
.faq-section__card { display: none; position: relative; margin-top: 2.5rem; overflow: hidden; border-radius: 1.25rem; border: 1px solid var(--color-border); background: var(--color-linen); padding: 1.75rem; }
@media (min-width: 1024px) { .faq-section__card { display: block; } }
.faq-section__card-glow { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 50%; background: var(--color-secondary); filter: blur(40px); }
.faq-section__card-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); margin-bottom: 1.25rem; }
.faq-section__card h3 { position: relative; font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.5rem; }
.faq-section__card p { position: relative; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }

.theme-faq-row { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq-question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; }
@media (min-width: 768px) { .theme-faq-question span:first-child { font-size: 1.25rem; } }
.theme-faq-icon { flex-shrink: 0; color: var(--color-rose); }
.theme-faq-icon .icon-minus { display: none; }
.theme-faq-row.is-open .theme-faq-icon .icon-plus { display: none; }
.theme-faq-row.is-open .theme-faq-icon .icon-minus { display: inline-flex; }
.theme-faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease-out; }
.theme-faq-row.is-open .theme-faq-answer-wrap { grid-template-rows: 1fr; }
.theme-faq-answer { overflow: hidden; }
.theme-faq-answer p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; }
body.is-customizer .theme-faq-answer-wrap { grid-template-rows: 1fr; }

.testimonials-block__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials-block__head h3 { font-size: 1.75rem; line-height: 1.2; }
@media (min-width: 768px) { .testimonials-block__head h3 { font-size: 2.25rem; } }
.testimonials-block__nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials-block__nav { display: flex; } }
.theme-testi-prev, .theme-testi-next { width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, color 0.2s ease; }
.theme-testi-prev:hover, .theme-testi-next:hover { border-color: var(--color-rose); color: var(--color-rose); }
.testimonials-block__viewport { overflow: hidden; margin: 0 -0.75rem; }
.testimonials-block__track { display: flex; transition: transform 0.4s ease; }
.testimonials-block__slide { flex: 0 0 100%; min-width: 0; padding: 0 0.75rem; }
@media (min-width: 768px) { .testimonials-block__slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testimonials-block__slide { flex-basis: 25%; } }
.testimonials-block__card { height: 100%; display: flex; flex-direction: column; background: var(--color-ivory); border: 1px solid var(--color-border); border-radius: 1.25rem; padding: 1.5rem; }
.testimonials-block__stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--color-rose); }
.testimonials-block__text { font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }
.testimonials-block__meta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); }
.testimonials-block__name { font-size: 0.875rem; font-weight: 500; }
.testimonials-block__city { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.testimonials-block__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials-block__dot { height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.2s ease; }
.testimonials-block__dot.is-active { width: 2rem; background: var(--color-rose); }

/* =========================================================================
   PRE-CONTACT CTA
   ========================================================================= */
.precta-section { position: relative; overflow: hidden; }
.precta-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.precta-section__scrim-radial { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(46,17,59,0.35) 0%, rgba(46,17,59,0.6) 70%, rgba(46,17,59,0.82) 100%); pointer-events: none; }
.precta-section__scrim-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.4); pointer-events: none; }
.precta-section__content { position: relative; z-index: 10; padding: 7rem 0; text-align: center; color: #fff; }
@media (min-width: 768px) { .precta-section__content { padding: 10rem 0; } }
.precta-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.75rem; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, #fff 85%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.precta-section__rule { height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-rose) 80%, transparent); }
.precta-section__title { color: #fff; line-height: 1.05; letter-spacing: -0.01em; margin: 0 auto; max-width: 56rem; font-size: clamp(2rem, 5.4vw, 4rem); text-shadow: 0 2px 30px rgba(0,0,0,0.55); }
.precta-section__title em { font-style: italic; color: var(--color-rose); }
.precta-section__body { margin-top: 1.75rem; max-width: 36rem; margin-inline: auto; font-size: 0.9375rem; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.6; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-section { background: var(--color-linen); padding-top: 6rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .contact-section { padding-top: 8rem; padding-bottom: 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-section__body { margin-top: 1.5rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 30rem; }
.contact-section__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__link { display: inline-flex; align-items: center; gap: 1rem; transition: color 0.2s ease; }
.contact-section__link:hover { color: var(--color-rose); }
.contact-section__icon { width: 2.75rem; height: 2.75rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); transition: border-color 0.2s ease; }
.contact-section__link:hover .contact-section__icon { border-color: var(--color-rose); }
.contact-section__link-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__link-label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__link-value { font-size: 0.9375rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__quote { position: relative; border-radius: 1.25rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.75rem; }
.contact-section__quote-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-rose); color: var(--color-rose-foreground); font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-section__quote p:first-of-type { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-rose) 70%, transparent); padding-left: 1.25rem; }
.contact-section__quote-note { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.contact-section__form { height: 100%; display: flex; flex-direction: column; gap: 1rem; background: var(--color-ivory); border: 1px solid var(--color-border); border-radius: 1.25rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-section__field label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__field input,
.contact-section__field select,
.contact-section__field textarea {
	width: 100%; height: 3rem; padding: 0 1rem; background: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: 0.5rem;
	font-size: 0.875rem; transition: border-color 0.2s ease;
}
.contact-section__field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.contact-section__field input:focus, .contact-section__field select:focus, .contact-section__field textarea:focus { outline: none; border-color: var(--color-rose); }
.contact-section__field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-section__field-row { grid-template-columns: 1fr 1fr; } }
.contact-section__submit-wrap { margin-top: auto; padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-section__submit-wrap .theme-btn { width: 100%; }
.contact-section__note { text-align: center; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--color-foreground); border-top: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); }
.site-footer__inner { padding-block: 3.5rem 3rem; }
@media (min-width: 768px) { .site-footer__inner { padding-block: 5rem 3.5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-img { height: 3rem !important; border-radius: 999px; background: var(--color-ivory); padding: 4px; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-rose) 50%, transparent); }
.site-footer__brand-text { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ivory); }
.site-footer__tagline { margin-top: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-ivory) 70%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__socials { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.site-footer__social-link { width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-ivory) 25%, transparent); color: color-mix(in srgb, var(--color-ivory) 80%, transparent); transition: color 0.2s ease, border-color 0.2s ease; }
.site-footer__social-link:hover { color: var(--color-rose); border-color: var(--color-rose); }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ivory); margin-bottom: 1rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__links a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-ivory) 70%, transparent); transition: color 0.2s ease; }
.site-footer__links a:hover { color: var(--color-rose); }
.site-footer__contact-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-ivory) 80%, transparent); transition: color 0.2s ease; }
.site-footer__contact-link:hover { color: var(--color-rose); }
.site-footer__note { color: color-mix(in srgb, var(--color-ivory) 60%, transparent); font-size: 0.875rem; }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); text-align: center; font-size: 0.75rem; color: color-mix(in srgb, var(--color-ivory) 55%, transparent); }
.site-footer__bottom p { margin-bottom: 0.5rem; }
.site-footer__bottom a { color: var(--color-rose); }
.site-footer__bottom a:hover { text-decoration: underline; }

/* =========================================================================
   404
   ========================================================================= */
.theme-404__inner { text-align: center; padding: 6rem 0; }
.theme-404__inner h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__inner p { margin-bottom: 2rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* =========================================================================
   CART DRAWER
   ========================================================================= */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, 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; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-ivory); z-index: 91; 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__header h2 { font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; transition: background-color 0.2s ease; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 0.875rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-thumb { position: relative; display: block; width: 5rem; height: 6rem; flex-shrink: 0; border-radius: 0.5rem; overflow: hidden; background: var(--color-bone); }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-price { margin-top: 0.125rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__item-variation { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; gap: 0.5rem; }
.theme-cart-drawer__qty button { padding: 0.25rem; border-radius: 4px; transition: background-color 0.2s ease; width: 1.5rem; height: 1.5rem; display: inline-flex; align-items: center; justify-content: center; }
.theme-cart-drawer__qty button:hover { background: var(--color-bone); }
.theme-cart-drawer__qty-value { font-size: 0.8125rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* =========================================================================
   WOOCOMMERCE — ADD TO CART BUTTON 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-rose) !important;
	color: var(--color-rose-foreground) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-rose) !important;
	color: var(--color-rose-foreground) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-rose) !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; }

/* Card compact button override (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	border-radius: 999px !important;
	gap: 0.4rem !important;
	font-size: 0.8125rem !important;
}

.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.theme-attr-select-hidden { display: none !important; }

/* =========================================================================
   WOOCOMMERCE NOTICES (Section 14.1)
   ========================================================================= */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	max-width: 1400px; margin: 1rem auto; padding: 1rem 1.5rem; border-radius: 0.5rem;
	background: var(--color-linen); border: 1px solid var(--color-border); font-size: 0.875rem;
	list-style: none;
}
.woocommerce-error { border-color: var(--color-destructive); color: var(--color-destructive); }

/* =========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================= */
.single-product-main { padding-top: 6rem; padding-bottom: 3rem; }
.theme-breadcrumb { padding: 1.5rem 0; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--color-primary); }
.theme-breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: 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: 1/1; width: 100%; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-gallery__main img,
#product-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; max-width: 100%; gap: 0.625rem; }
.theme-product-thumb { width: 4.5rem; height: 4.5rem; border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; position: relative; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.theme-product-info__cat { font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.theme-product-info__title.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.05; margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title.product-title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 1.375rem; font-weight: 600; color: var(--color-rose); margin-bottom: 1.75rem; }
.theme-product-info__price del { opacity: 0.5; margin-right: 0.5rem; font-weight: 400; }
.theme-product-info__stock.is-out { color: var(--color-destructive); font-weight: 500; margin-bottom: 1rem; }
.theme-product-info__description { font-size: 0.9375rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 1em; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; height: var(--btn-height); }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 100%; transition: color 0.2s ease; display: inline-flex; align-items: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-size: 0.875rem; font-weight: 500; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-info__details { border-top: 1px solid var(--color-border); padding-top: 2rem; margin-bottom: 2rem; }
.theme-product-info__details-title { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details li { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__details li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-primary); margin-top: 0.5rem; margin-right: 0.75rem; flex-shrink: 0; }

.theme-product-info__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.theme-trust-item { text-align: center; }
.theme-trust-item svg { margin: 0 auto 0.5rem; color: var(--color-primary); display: block; }
.theme-trust-heart {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0 auto 0.5rem;
	background-color: var(--color-primary);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.theme-trust-item p { font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-related-products { padding-top: 5rem; border-top: 1px solid var(--color-border); }
.theme-related-products__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.theme-related-products__head h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-related-products__head h2 { font-size: 2.25rem; } }
.theme-related-products__viewall { display: none; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; }
@media (min-width: 640px) { .theme-related-products__viewall { display: inline-flex; } }
.theme-related-products__viewall:hover { color: var(--color-primary); }

/* Variation attribute 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; font-family: var(--font-body); }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.single-product .variations select { width: 100%; height: 3rem; border-radius: 0.5rem; border: 1px solid var(--color-border); padding: 0 1rem; }
.variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }

/* =========================================================================
   ARCHIVE / CATEGORY PAGES
   ========================================================================= */
.woocommerce-archive-main .page-title { font-size: 2.25rem; margin-bottom: 2rem; }
.woocommerce-breadcrumb { display: none; }

/* =========================================================================
   CHECKOUT BLOCK (Section 13) — mirrors src/pages/Checkout.tsx layout
   ========================================================================= */
body.woocommerce-checkout .site-main {
	padding-top: calc(var(--header-height) + 2.5rem);
	padding-bottom: 4rem;
	background-color: var(--color-ivory);
}

body.woocommerce-checkout .site-main .container-wide {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

body.woocommerce-checkout .page-title {
	font-size: clamp(2.25rem, 4vw, 3rem);
	margin-bottom: 2.5rem;
}

/* 7/5 column split (lg:col-span-7 / lg:col-span-5) — grid only on layout wrapper */
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: 3.5rem;
		align-items: start;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: var(--checkout-gap, 2.5rem);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100% !important;
	max-width: none;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 0.875rem;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: 0.5rem;
	background: var(--color-ivory);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; border-color: var(--color-rose); }

/* Order summary card — bg-linen border rounded-2xl p-6 lg:p-7 sticky */
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: var(--card-radius);
	padding: 1.5rem;
	box-sizing: border-box;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 1.75rem;
		position: sticky;
		top: calc(var(--header-height) + 1.5rem);
		align-self: start;
	}
}

/* Order summary fills sidebar; remove inner WC border (card is the sidebar) */
body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-wrapper,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-panel {
	width: 100%;
	max-width: none;
	min-width: 0;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
	border: none;
	border-radius: 0;
	margin: 0;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: inherit;
	margin: 0 0 1.5rem;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
	width: 100%;
	gap: 1rem;
	align-items: flex-start;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description,
body.woocommerce-checkout .wc-block-components-product-name,
body.woocommerce-checkout .wc-block-components-product-metadata,
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices {
	min-width: 0;
	white-space: normal;
	overflow-wrap: break-word;
}

body.woocommerce-checkout .wc-block-components-totals-item {
	width: 100%;
	gap: 1rem;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value {
	white-space: normal;
	min-width: 0;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-rose) !important;
	color: var(--color-rose-foreground) !important;
	border-radius: var(--btn-radius) !important;
	border: none !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.5rem; grid-column: 1 / -1; }

/* =========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================= */
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 h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { background: var(--color-linen); border-radius: 0.5rem; padding: 0.75rem 1.25rem; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1rem; font-size: 0.875rem; }
@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 / 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-title,
body.woocommerce-account .page-title { font-size: 2.25rem; margin-bottom: 2rem; }

/* =========================================================================
   FLOATING STORE PROMO BANNER (Lovable PromoBanner)
   ========================================================================= */
.theme-promo-banner {
	position: fixed;
	bottom: 1.5rem;
	left: 1rem;
	right: 1rem;
	z-index: 50;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: var(--color-foreground);
	color: var(--color-background);
	box-shadow: var(--shadow-elevated);
	animation: theme-fade-in 0.3s ease-out both;
}
@media (min-width: 640px) {
	.theme-promo-banner {
		left: auto;
		right: 1.5rem;
		max-width: 26rem;
	}
}
.theme-promo-banner[hidden] { display: none !important; }
.theme-promo-banner__icon {
	flex-shrink: 0;
	margin-top: 0.125rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: var(--color-rose);
	color: var(--color-rose-foreground);
}
.theme-promo-banner__body { flex: 1; min-width: 0; }
.theme-promo-banner__title {
	font-size: 0.8125rem;
	line-height: 1.35;
	font-weight: 500;
}
@media (min-width: 640px) { .theme-promo-banner__title { font-size: 0.875rem; } }
.theme-promo-banner__text {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--color-background) 80%, transparent);
}
@media (min-width: 640px) { .theme-promo-banner__text { font-size: 0.8125rem; } }
.theme-promo-banner__dismiss {
	flex-shrink: 0;
	margin-top: 0.125rem;
	padding: 0.375rem;
	border-radius: 999px;
	transition: background-color 0.2s ease;
}
.theme-promo-banner__dismiss:hover { background: color-mix(in srgb, #fff 10%, transparent); }

.hero-section__title em { font-style: italic; color: var(--color-rose); }
.precta-section__title em { font-style: italic; color: var(--color-rose); }
