/* =========================================================================
   Wild Designs — theme.css
   Full visual layer. WooCommerce template files contain NO styling
   (Section 10) — all of it lives here.
   ========================================================================= */

/* ---------- Design tokens (Section 6 / 6.1) — fallback defaults; the
   live values are re-emitted inline by wp_add_inline_style (Section 22.9) ---------- */
:root {
	--color-background: #faf6ef;
	--color-foreground: #31231c;
	--color-primary: #c6522f;
	--color-primary-foreground: #fcf8f3;
	--color-secondary: #c3dfd9;
	--color-muted-foreground: #756157;
	--color-destructive: #db2424;
	--color-border: #e2d9cf;
	--color-ivory: #fcf8f3;
	--color-linen: #f5efe5;
	--color-bone: #ede5d9;

	--radius: 0.85rem;
	--radius-md: calc(var(--radius) - 2px);
	--radius-sm: calc(var(--radius) - 4px);
	--shadow-soft: 0 4px 20px -8px rgba(50, 30, 15, 0.15);
	--shadow-elevated: 0 20px 50px -18px rgba(50, 30, 15, 0.28);

	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;
	--font-display: 'Fraunces', 'Instrument Serif', Georgia, serif;

	--logo-height: 40px;
	--header-height: 116px;

	--btn-radius: 999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--color-button-text: var(--color-primary-foreground);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-feature-settings: 'ss01', 'cv11';
	-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.2;
}
.font-display { font-family: var(--font-display); font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
section[id] { scroll-margin-top: 80px; }
body.admin-bar section[id] { scroll-margin-top: 112px; }
@media screen and (max-width: 782px) {
	body.admin-bar section[id] { scroll-margin-top: 126px; }
}

img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image):not(.theme-media-preview):not(.site-logo-img) {
	max-width: 100%;
	height: auto;
	display: block;
}
[hidden] { display: none !important; }
.cover-img, .hero-bg-img, .theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
@media (min-width: 640px) {
	.container-wide { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.container-wide { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.scrim-radial {
	background-image: radial-gradient(at center, rgba(20, 12, 4, 0.35) 0%, rgba(20, 12, 4, 0.6) 70%, rgba(20, 12, 4, 0.78) 100%);
}
.theme-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 500;
	margin: 0 0 1rem;
}

/* ---------- Scroll reveal (Section 2.1) ---------- */
[data-reveal], .reveal-item {
	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;
}
[data-reveal].is-revealed, .reveal-item.is-revealed { opacity: 1; transform: translateY(0); }
body.is-customizer [data-reveal],
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.animate-fade-in { animation: theme-fade-in 0.7s ease-out both; }
.animate-slide-in-bottom { animation: theme-slide-in-bottom 0.7s ease-out both; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	.animate-fade-in, .animate-slide-in-bottom { animation: none !important; }
}

/* ---------- Buttons ---------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	height: 44px;
	padding: 0 1.5rem;
	text-transform: none;
}
.theme-btn-lg { height: 48px; padding: 0 1.75rem; }
.theme-btn-sm { height: 36px; padding: 0 1rem; }
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.theme-btn-rose { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn-rose:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.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: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.theme-btn-glass:hover { background: rgba(255,255,255,0.2); }
.theme-btn-ghost { background: transparent; border-color: 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:disabled { opacity: 0.6; pointer-events: none; }

/* Pointer cursor on interactive controls */
a[href],
button:not(:disabled),
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
select,
label[for],
.theme-pill,
.theme-pill-link,
.theme-cart-toggle,
.theme-icon-btn,
.theme-section-anchor,
.theme-nav-list a,
.theme-shop-cat-link,
.contact-section__item,
.theme-product-card__add,
.theme-product-card__quickview,
.theme-product-thumb,
.theme-accordion__trigger,
[data-faq-trigger],
[data-testimonial-prev],
[data-testimonial-next],
[data-cart-open],
[data-mobile-menu-toggle],
[data-promo-dismiss] {
	cursor: pointer;
}

/* ---------- WordPress admin bar (logged-in) ---------- */
html.admin-bar { margin-top: 0 !important; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.theme-announcement-bar {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
.theme-announcement-highlight { color: var(--color-primary); }
.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease; background: transparent; 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: 64px; gap: 1rem; }
@media (min-width: 1024px) {
	.site-header__row { height: 80px; display: grid; grid-template-columns: 1fr auto 1fr; }
}
.site-header__menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; color: #fff; transition: background-color 0.2s, color 0.2s; order: 1; }
.site-header.is-solid .site-header__menu-toggle { color: var(--color-foreground); }
.site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header.is-solid .site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__logo { display: inline-flex; align-items: center; order: 2; }
@media (min-width: 1024px) { .site-header__logo { order: 1; justify-self: start; } }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.site-header.is-solid .site-logo-text,
body.theme-no-hero .site-logo-text { color: var(--color-foreground); }

.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; margin: 0; }
.theme-nav-list a { position: relative; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.3s ease; padding-bottom: 6px; }
.theme-nav-list a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list a { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-header.is-solid .theme-nav-list a:hover { color: var(--color-primary); }
.theme-nav-list a.is-active { color: #fff; }
.site-header.is-solid .theme-nav-list a.is-active { color: var(--color-primary); }
.theme-nav-list a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 999px; background: var(--color-primary); opacity: 0; transform: scaleX(0); transition: all 0.3s ease; }
.theme-nav-list a.is-active::after { opacity: 1; transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; order: 3; justify-self: end; }
.theme-cart-toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; color: #fff; transition: background-color 0.2s, color 0.2s; }
.site-header.is-solid .theme-cart-toggle { color: var(--color-foreground); }
.theme-cart-toggle:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-count { position: absolute; top: -2px; right: -2px; background: var(--color-primary); color: var(--color-primary-foreground); font-size: 12px; 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-menu { 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-menu.is-open { display: block; animation: theme-fade-in 0.4s ease-out both; }
.site-header__mobile-menu .container-wide { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.site-header__mobile-menu .theme-nav-list,
.theme-nav-list--mobile { display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 1rem 0; list-style: none; }
.site-header__mobile-menu .theme-nav-list a,
.theme-nav-list--mobile a { 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-menu .theme-nav-list li:last-child a,
.theme-nav-list--mobile li:last-child a { border-bottom: 0; }
.site-header__mobile-menu .theme-nav-list a::after,
.theme-nav-list--mobile a::after { display: none; }
@media (min-width: 1024px) { .site-header__mobile-menu { display: none !important; } }

body.theme-no-hero .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); }
body.theme-no-hero .site-header__menu-toggle,
body.theme-no-hero .theme-cart-toggle,
body.theme-no-hero .theme-nav-list a { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
body.theme-no-hero .theme-nav-list a.is-active { color: var(--color-primary); }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 46px); }
}
body:not(.theme-no-hero) .site-main { padding-top: 0; }

/* ---------- Hero ---------- */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim, .hero-section__tint { position: absolute; inset: 0; pointer-events: none; }
.hero-section__tint { background: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-top: 10rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 13rem; padding-bottom: 8rem; } }
.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.theme-icon-rose { color: var(--color-primary); }
.hero-section__heading { color: #fff; line-height: 1.02; letter-spacing: -0.02em; margin: 0 auto; max-width: 64rem; filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); font-size: clamp(2rem, 5.4vw, 4.4rem); }
@media (min-width: 640px) { .hero-section__break { display: block; } }
.hero-section__accent { font-style: italic; color: var(--color-primary); }
.hero-section__body { margin-top: 1.75rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
@media (min-width: 640px) { .hero-section__body { font-size: 15px; } }
.hero-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }

/* ---------- About ---------- */
.about-section { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; align-items: stretch; width: 100%; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.about-section__portrait-col { display: flex; min-width: 0; }
@media (min-width: 1024px) { .about-section__portrait-col { grid-column: span 5; } }
.about-section__portrait { position: relative; width: 100%; min-height: 520px; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--color-bone); box-shadow: var(--shadow-elevated); }
@media (min-width: 1024px) { .about-section__portrait { min-height: 0; aspect-ratio: auto; height: 100%; } }
.about-section__badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.about-section__badge-dot { width: 6px; height: 6px; border-radius: 999px; background: #fff; }
.about-section__copy-col { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .about-section__copy-col { grid-column: span 7; padding-left: 1.5rem; } }
.about-section__heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); max-width: 100%; overflow-wrap: break-word; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.4rem; } }
.about-section__quote { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.3; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); border-left: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent); padding-left: 1.25rem; max-width: 100%; overflow-wrap: break-word; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__paragraphs { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; width: 100%; max-width: 100%; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); overflow-wrap: break-word; }
@media (min-width: 768px) { .about-section__paragraphs { max-width: 65ch; } }
.about-section__paragraphs p { min-width: 0; max-width: 100%; overflow-wrap: break-word; }
.about-section__socials { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.theme-pill-link { display: inline-flex; align-items: center; gap: 0.5rem; height: 44px; 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: 14px; font-weight: 500; transition: background-color 0.2s, color 0.2s, border-color 0.2s; }
.theme-pill-link:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.about-section__stats { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
@media (min-width: 640px) { .about-section__stats { grid-template-columns: repeat(3, 1fr); } }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); word-break: break-word; }
.about-section__stat-label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; 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: 2.5rem; }
@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-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section__heading { font-size: 3.2rem; } }
.shop-section__body { margin-top: 1.25rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 36rem; }
.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: 44px; padding-left: 2.75rem; padding-right: 1rem; border-radius: 999px; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); font-size: 14px; }
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }
.shop-section__pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-pill { padding: 0 1.25rem; height: 40px; border-radius: 999px; font-size: 14px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: all 0.2s ease; cursor: pointer; }
.theme-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-pill.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more { margin-top: 3rem; display: flex; justify-content: center; }

.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)); row-gap: 2.5rem; } }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card-wrap[hidden] { display: none !important; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__actions, .theme-product-card__add, .theme-product-card__quickview { pointer-events: auto; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1rem; }
.theme-product-card__image-wrapper img,
.theme-product-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-product-card__image { transition: transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 60%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.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: 11px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 999px; }
.theme-product-card__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__actions { opacity: 1; }
.theme-product-card__add.add_to_cart_button.button { flex: 1; height: 40px !important; padding: 0 1rem !important; min-height: 40px !important; border-radius: 999px !important; background: color-mix(in srgb, var(--color-background) 95%, transparent) !important; color: var(--color-foreground) !important; font-size: 14px !important; font-weight: 500 !important; display: inline-flex !important; align-items: center; justify-content: center; gap: 0.5rem; box-shadow: var(--shadow-soft); border: none !important; text-transform: none !important; }
.theme-product-card__add.add_to_cart_button.button:hover { background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; opacity: 1 !important; }
.theme-product-card__quickview { width: 40px; height: 40px; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); transition: background-color 0.3s, color 0.3s; }
.theme-product-card__quickview:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__info { flex: 1; padding: 0 0.125rem; }
.theme-product-card__category { font-size: 11px; 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; }
@media (min-width: 768px) { .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: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.375rem; }

/* ---------- Marquee ---------- */
.marquee-section { background: var(--color-primary); padding: 1.25rem 0; overflow: hidden; }
.marquee-section__track { display: flex; white-space: nowrap; animation: theme-marquee 22s linear infinite; width: max-content; }
.marquee-section__item { display: flex; align-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--color-primary-foreground) 95%, transparent); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.01em; }
@media (min-width: 768px) { .marquee-section__item { font-size: 1.25rem; } }
.marquee-section__text { margin: 0 1.5rem; }
@media (min-width: 768px) { .marquee-section__text { margin: 0 2rem; } }
.marquee-section__dot { color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); font-size: 0.875rem; }

/* ---------- Services ---------- */
.services-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .services-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-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(3, 1fr); gap: 1.5rem; } }
.services-card { background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s ease; display: flex; flex-direction: column; }
.services-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.services-card__image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.services-card__image { transition: transform 0.7s ease; }
.services-card:hover .services-card__image { transform: scale(1.05); }
.services-card__icon { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); box-shadow: var(--shadow-elevated); transition: transform 0.3s ease; }
.services-card:hover .services-card__icon { transform: rotate(20deg); }
.services-card__body { padding: 1.75rem; }
@media (min-width: 768px) { .services-card__body { padding: 2rem; } }
.services-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--color-foreground); }
.services-card__text { font-size: 14px; 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 color-mix(in srgb, var(--color-foreground) 10%, transparent); 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__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, 1fr); } }
.faq-section__intro-col { min-width: 0; }
@media (min-width: 1024px) { .faq-section__intro-col { grid-column: span 4; } }
.faq-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__intro { margin-top: 1.5rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 24rem; }
.faq-ask-card { display: none; }
@media (min-width: 1024px) { .faq-ask-card { display: block; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 1.75rem; color: #fff; } }
.faq-ask-card__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.faq-ask-card__orb { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 999px; background: var(--color-secondary); filter: blur(32px); }
.faq-ask-card__content { position: relative; }
.faq-ask-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground); margin-bottom: 1.25rem; }
.faq-ask-card__heading { font-size: 1.5rem; color: #fff; line-height: 1.35; margin-bottom: 0.5rem; }
.faq-ask-card__body { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.5rem; }
.faq-section__list-col { min-width: 0; }
@media (min-width: 1024px) { .faq-section__list-col { grid-column: span 8; } }
.theme-accordion__row { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-accordion__question { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.35; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-accordion__question { font-size: 1.25rem; } }
.theme-accordion__icon { flex-shrink: 0; color: var(--color-primary); display: inline-flex; }
.theme-icon-minus { display: none; }
.theme-accordion__row.is-open .theme-icon-plus { display: none; }
.theme-accordion__row.is-open .theme-icon-minus { display: block; }
.theme-accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease-out; }
.theme-accordion__row.is-open .theme-accordion__panel { grid-template-rows: 1fr; }
.theme-accordion__panel-inner { overflow: hidden; }
.theme-accordion__panel p { padding: 0 2rem 1.5rem 0; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; }
body.is-customizer .theme-accordion__panel { grid-template-rows: 1fr; }

.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials__heading { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .testimonials__heading { font-size: 2.25rem; } }
.testimonials__nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials__nav { display: flex; } }
.theme-icon-btn { width: 40px; height: 40px; 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, color 0.2s; }
.theme-icon-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.testimonials__viewport { overflow: hidden; margin: 0 -0.75rem; }
.testimonials__track { display: flex; transition: transform 0.4s ease; }
.testimonials__slide { flex: 0 0 100%; padding: 0 0.75rem; min-width: 0; }
@media (min-width: 768px) { .testimonials__slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonials__slide { flex: 0 0 25%; } }
.testimonial-card { height: 100%; background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--color-primary); }
.testimonial-card__text { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }
.testimonial-card__meta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.testimonial-card__name { font-size: 14px; font-weight: 500; color: var(--color-foreground); }
.testimonial-card__city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials__dot { height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.2s ease; }
.testimonials__dot:hover { background: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.testimonials__dot.is-active { width: 2rem; background: var(--color-primary); }

/* ---------- 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, .precta-section__tint { position: absolute; inset: 0; pointer-events: none; }
.precta-section__tint { background: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.precta-section__content { position: relative; z-index: 10; padding-block: 7rem; text-align: center; color: #fff; }
@media (min-width: 768px) { .precta-section__content { padding-block: 10rem; } }
.precta-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-weight: 500; max-width: 100%; flex-wrap: wrap; }
@media (max-width: 639px) { .precta-section__eyebrow { letter-spacing: 0.28em; } }
.precta-section__hairline { height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-primary) 80%, transparent); display: inline-block; flex-shrink: 0; }
.precta-section__heading { color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin: 0 auto; max-width: min(56rem, 100%); filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); font-size: clamp(2rem, 5.4vw, 4rem); overflow-wrap: break-word; }
.precta-section__accent { font-style: italic; color: var(--color-primary); }
.precta-section__body { margin-top: 1.75rem; max-width: min(36rem, 100%); margin-left: auto; margin-right: auto; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; overflow-wrap: break-word; }
.precta-section__cta { margin-top: 2.5rem; }

/* ---------- 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%; min-width: 0; }
.contact-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.4rem; } }
.contact-section__intro { margin-top: 1.5rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; }
.contact-section__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__item { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s ease; }
.contact-section__item:hover { color: var(--color-primary); }
.contact-section__icon { width: 44px; height: 44px; border-radius: 999px; background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease; flex-shrink: 0; }
.contact-section__item:hover .contact-section__icon { border-color: var(--color-primary); }
.contact-section__item-copy { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__item-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__item-value { font-size: 15px; font-weight: 500; overflow-wrap: break-word; word-break: break-word; }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__quote { position: relative; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.5rem; }
@media (min-width: 768px) { .contact-section__quote { 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-primary); color: var(--color-primary-foreground); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-section__quote-text { 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-primary) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .contact-section__quote-text { font-size: 1.25rem; } }
.contact-section__quote-author { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); letter-spacing: 0.02em; }

.contact-form { background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-soft); height: 100%; min-width: 0; }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-form__field label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%; height: 48px; padding: 0 1rem; background: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius-md); font-size: 14px; color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form textarea { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; resize: none; }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__submit-wrap { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.contact-form__submit { width: 100%; }
.contact-form__note { font-size: 12px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__error { font-size: 13px; text-align: center; color: var(--color-destructive); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-footer__inner { padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 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__logo { display: inline-flex; }
.site-footer__blurb { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__socials { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.theme-social-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s, border-color 0.2s; }
.theme-social-btn:hover { color: var(--color-primary); border-color: var(--color-primary); }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__links a, .site-footer__links .theme-footer-email { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__links a:hover, .theme-footer-email:hover { color: var(--color-primary); }
.site-footer__muted { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); font-size: 14px; }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__bottom a:hover { color: var(--color-primary); }

/* ---------- Cart drawer + overlay ---------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 60; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-ivory); z-index: 61; 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 color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { 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: 14px; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { position: relative; width: 80px; height: 96px; background: var(--color-bone); border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; display: block; }
#theme-cart-drawer .theme-cart-item__image img,
#theme-cart-drawer .theme-cart-item__image .cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s ease; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 0.2s ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 13px; width: 24px; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s ease; }
.theme-cart-item__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); 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: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 13px; 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); }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (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; }

/* ---------- Promo banner ---------- */
.theme-promo-banner { position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 55; background: var(--color-foreground); color: var(--color-background); border-radius: var(--radius); box-shadow: var(--shadow-elevated); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
@media (min-width: 640px) { .theme-promo-banner { left: auto; right: 1.5rem; max-width: 26rem; } }
.theme-promo-banner.is-visible { opacity: 1; transform: translateY(0); }
.theme-promo-banner__text { font-size: 13px; line-height: 1.6; flex: 1; margin: 0; }
@media (min-width: 640px) { .theme-promo-banner__text { font-size: 15px; } }
.theme-promo-highlight { color: var(--color-primary); font-weight: 600; }
.theme-promo-banner__close { flex-shrink: 0; margin-top: 0.125rem; padding: 0.375rem; border-radius: 999px; transition: background-color 0.2s ease; }
.theme-promo-banner__close:hover { background: rgba(255,255,255,0.1); }

/* ---------- Single product ---------- */
.single-product-page { background: var(--color-ivory); padding-top: 6rem; }
@media (min-width: 1024px) { .single-product-page { padding-top: 7rem; } }
.single-product__breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.single-product__breadcrumb a:hover { color: var(--color-primary); }
.single-product__breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.single-product__breadcrumb-current { color: var(--color-foreground); }

.single-product__layout, .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) { .single-product__layout, .theme-product-layout { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { grid-column: span 7; position: sticky; top: 7rem; align-self: start; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; width: 100%; background: var(--color-linen); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.theme-product-gallery__main img,
#product-main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s ease; }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	display: block;
}

.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { grid-column: span 5; } }
.theme-product-info__category { font-size: 11px; 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-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1rem; text-transform: none; }
@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: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__quantity { margin-bottom: 1.5rem; }
.theme-product-info__quantity-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-product-info__stock.is-out { color: var(--color-destructive); font-weight: 500; margin-bottom: 1rem; }
.theme-product-info__description { font-size: 15px; 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: 1rem; }

.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: 44px; }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 100%; display: inline-flex; align-items: center; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 44px; min-width: 0; text-align: center; font-size: 14px; font-weight: 500; border: none; background: transparent; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area, .theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;
}
@media (min-width: 640px) {
	.single-product .theme-add-to-cart-area, .theme-add-to-cart-area { flex-direction: row; }
}
.single-product .single_add_to_cart_button, .theme-buy-now { flex: 1 1 auto; min-width: 160px; width: 100%; }
@media (min-width: 640px) {
	.single-product .single_add_to_cart_button, .theme-buy-now { width: auto; }
}

.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;
}
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button, .theme-btn-outline.theme-buy-now { text-transform: none; }
.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 already sized above; keep global rules intact for standard buttons. */

.theme-product-info__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__details-heading { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details-list ul { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; gap: 0.75rem; }
.theme-product-info__details-list li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-primary); margin-top: 0.5rem; flex-shrink: 0; }

.theme-product-info__trust { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-trust-badge { text-align: center; }
.theme-trust-badge svg { margin: 0 auto 0.5rem; color: var(--color-primary); display: block; }
.theme-trust-badge span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.related-products-section__heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__viewall { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; }
@media (min-width: 640px) { .related-products-section__viewall { display: inline-flex; } }
.related-products-section__viewall:hover { color: var(--color-primary); }

/* ---------- Variations table layout ---------- */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

/* ---------- WooCommerce notices (Section 14.1) ---------- */
.single-product-page .woocommerce-message,
.single-product-page .woocommerce-info,
.single-product-page .woocommerce-error,
.single-product .woocommerce-message,
.single-product .woocommerce-info,
.single-product .woocommerce-error { display: none !important; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
	background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	font-size: 14px; color: var(--color-foreground);
}
.woocommerce-error { border-color: color-mix(in srgb, var(--color-destructive) 40%, transparent); color: var(--color-destructive); }

/* ---------- Shop archive ---------- */
.shop-archive-page { padding-top: 8rem; padding-bottom: 5rem; background: var(--color-ivory); }
.shop-heading.page-title { font-size: 2.25rem; margin-bottom: 2.5rem; }
.shop-archive__pagination { margin-top: 3rem; display: flex; justify-content: center; }
.shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------- Generic pages / 404 ---------- */
.theme-generic-page { padding-top: 8rem; padding-bottom: 5rem; }
.theme-page-container .page-title { font-size: 2.25rem; margin-bottom: 2rem; }
.theme-404-page { min-height: 70vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; padding: 6rem 0; }
.theme-404-code { font-family: var(--font-display); font-size: 5rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.theme-404-heading { font-size: 1.875rem; margin-bottom: 0.75rem; }
.theme-404-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 2rem; }

/* =========================================================================
   WooCommerce Checkout Block override (Section 13)
   ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .page-title { margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		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; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border-radius: var(--radius);
	padding: 2rem;
}
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,
body.woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .form-row select {
	font-family: var(--font-body); font-size: 14px; color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius-md); background-color: var(--color-ivory);
	padding: revert;
}
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-primary); }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
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; border: none !important; font-weight: 500 !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--radius-sm); }

/* ---------- Cart / My Account width parity (Section 13.7) ---------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* ---------- 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 { padding: 0 0 1rem 0; font-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; }
@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; max-width: 480px; overflow-wrap: break-word; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius-sm); padding: 1.25rem; }
