/* =========================================================================
   ZuriAfriQ theme stylesheet
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. CSS variables (fallback defaults — live values injected inline, Section 6.1)
   ------------------------------------------------------------------------- */
:root {
	--color-background: #f9f6f1;
	--color-foreground: #251d18;
	--color-primary: #584437;
	--color-primary-foreground: #faf8f4;
	--color-linen: #f1ebe4;
	--color-bone: #eae4dc;
	--color-amber: #e47825;
	--color-amber-foreground: #faf8f4;
	--color-destructive: #ab2b2b;
	--color-button-text: var(--color-primary-foreground);
	--logo-height: 48px;

	--font-display: 'Newsreader', 'Times New Roman', serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--btn-radius: 9999px;
	--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.5rem;

	--card-radius: 1rem;
	--section-padding: 2rem;
	--header-height: 80px;
	--checkout-gap: 2rem;

	--shadow-soft: 0 4px 18px -8px rgba(37, 29, 24, 0.10);
	--shadow-elevated: 0 16px 48px -16px rgba(37, 29, 24, 0.22);
}

/* -------------------------------------------------------------------------
   2. Reset + base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__img):not(.theme-product-gallery__main img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card__img, .theme-product-gallery__main img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
	font-family: var(--font-display);
	letter-spacing: -0.018em;
	margin: 0;
	line-height: 1.05;
}
p { margin: 0; }
input, textarea, select {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-foreground);
}
section[id] { scroll-margin-top: var(--header-height); }

.title-br { display: none; }
@media (min-width: 640px) { .title-br { display: block; } }

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin-inline: auto;
	padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 2.5rem; } }

.eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 500;
	margin-bottom: 1rem;
}
.eyebrow--on-dark { color: var(--color-amber); }

/* -------------------------------------------------------------------------
   3. Buttons
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: 1px solid transparent;
	height: var(--btn-height);
	padding: var(--btn-padding);
	transition: background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-default,
.btn.btn-default {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.btn-default:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, black); }
.btn-outline {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.btn-outline:hover { border-color: var(--color-foreground); background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.btn-glass {
	background-color: color-mix(in srgb, #fff 10%, transparent);
	color: #fff;
	border-color: color-mix(in srgb, #fff 40%, transparent);
	backdrop-filter: blur(8px);
}
.btn-glass:hover { background-color: color-mix(in srgb, #fff 20%, transparent); }
.btn-amber {
	background-color: var(--color-amber);
	color: var(--color-amber-foreground);
	border-color: var(--color-amber);
}
.btn-amber:hover { background-color: color-mix(in srgb, var(--color-amber) 90%, black); }
.btn-ghost { background-color: transparent; border-color: transparent; color: var(--color-foreground); }
.btn-ghost:hover { background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.btn-sm { height: 36px; padding: 0 1rem; }
.btn-lg { height: 48px; padding: 0 1.75rem; }
.btn.disabled, .btn:disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button {
	text-transform: none;
}

/* -------------------------------------------------------------------------
   4. Animations
   ------------------------------------------------------------------------- */
@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(-50%); } }

.anim-fade-in { animation: theme-fade-in 0.7s ease-out both; }
.anim-slide-in-bottom { animation: theme-slide-in-bottom 0.7s ease-out both; }
.anim-delay-1 { animation-delay: 120ms; }
.anim-delay-2 { animation-delay: 240ms; }

.reveal-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.anim-fade-in, .anim-slide-in-bottom, .reveal-item {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Customizer preview fallback — never hide content in the editor iframe. */
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.5s ease, border-color 0.5s ease;
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-linen) 75%, 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;
}
@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: 50%;
	color: #fff;
	order: 1;
}
.site-header.is-solid .site-header__menu-toggle { color: var(--color-foreground); }
.site-header__menu-toggle:hover { background-color: color-mix(in srgb, #fff 10%, transparent); }
.site-header.is-solid .site-header__menu-toggle:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header__menu-toggle .icon-menu-close { display: none; }
.site-header__menu-toggle[aria-expanded="true"] .icon-menu-open { display: none; }
.site-header__menu-toggle[aria-expanded="true"] .icon-menu-close { display: block; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand {
	display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; 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; }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: var(--logo-height); }
.site-header.is-solid .site-logo-text { color: var(--color-foreground); }
.site-header__brand-name {
	display: none;
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: -0.018em;
	color: #fff;
	transition: color 0.5s ease;
}
.site-header.is-solid .site-header__brand-name { color: var(--color-foreground); }
@media (min-width: 640px) { .site-header__brand-name { 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: 2rem; }
.theme-nav-list a {
	font-size: 14px; font-weight: 500; color: color-mix(in srgb, #fff 85%, transparent);
	transition: color 0.3s ease;
}
.site-header.is-solid .theme-nav-list a { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-nav-list a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list a:hover { color: var(--color-primary); }

.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: 40px; height: 40px; border-radius: 50%;
	color: #fff;
}
.site-header.is-solid .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background-color: color-mix(in srgb, #fff 10%, transparent); }
.site-header.is-solid .site-header__cart-btn:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	background-color: var(--color-amber); color: var(--color-amber-foreground);
	font-size: 10px; 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-panel {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background-color: color-mix(in srgb, var(--color-linen) 95%, transparent);
	backdrop-filter: blur(20px);
}
.site-header__mobile-panel.is-open { display: block; animation: theme-fade-in 0.3s ease-out both; }
.site-header__mobile-panel .theme-nav-list,
.theme-nav-list--mobile {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 1rem 0;
}
.container-wide > .theme-nav-list--mobile,
.site-header__mobile-panel .container-wide { padding-block: 1rem; }
.site-header__mobile-panel .theme-nav-list li,
.theme-nav-list--mobile li { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-header__mobile-panel .theme-nav-list li:last-child,
.theme-nav-list--mobile li:last-child { border-bottom: none; }
.site-header__mobile-panel .theme-nav-list a,
.theme-nav-list--mobile a {
	display: block;
	padding: 0.75rem 1.25rem;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
}
.site-header__mobile-panel .theme-nav-list a:hover,
.theme-nav-list--mobile a:hover { color: var(--color-primary); }
.icon-menu-open, .icon-menu-close { width: 20px; height: 20px; }

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.theme-fallback-main { padding-top: calc(var(--header-height) + 1rem); padding-bottom: 4rem; }
.hero-section__video {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	pointer-events: none;
}
.hero-section__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background-image: radial-gradient(at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 70%, rgba(0,0,0,0.88) 100%);
}
.hero-section__tint { position: absolute; inset: 0; pointer-events: none; background-color: color-mix(in srgb, var(--color-foreground) 25%, 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-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 999px;
	background-color: color-mix(in srgb, #fff 10%, transparent);
	border: 1px solid color-mix(in srgb, #fff 25%, transparent);
	backdrop-filter: blur(10px);
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.hero-section__badge svg { color: var(--color-amber); }
.hero-section__title {
	font-weight: 400; color: #fff; line-height: 1.04; letter-spacing: -0.025em;
	max-width: 64rem; margin-inline: auto;
	font-size: clamp(2rem, 5.6vw, 4.4rem);
	text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hero-section__title em { font-style: italic; color: var(--color-amber); }
.hero-section__subtitle {
	margin-top: 1.5rem; max-width: 42rem; margin-inline: auto;
	font-size: 14px; color: color-mix(in srgb, #fff 65%, transparent); line-height: 1.6;
}
@media (min-width: 640px) { .hero-section__subtitle { font-size: 15px; } }
.hero-section__subtitle .hero-section__brand-mention { font-weight: 500; color: color-mix(in srgb, #fff 80%, transparent); }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; gap: 1rem; } }

/* -------------------------------------------------------------------------
   7. About
   ------------------------------------------------------------------------- */
.about-section { background-color: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 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__col-left { display: flex; flex-direction: column; height: 100%; }
.section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .section-heading { font-size: 3rem; } }
.about-section .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 3.4rem; } }
.about-section__quote {
	margin-top: 2rem; padding-top: 0; font-family: var(--font-display); font-size: 1.25rem;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.375;
}
@media (min-width: 1024px) {
	.about-section__quote { margin-top: auto; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
}
.about-section__col-right { display: flex; flex-direction: column; height: 100%; }
@media (min-width: 1024px) { .about-section__col-right { padding-left: 2rem; } }
.about-section__copy { display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.about-section__copy .about-highlight { color: var(--color-primary); font-weight: 500; }
.about-section__stats {
	margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 1024px) { .about-section__stats { margin-top: auto; } }
@media (min-width: 640px) { .about-section__stats { grid-template-columns: repeat(4, 1fr); } }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-primary); }
@media (min-width: 768px) { .about-section__stat-value { font-size: 2.25rem; } }
.about-section__stat-label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* -------------------------------------------------------------------------
   8. Shop
   ------------------------------------------------------------------------- */
.shop-section { background-color: var(--color-background); 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__head-text { max-width: 42rem; }
.shop-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.icon-search { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; 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-color: var(--color-linen);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	font-size: 14px;
}
.shop-section__search input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }
.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.theme-cat-filter {
	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);
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	background-color: transparent;
	transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.is-active { background-color: 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); }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem 2.5rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .theme-product-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-product-grid--related { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, 1fr); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; cursor: pointer; }
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1 / 1; background-color: var(--color-linen);
	border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem;
}
.theme-product-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 3.2s cubic-bezier(0.16, 0.84, 0.34, 1);
	will-change: transform;
}
.theme-product-card:hover .theme-product-card__img { transform: scale(1.06); }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem;
	background-color: var(--color-foreground); color: var(--color-background);
	font-size: 11px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 999px;
}
.theme-product-card__info { flex: 1; padding-inline: 0.125rem; }
.theme-product-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-bottom: 0.375rem; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.375; color: var(--color-foreground); transition: color 0.3s ease; min-width: 0; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.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 .amount { font-weight: 500; }

/* -------------------------------------------------------------------------
   9. Services / Guarantees
   ------------------------------------------------------------------------- */
.services-section { position: relative; background-color: var(--color-primary); color: var(--color-primary-foreground); padding: 6rem 0; overflow: hidden; isolation: isolate; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__bg {
	position: absolute; inset: 0; z-index: -3;
	background-image: var(--services-bg-url); background-position: center; background-size: cover; background-attachment: fixed;
}
.services-section__tint { position: absolute; inset: 0; z-index: -2; background-color: color-mix(in srgb, var(--color-primary) 85%, transparent); }
.services-section__gradient { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-primary) 40%, transparent), transparent, color-mix(in srgb, var(--color-primary) 60%, transparent)); }
.services-section__head { max-width: 48rem; margin-bottom: 3.5rem; }
.services-heading {
	font-size: 2.25rem;
	color: var(--color-primary-foreground);
}
@media (min-width: 768px) { .services-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-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-color: color-mix(in srgb, var(--color-primary) 60%, transparent);
	backdrop-filter: blur(10px);
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
	border-radius: 1rem; padding: 1.75rem;
	transition: border-color 0.2s ease;
}
@media (min-width: 768px) { .services-card { padding: 2rem; } }
.services-card:hover { border-color: color-mix(in srgb, var(--color-amber) 60%, transparent); }
.services-card__icon {
	display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem;
	border-radius: 999px; background-color: var(--color-amber); color: var(--color-amber-foreground);
	margin-bottom: 1.5rem; box-shadow: var(--shadow-soft); border: 1px solid color-mix(in srgb, var(--color-amber) 40%, transparent);
}
.services-card__title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.services-card__body { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); }

/* -------------------------------------------------------------------------
   10. FAQ + Testimonials
   ------------------------------------------------------------------------- */
.faq-section { background-color: var(--color-background); 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; align-items: stretch; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; } }
.faq-section__col-left { display: flex; flex-direction: column; height: 100%; }
.faq-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
.faq-section__intro { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 24rem; }
.faq-section__card {
	display: none; margin-top: 2.5rem; position: relative; overflow: hidden;
	border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background-color: var(--color-linen); padding: 1.75rem; flex: 1; flex-direction: column;
}
@media (min-width: 1024px) { .faq-section__card { display: flex; } }
.faq-section__card-icon {
	display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem;
	border-radius: 999px; background-color: color-mix(in srgb, var(--color-amber) 15%, transparent); color: var(--color-amber); margin-bottom: 1.25rem;
}
.faq-section__card-title { font-size: 1.5rem; line-height: 1.375; margin-bottom: 0.5rem; }
.faq-section__card-body { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }

.theme-accordion__item { 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.375; 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); position: relative; width: 20px; height: 20px; }
.icon-plus, .icon-minus { position: absolute; inset: 0; width: 20px; height: 20px; transition: opacity 0.15s; }
.theme-accordion__item .icon-minus { opacity: 0; }
.theme-accordion__item.is-open .icon-plus { opacity: 0; }
.theme-accordion__item.is-open .icon-minus { opacity: 1; }
.theme-accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.theme-accordion__item.is-open .theme-accordion__panel { grid-template-rows: 1fr; }
.theme-accordion__panel-inner { overflow: hidden; }
.theme-accordion__answer { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 42rem; }
@media (min-width: 768px) { .theme-accordion__answer { font-size: 15px; } }

.testimonials-block__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials-block__title { font-size: 1.875rem; line-height: 1.25; }
@media (min-width: 768px) { .testimonials-block__title { font-size: 2.25rem; } }
.testimonials-block__nav { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .testimonials-block__nav { display: flex; } }
.testimonials-block__prev, .testimonials-block__next {
	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;
}
.testimonials-block__prev:hover, .testimonials-block__next:hover { border-color: var(--color-primary); color: var(--color-primary); }
.testimonials-block__viewport { overflow: hidden; margin-inline: -0.75rem; }
.testimonials-block__track { display: flex; transition: transform 0.4s ease; }
.testimonials-block__slide { flex: 0 0 100%; padding-inline: 0.75rem; }
@media (min-width: 768px) { .testimonials-block__slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testimonials-block__slide { flex-basis: 25%; } }
.testimonial-card {
	height: 100%; display: flex; flex-direction: column;
	background: linear-gradient(to bottom right, var(--color-background), var(--color-linen), color-mix(in srgb, var(--color-amber) 15%, transparent));
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft);
	transition: box-shadow 0.2s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-elevated); }
.testimonial-card__stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; color: var(--color-primary); }
.icon-star { width: 14px; height: 14px; fill: currentColor; }
.testimonial-card__text { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; }
.testimonial-card__footer { 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; }
.testimonial-card__city { font-size: 12px; 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: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.2s ease; }
.testimonials-block__dot.is-active { width: 2rem; background-color: var(--color-primary); }
.testimonials-block__dot:hover { background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }

/* -------------------------------------------------------------------------
   11. Pre-contact CTA
   ------------------------------------------------------------------------- */
.precontact-section { position: relative; overflow: hidden; }
.precontact-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.precontact-section__scrim { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 70%, rgba(0,0,0,0.88) 100%); }
.precontact-section__tint { position: absolute; inset: 0; pointer-events: none; background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.precontact-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding: 7rem 0; }
@media (min-width: 768px) { .precontact-section__content { padding: 10rem 0; } }
.precontact-section__eyebrow { font-size: 11px; letter-spacing: 0.38em; text-transform: uppercase; color: color-mix(in srgb, #fff 80%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
@media (min-width: 640px) { .precontact-section__eyebrow { font-size: 12px; } }
.precontact-section__title {
	font-weight: 400; color: #fff; line-height: 1.05; letter-spacing: -0.025em;
	max-width: 56rem; margin-inline: auto;
	font-size: clamp(2rem, 5.5vw, 4rem);
	text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.precontact-section__title em { font-style: italic; color: color-mix(in srgb, var(--color-amber) 95%, transparent); }
.precontact-section__subtitle { margin-top: 1.5rem; max-width: 36rem; margin-inline: auto; font-size: 15px; color: color-mix(in srgb, #fff 65%, transparent); line-height: 1.6; }
.precontact-section__actions { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------
   12. Contact
   ------------------------------------------------------------------------- */
.contact-section { background-color: 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: start; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-title { font-size: 2.25rem; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-section__intro { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 28rem; }
.contact-section__channels { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__channels a { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s ease; }
.contact-section__channels a:hover { color: var(--color-primary); }
.contact-section__channel-icon {
	width: 2.75rem; height: 2.75rem; border-radius: 999px; background-color: var(--color-background);
	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__channels a:hover .contact-section__channel-icon { border-color: var(--color-primary); }
.contact-section__channel-text { display: flex; flex-direction: column; text-align: left; }
.contact-section__channel-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__channel-value { font-size: 15px; font-weight: 500; }

.contact-section__form {
	background-color: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
	box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-section__form-row { grid-template-columns: 1fr 1fr; } }
.contact-section__field label {
	display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem;
}
.contact-section__field input, .contact-section__field textarea, .contact-section__field select {
	width: 100%; height: 48px; padding-inline: 1rem;
	background-color: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: 0.375rem; transition: border-color 0.2s ease;
}
.contact-section__field textarea { height: auto; padding-block: 0.75rem; resize: none; }
.contact-section__field input::placeholder, .contact-section__field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-section__field input:focus, .contact-section__field textarea:focus, .contact-section__field select:focus { outline: none; border-color: var(--color-primary); }
.contact-section__select-wrap { position: relative; }
.contact-section__select-wrap select { appearance: none; padding-right: 2.5rem; }
.icon-select-caret { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); pointer-events: none; }
.contact-section__submit { width: 100%; }
.contact-section__note { font-size: 12px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__status { font-size: 13px; text-align: center; color: var(--color-primary); min-height: 1em; }

/* -------------------------------------------------------------------------
   13. Marquee
   ------------------------------------------------------------------------- */
.marquee-section {
	background-color: var(--color-primary); color: var(--color-primary-foreground);
	border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 10%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 10%, transparent);
	overflow: hidden;
}
.marquee-section__row { position: relative; display: flex; padding-block: 1.5rem; }
.marquee-section__track { display: flex; flex-shrink: 0; gap: 3rem; padding-right: 3rem; white-space: nowrap; animation: theme-marquee 40s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-section__track { animation: none; } }
.marquee-section__track--aria-hidden { display: none; }
.marquee-section__item { display: flex; align-items: center; gap: 3rem; }
.marquee-section__item span { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.018em; }
@media (min-width: 768px) { .marquee-section__item span { font-size: 1.875rem; } }
.icon-star-fill { width: 1rem; height: 1rem; fill: var(--color-amber); stroke: none; flex-shrink: 0; color: var(--color-amber); }

/* -------------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------------- */
.site-footer { background-color: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 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.625rem; }
.site-footer__brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.site-footer__tagline { 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__shipping-note { margin-top: 1rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__heading { font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 1rem; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer .theme-nav-list { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
.site-footer__list a, .site-footer__list button,
.site-footer .theme-nav-list a { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color 0.2s ease; text-align: left; }
.site-footer__list a:hover, .site-footer__list button:hover,
.site-footer .theme-nav-list a:hover { color: var(--color-primary); }
.site-footer__contact-list a { display: inline-flex; align-items: center; gap: 0.5rem; }
.icon-sm { width: 1rem; height: 1rem; }
.site-footer__bottom {
	margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright, .site-footer__credit { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 2px; }
.site-footer__credit a:hover { color: var(--color-primary); }

/* -------------------------------------------------------------------------
   15. Side cart drawer + overlay (Section 12 / 31)
   ------------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 55;
	background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
	background-color: var(--color-background); z-index: 60;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 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; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; transition: background-color 0.2s ease; }
.theme-cart-drawer__close:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.icon-xl { width: 3rem; height: 3rem; color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-xs { width: 0.875rem; height: 0.875rem; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty p { margin: 1rem 0 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

.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-image {
	flex-shrink: 0;
	display: block;
	width: 5rem;
	height: 6rem;
	border-radius: 0.375rem;
	overflow: hidden;
	background-color: var(--color-bone);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { display: block; font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s ease; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-price { margin-top: 0.125rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__item-variation { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background-color: var(--color-bone); }
.theme-cart-drawer__qty-value { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 13px; 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 color-mix(in srgb, var(--color-foreground) 10%, transparent); background-color: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal-row span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal-value { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* -------------------------------------------------------------------------
   16. Single product page (Section 11 / 11.13)
   ------------------------------------------------------------------------- */
.single-product-main { padding-top: calc(var(--header-height) + 1rem); padding-bottom: 2rem; }
@media (min-width: 1024px) { .single-product-main { padding-top: calc(var(--header-height) + 2rem); } }
.theme-breadcrumb { padding-block: 1.5rem; font-size: 12px; 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__sep { margin-inline: 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.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-color: var(--color-linen);
	border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem;
}
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb {
	aspect-ratio: 1 / 1; background-color: var(--color-linen); border-radius: 0.375rem; overflow: hidden;
	border: 2px solid transparent; transition: border-color 0.2s ease;
}
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.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-info__cat { 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-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: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__stock { font-size: 13px; font-weight: 500; margin-bottom: 1rem; }
.theme-product-info__stock.is-out-of-stock { color: var(--color-destructive); }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 1.5rem; 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; }
.theme-qty-minus, .theme-qty-plus { padding: 0.625rem 1rem; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 3rem; border: none; background: transparent; text-align: center; font-size: 14px; font-weight: 500; padding: 0.625rem 0; -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, .theme-product-info .theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
}
.theme-product-info .single_add_to_cart_button,
.theme-product-info .theme-buy-now-button { flex: 1 1 auto; min-width: 160px; }

.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-label { 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-content ul { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-info__details-content li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; }
.theme-product-info__details-content li::before { content: ""; width: 4px; height: 4px; background-color: var(--color-primary); border-radius: 999px; margin-top: 0.625rem; margin-right: 0.75rem; flex-shrink: 0; }

.theme-product-info__features { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.theme-product-info__feature { text-align: center; }
.theme-product-info__feature svg { margin-inline: auto; color: var(--color-primary); margin-bottom: 0.5rem; }
.theme-product-info__feature p { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.related-products-section { padding-top: 5rem; padding-bottom: 5rem; 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__title { font-size: 1.875rem; font-family: var(--font-display); }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }
.related-products-section__view-all { 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__view-all { display: inline-flex; } }
.related-products-section__view-all:hover { color: var(--color-primary); }

/* Variations table (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); font-style: normal; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.theme-attr-pill {
	padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	font-size: 13px; transition: all 0.2s ease;
}
.theme-attr-pill.is-active { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.single_variation_wrap { margin-top: 1rem; }

/* -------------------------------------------------------------------------
   17. Add-to-cart button style overrides (Section 11.4.1 / 11.4.2)
   ------------------------------------------------------------------------- */
.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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !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; }

/* -------------------------------------------------------------------------
   18. WooCommerce shop / archive
   ------------------------------------------------------------------------- */
.shop-section--archive { padding-top: calc(var(--header-height) + 2rem); }
.theme-pagination { margin-top: 3rem; display: flex; justify-content: center; gap: 0.5rem; }
.theme-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); font-size: 14px; }
.theme-pagination .page-numbers.current { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

/* Scoped notice visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 1400px; margin: 1rem auto; padding: 1rem 1.5rem; border-radius: 0.5rem;
	font-size: 14px; list-style: none; background-color: var(--color-linen); color: var(--color-foreground);
	border-left: 4px solid var(--color-primary);
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* -------------------------------------------------------------------------
   19. Checkout Block (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-checkout .theme-page-container,
body.woocommerce-cart .theme-page-container,
body.woocommerce-account .theme-page-container {
	max-width: 1400px;
	padding-top: calc(var(--header-height) + 1.5rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .theme-page-container,
	body.woocommerce-cart .theme-page-container,
	body.woocommerce-account .theme-page-container {
		padding-top: calc(var(--header-height) + 3rem);
	}
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title {
	font-size: 2.25rem;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .page-title,
	body.woocommerce-cart .page-title,
	body.woocommerce-account .page-title { font-size: 3rem; }
}

/* Single grid owner: the sidebar-layout component that directly contains
   __main and __sidebar. The outer .wc-block-checkout wrapper stays block
   so there is never a grid-within-grid (Section 13.2). */
body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	grid-column: 1 / -1;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

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,
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	width: 100% !important;
	max-width: none !important;
	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: 0.375rem;
	background-color: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	border-color: var(--color-primary);
	outline: none;
}
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;
	font-family: var(--font-body) !important;
	font-weight: 500 !important;
	text-transform: none !important;
	height: var(--btn-height) !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;
	font-family: var(--font-body);
}

body.woocommerce-checkout .wc-block-cart-items,
body.woocommerce-checkout h2,
body.woocommerce-checkout h3 {
	font-family: var(--font-display);
	font-weight: inherit;
}

/* -------------------------------------------------------------------------
   20. Thank-you page (Section 22.8)
   ------------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details {
	font-family: var(--font-body);
	font-size: 14px;
}
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-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
body.theme-thankyou-page .woocommerce-order-overview li {
	font-size: 13px;
}
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-size: 14px; margin-top: 0.25rem; }
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);
}
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; font-style: normal;
}
@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; }
}

/* -------------------------------------------------------------------------
   21. 404 page
   ------------------------------------------------------------------------- */
.theme-404 { min-height: 70vh; display: flex; align-items: center; padding-top: var(--header-height); }
.theme-404__inner { text-align: center; margin-inline: auto; max-width: 32rem; padding-block: 4rem; }
.theme-404__title { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }

/* -------------------------------------------------------------------------
   22. Generic page template
   ------------------------------------------------------------------------- */
.site-main { min-height: 40vh; }

/* -------------------------------------------------------------------------
   23. WordPress admin bar — keep fixed header below toolbar
   ------------------------------------------------------------------------- */
body.admin-bar {
	--admin-bar-offset: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--admin-bar-offset: 46px;
	}
}
.admin-bar .site-header {
	top: var(--admin-bar-offset);
}
body.admin-bar section[id] {
	scroll-margin-top: calc(var(--header-height) + var(--admin-bar-offset));
}
body.admin-bar .theme-404,
body.admin-bar .shop-section--archive,
body.admin-bar .theme-fallback-main,
body.admin-bar .theme-page-container {
	padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 1rem);
}
@media (min-width: 1024px) {
	body.admin-bar.woocommerce-checkout .theme-page-container,
	body.admin-bar.woocommerce-cart .theme-page-container,
	body.admin-bar.woocommerce-account .theme-page-container {
		padding-top: calc(var(--header-height) + var(--admin-bar-offset) + 3rem);
	}
}

/* -------------------------------------------------------------------------
   24. Pointer cursor on interactive elements
   ------------------------------------------------------------------------- */
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
label[for],
select,
summary,
.theme-product-card,
.theme-cat-filter,
.theme-accordion__trigger,
.site-header__brand,
.site-header__cart-btn,
.site-header__menu-toggle,
.theme-nav-list a,
.testimonials-block__prev,
.testimonials-block__next,
.testimonials-block__dot,
.theme-attr-pill,
.theme-pagination .page-numbers,
.theme-pagination a,
[data-cart-open],
[data-section-anchor],
[data-cart-close],
.contact-form button,
.theme-cart-drawer__close,
.theme-cart-drawer__qty-btn,
.theme-cart-drawer__remove,
.theme-cart-drawer__item-image,
.theme-cart-drawer__item-name,
.theme-product-gallery__thumb,
.related-products-section__view-all,
.footer a,
.site-footer a {
	cursor: pointer;
}
button:disabled,
input:disabled,
.btn.disabled,
.btn:disabled,
.theme-attr-pill.is-disabled {
	cursor: not-allowed;
}
.theme-page-container {
	padding-top: calc(var(--header-height) + 1.5rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	.theme-page-container { padding-top: calc(var(--header-height) + 2.5rem); }
}
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }
