/* ==========================================================================
   Bad Little Kids Soap — theme stylesheet
   Author: The Free Website Guys
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens */
:root {
	--background: 220 10% 7%;
	--foreground: 40 14% 88%;
	--ivory: 40 20% 94%;
	--linen: 220 10% 10%;
	--bone: 220 9% 14%;
	--primary: 352 68% 40%;
	--blood: 352 72% 46%;
	--blood-foreground: 40 22% 96%;
	--muted-foreground: 40 6% 62%;
	--border: 220 8% 20%;

	--color-background: hsl(var(--background));
	--color-foreground: hsl(var(--foreground));
	--color-ivory: hsl(var(--ivory));
	--color-linen: hsl(var(--linen));
	--color-bone: hsl(var(--bone));
	--color-primary: hsl(var(--primary));
	--color-blood: hsl(var(--blood));
	--color-blood-foreground: hsl(var(--blood-foreground));
	--color-muted-foreground: hsl(var(--muted-foreground));
	--color-border: hsl(var(--border));
	--color-button-text: var(--color-blood-foreground);

	--font-display: 'Newsreader', 'Times New Roman', serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--radius: 0.625rem;
	--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;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--header-height: 80px;
	--logo-height: 44px;
	--checkout-gap: 2rem;

	--shadow-soft: 0 4px 18px -8px hsl(0 0% 0% / 0.65);
	--shadow-elevated: 0 16px 48px -16px hsl(0 0% 0% / 0.8);
}

/* ------------------------------------------------------------------ Reset */
* { box-sizing: border-box; border-color: var(--color-border); }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: -0.012em;
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}
.font-display { font-family: var(--font-display); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img) { max-width: 100%; height: auto; }
.cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
section[id] { scroll-margin-top: 80px; }
.admin-bar section[id] { scroll-margin-top: 112px; }
@media screen and (max-width: 782px) {
	.admin-bar section[id] { scroll-margin-top: 126px; }
}
button,
a,
[role="button"],
select,
summary,
label[for],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="image"],
.theme-cat-filter,
.theme-product-thumb,
.testimonials__nav-btn,
.testimonials__dot,
.benefits-card,
[data-cart-open],
[data-cart-close],
.woocommerce a.button,
.woocommerce button.button {
	cursor: pointer;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	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; } }

/* ------------------------------------------------------------- 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);
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
	cursor: pointer;
}
.btn svg { pointer-events: none; width: 1rem; height: 1rem; flex-shrink: 0; }
.btn:disabled { pointer-events: none; opacity: 0.6; }
.btn-lg { height: 48px; padding: 0 1.75rem; }
.btn-sm { height: 36px; padding: 0 1rem; }
.btn-blood { background: var(--color-blood); color: var(--color-blood-foreground); border-color: var(--color-blood); }
.btn-blood:hover { background: color-mix(in srgb, var(--color-blood) 85%, transparent); }
.btn-outline { background: transparent; color: var(--color-ivory); border-color: color-mix(in srgb, var(--color-ivory) 30%, transparent); }
.btn-outline:hover { border-color: color-mix(in srgb, var(--color-ivory) 70%, transparent); background: color-mix(in srgb, var(--color-ivory) 6%, transparent); }
.btn-glass { background: color-mix(in srgb, var(--color-ivory) 8%, transparent); color: var(--color-ivory); border-color: color-mix(in srgb, var(--color-ivory) 35%, transparent); backdrop-filter: blur(8px); }
.btn-glass:hover { background: color-mix(in srgb, var(--color-ivory) 16%, transparent); }
.btn-ghost { background: transparent; color: var(--color-foreground); border-color: transparent; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-ivory) 7%, transparent); }
.btn-hero-primary, .btn-hero-outline { text-transform: none; }

/* ------------------------------------------------------------ Section heading defaults */
.section-heading { font-family: var(--font-display); font-weight: 400; line-height: 1.05; color: var(--color-ivory); }
em { font-style: normal; }

/* --------------------------------------------------------- Scroll 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;
}
.reveal-item.scale-in-item { transform: translateY(16px) scale(0.98); }
.reveal-item.is-visible { opacity: 1; transform: translateY(0) scale(1); }
body.is-customizer .reveal-item,
body.is-customizer .scale-in-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- Header */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	transition: background-color 0.5s ease, border-color 0.5s ease, top 0.2s ease;
	background: transparent;
	border-bottom: 1px solid transparent;
}
/* Keep the fixed header below the WordPress admin bar when logged in. */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
}
.site-header.is-solid,
.site-header.is-scrolled {
	background: color-mix(in srgb, var(--color-background) 80%, transparent);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-ivory) 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: 999px;
	background: transparent;
	border: none;
	color: var(--color-ivory);
	order: 1;
}
.site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-ivory) 10%, transparent); }
.site-header__menu-toggle .icon-close { display: none; }
.site-header__menu-toggle.is-open .icon-menu { display: none; }
.site-header__menu-toggle.is-open .icon-close { display: block; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	order: 2;
}
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
/* brightness → invert matches Tailwind's composed filter (white mark on dark UI). */
.site-logo-img {
	height: var(--logo-height) !important;
	width: auto !important;
	max-height: var(--logo-height);
	display: block;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}
.site-header .site-logo-img { filter: brightness(0) invert(1); opacity: 0.9; }
.site-logo-text { font-family: var(--font-display); color: var(--color-ivory); font-size: 1.1rem; }
.site-header__brand-text { display: none; font-family: var(--font-display); font-size: 15px; line-height: 1.2; color: var(--color-ivory); }
@media (min-width: 768px) { .site-header__brand-text { display: block; } }
.site-header__brand-sub { display: block; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; font-family: var(--font-body); }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) { .site-header__nav { display: flex; order: 2; justify-self: center; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-list a.theme-nav-link,
.theme-nav-list li a {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-ivory) 70%, transparent);
	transition: color 0.3s ease;
}
.theme-nav-list li a:hover,
.theme-nav-list a.is-active { color: var(--color-ivory); }

.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: 999px;
	background: transparent;
	border: none;
	color: var(--color-ivory);
}
.site-header__cart-btn:hover { background: color-mix(in srgb, var(--color-ivory) 10%, transparent); }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	background: var(--color-blood);
	color: var(--color-blood-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-panel { display: none; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(20px); }
.site-header__mobile-panel.is-open { display: block; }
.site-header__mobile-panel-inner {
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.site-header__mobile-panel-inner {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 1024px) {
	.site-header__mobile-panel-inner {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.theme-mobile-nav-list,
.site-header__mobile-panel .theme-nav-list,
.site-header__mobile-panel ul {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
.theme-mobile-nav-list li,
.site-header__mobile-panel .theme-nav-list li,
.site-header__mobile-panel ul > li { display: block; width: 100%; }
.theme-mobile-nav-list li a,
.theme-mobile-nav-list a.theme-nav-link,
.site-header__mobile-panel .theme-nav-list li a,
.site-header__mobile-panel a.theme-nav-link {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent);
	color: color-mix(in srgb, var(--color-ivory) 80%, transparent);
	transition: color 0.2s ease;
}
.theme-mobile-nav-list li:last-child a,
.site-header__mobile-panel .theme-nav-list li:last-child a,
.site-header__mobile-panel ul > li:last-child a { border-bottom: 0; }
.theme-mobile-nav-list li a:hover,
.site-header__mobile-panel a.theme-nav-link:hover { color: var(--color-blood); }
@media (min-width: 1024px) { .site-header__mobile-panel { display: none !important; } }

body.theme-no-hero .site-main { padding-top: var(--header-height); }

/* -------------------------------------------------------------- Hero */
.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--color-background);
}
.hero-section__video { opacity: 0.85; }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(at center, hsl(220 12% 4% / 0.62) 0%, hsl(220 12% 3% / 0.8) 65%, hsl(220 12% 2% / 0.92) 100%); }
.hero-section__overlay { position: absolute; inset: 0; pointer-events: none; background: color-mix(in srgb, var(--color-background) 40%, transparent); }
.hero-section__content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding-top: 10rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.hero-section__content {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 1024px) {
	.hero-section__content {
		padding-top: 13rem;
		padding-bottom: 8rem;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.hero-section__badge-wrap { 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-mix(in srgb, var(--color-ivory) 6%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-ivory) 20%, transparent);
	backdrop-filter: blur(8px);
	font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
	color: var(--color-ivory);
}
.hero-section__badge svg { color: var(--color-blood); width: 14px; height: 14px; }
.hero-section__title {
	color: var(--color-ivory);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 auto;
	max-width: 62rem;
	font-size: clamp(2.4rem, 6.4vw, 5rem);
	text-shadow: 0 2px 36px rgba(0, 0, 0, 0.8);
}
.hero-section__title-emphasis { color: var(--color-blood); }
.hero-section__subtitle { margin: 1.5rem auto 0; max-width: 48rem; font-family: var(--font-display); color: color-mix(in srgb, var(--color-ivory) 90%, transparent); line-height: 1.3; font-size: clamp(1.05rem, 2.2vw, 1.6rem); }
.hero-section__description { margin: 1.5rem auto 0; max-width: 42rem; font-size: 14px; color: color-mix(in srgb, var(--color-ivory) 70%, transparent); line-height: 1.7; }
@media (min-width: 640px) { .hero-section__description { font-size: 15px; } }
.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; } }

/* -------------------------------------------------------------- About */
.about-section { position: relative; background: var(--color-background); padding: 6rem 0; overflow: hidden; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__glow { position: absolute; top: 33%; left: -10rem; width: 34rem; height: 34rem; border-radius: 999px; background: color-mix(in srgb, var(--color-blood) 8%, transparent); filter: blur(64px); pointer-events: none; }
.about-section__inner { position: relative; }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__portrait-frame { position: relative; }
.about-section__portrait-border { position: absolute; inset: -0.75rem; border-radius: 1.75rem; border: 1px solid color-mix(in srgb, var(--color-blood) 25%, transparent); pointer-events: none; }
.about-section__portrait-photo { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: var(--color-linen); aspect-ratio: 4 / 5; box-shadow: var(--shadow-elevated); }
.about-section__portrait-photo .cover-img {
	object-position: 50% 22%;
	filter: contrast(1.05) saturate(0.85);
}
.about-section__portrait-scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 20%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent)); }
.about-section__portrait-caption { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem 1.75rem; }
.about-section__portrait-name { font-family: var(--font-display); font-size: 1.75rem; color: var(--color-ivory); line-height: 1; }
.about-section__portrait-role { margin-top: 0.5rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-blood); font-weight: 500; }
.about-section__stats { margin-top: 1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.about-section__stat { border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: var(--color-linen); padding: 1rem 0.75rem; text-align: center; }
.about-section__stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-blood); line-height: 1; }
.about-section__stat-label { margin-top: 0.5rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); line-height: 1.3; }
.about-section__eyebrow { font-size: 12px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 1.25rem; font-weight: 500; }
.about-section__heading { line-height: 1.04; color: var(--color-ivory); max-width: 18ch; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.about-section__heading-emphasis { color: var(--color-blood); }
.about-section__quote { margin-top: 2.25rem; border-left: 2px solid color-mix(in srgb, var(--color-blood) 70%, transparent); padding-left: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.3; color: color-mix(in srgb, var(--color-ivory) 85%, transparent); }
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__paragraphs { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); max-width: 42rem; }
@media (min-width: 768px) { .about-section__paragraphs { font-size: 1rem; } }
.about-section__accent { color: var(--color-blood); font-weight: 500; }

/* ---------------------------------------------------------- Benefits */
.benefits-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .benefits-section { padding: 8rem 0; } }
.benefits-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.benefits-section__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 1rem; font-weight: 500; }
.benefits-section__heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-ivory); }
@media (min-width: 768px) { .benefits-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .benefits-section__heading { font-size: 3.2rem; } }
.benefits-section__heading-emphasis { color: var(--color-blood); white-space: nowrap; }
.benefits-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .benefits-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-section__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.benefits-card { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); aspect-ratio: 4 / 5; }
.benefits-card__image { transition: transform 0.7s ease-out; }
.benefits-card:hover .benefits-card__image { transform: scale(1.05); }
.benefits-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 60%, transparent), color-mix(in srgb, var(--color-background) 20%, transparent)); transition: opacity 0.5s ease; }
.benefits-card__content { position: absolute; inset: 0; padding: 1.75rem; display: flex; flex-direction: column; justify-content: flex-end; color: var(--color-ivory); }
@media (min-width: 768px) { .benefits-card__content { padding: 2rem; } }
.benefits-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 999px; background: color-mix(in srgb, var(--color-blood) 20%, transparent); border: 1px solid color-mix(in srgb, var(--color-blood) 40%, transparent); backdrop-filter: blur(4px); color: var(--color-blood); margin-bottom: 1.25rem; }
.benefits-card__title { font-size: 1.5rem; line-height: 1.25; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .benefits-card__title { font-size: 1.65rem; } }
.benefits-card__body-wrap { overflow: hidden; max-height: 10rem; opacity: 1; transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
@media (min-width: 768px) { .benefits-card__body-wrap { max-height: 0; opacity: 0; transform: translateY(0.5rem); } .benefits-card:hover .benefits-card__body-wrap { max-height: 10rem; opacity: 1; transform: translateY(0); } }
.benefits-card__body { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-ivory) 80%, transparent); }

/* --------------------------------------------------------------- Shop */
.shop-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 1rem; font-weight: 500; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-ivory); }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-section__description { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__description { font-size: 15px; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { 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: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-ivory) 12%, transparent); font-size: 14px; color: var(--color-foreground); }
.shop-section__search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search-input:focus { outline: none; border-color: var(--color-blood); }
.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-ivory) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; }
.theme-cat-filter:hover { border-color: var(--color-blood); color: var(--color-blood); }
.theme-cat-filter.is-active { background: var(--color-blood); border-color: var(--color-blood); color: var(--color-blood-foreground); }
.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more-wrap { margin-top: 3rem; display: flex; justify-content: center; }
#theme-shop-view-more[hidden] { display: none; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.5rem; }
@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); row-gap: 2.5rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; }
.theme-product-card { position: relative; display: flex; flex-direction: column; width: 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__image-wrapper,
.theme-product-card__quick-actions,
.theme-product-card__quick-actions a,
.theme-product-card__quick-actions span { pointer-events: none; }
.theme-product-card__add-btn,
.theme-product-card__quick-view { pointer-events: auto; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); }
.theme-product-card__image { transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1); will-change: transform; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; background: var(--color-blood); color: var(--color-blood-foreground); font-size: 12px; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; }
.theme-product-card__quick-actions { position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 3; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transform: translateY(0.5rem); transition: opacity 0.5s ease, transform 0.5s ease; }
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; transform: translateY(0); }
.theme-product-card__add-btn {
	flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 40px; border-radius: 999px; background: color-mix(in srgb, var(--color-linen) 95%, transparent);
	backdrop-filter: blur(6px); color: var(--color-ivory); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
	border: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); transition: background-color 0.3s ease, color 0.3s ease;
	z-index: 3;
}
.theme-product-card__add-btn:hover { background: var(--color-blood); color: var(--color-blood-foreground); }
.theme-product-card__quick-view { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: color-mix(in srgb, var(--color-linen) 95%, transparent); backdrop-filter: blur(6px); color: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); }
.theme-product-card__info { padding: 0 0.125rem; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-blood) 90%, transparent); margin-bottom: 0.375rem; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.3; color: var(--color-ivory); transition: color 0.3s ease; }
@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-blood); }
.theme-product-card__scent { margin-top: 0.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.5; }
.theme-product-card__price { margin-top: 0.5rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-ivory) 90%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { font-weight: 500; }
[hidden] { display: none !important; }

/* ------------------------------------------------------------ Marquee */
.marquee-section { background: var(--color-blood); border-top: 1px solid color-mix(in srgb, var(--color-blood) 60%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-blood) 60%, transparent); padding: 1.5rem 0; overflow: hidden; }
@media (min-width: 768px) { .marquee-section { padding: 1.75rem 0; } }
.marquee-section__track { display: flex; animation: theme-marquee 35s linear infinite; }
.marquee-section__group { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; }
@media (min-width: 768px) { .marquee-section__group { gap: 3rem; padding-right: 3rem; } }
.marquee-section__item { display: inline-flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.marquee-section__dot { width: 6px; height: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-ivory) 80%, transparent); }
.marquee-section__item span:last-child { font-family: var(--font-display); color: var(--color-blood-foreground); font-size: 1.125rem; white-space: nowrap; }
@media (min-width: 768px) { .marquee-section__item span:last-child { font-size: 1.25rem; } }
@keyframes theme-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- FAQ */
.faq-section { background: 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; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 4fr 8fr; } }
.faq-section__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 1rem; font-weight: 500; }
.faq-section__heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-ivory); }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__description { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 24rem; }
@media (min-width: 768px) { .faq-section__description { font-size: 15px; } }
.faq-section__card { display: none; margin-top: 2.5rem; }
@media (min-width: 1024px) { .faq-section__card { display: block; } }
.faq-section__card-inner, .faq-section__card { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: var(--color-linen); padding: 1.75rem; }
.faq-section__card-glow { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 999px; background: color-mix(in srgb, var(--color-blood) 20%, transparent); filter: blur(24px); }
.faq-section__card-icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: color-mix(in srgb, var(--color-blood) 15%, transparent); border: 1px solid color-mix(in srgb, var(--color-blood) 35%, transparent); color: var(--color-blood); margin-bottom: 1.25rem; }
.faq-section__card-title { position: relative; font-size: 1.5rem; color: var(--color-ivory); line-height: 1.3; margin-bottom: 0.5rem; }
.faq-section__card-body { position: relative; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-ivory) 12%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; background: none; border: none; color: inherit; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ivory); line-height: 1.4; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--color-blood); }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel p { 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) { .faq-item__panel p { font-size: 15px; } }

/* -------------------------------------------------------- Testimonials */
.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 0.75rem; font-weight: 500; }
.testimonials__heading { font-size: 1.875rem; line-height: 1.25; color: var(--color-ivory); }
@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; } }
.testimonials__nav-btn { width: 40px; height: 40px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-ivory) 20%, transparent); color: color-mix(in srgb, var(--color-ivory) 80%, transparent); display: inline-flex; align-items: center; justify-content: center; background: transparent; transition: border-color 0.2s ease, color 0.2s ease; }
.testimonials__nav-btn:hover { border-color: var(--color-blood); color: var(--color-blood); }
.testimonials__viewport { overflow: hidden; margin: 0 -0.75rem; touch-action: pan-y pinch-zoom; }
.testimonials__track { display: flex; touch-action: pan-y; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.testimonials__slide { flex: 0 0 100%; min-width: 0; padding: 0 0.75rem; }
@media (min-width: 768px) { .testimonials__slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .testimonials__slide { flex-basis: 25%; } }
.testimonial-card { height: 100%; background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-card__stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--color-blood); }
.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-ivory) 10%, transparent); }
.testimonial-card__name { font-size: 14px; font-weight: 500; color: var(--color-ivory); }
.testimonial-card__city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.125rem; }
.testimonials__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials__dots button { height: 6px; width: 6px; border-radius: 999px; background: color-mix(in srgb, var(--color-ivory) 25%, transparent); border: none; transition: all 0.2s ease; padding: 0; }
.testimonials__dots button:hover { background: color-mix(in srgb, var(--color-ivory) 40%, transparent); }
.testimonials__dots button.is-active { width: 2rem; background: var(--color-blood); }

/* -------------------------------------------------------------- PreCTA */
.precta-section { position: relative; overflow: hidden; background: var(--color-background); }
.precta-section__video { opacity: 0.85; }
.precta-section__scrim { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(at center, hsl(220 12% 4% / 0.62) 0%, hsl(220 12% 3% / 0.8) 65%, hsl(220 12% 2% / 0.92) 100%); }
.precta-section__overlay { position: absolute; inset: 0; pointer-events: none; background: color-mix(in srgb, var(--color-background) 60%, transparent); }
.precta-section__content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding-top: 7rem;
	padding-bottom: 7rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.precta-section__content {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 768px) {
	.precta-section__content {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
}
@media (min-width: 1024px) {
	.precta-section__content {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.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: color-mix(in srgb, var(--color-ivory) 80%, transparent); margin-bottom: 1.5rem; font-weight: 500; }
.precta-section__rule { height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-blood) 80%, transparent); }
.precta-section__heading { color: var(--color-ivory); line-height: 1.05; letter-spacing: -0.02em; margin: 0 auto; max-width: 56rem; font-size: clamp(2rem, 5.4vw, 4rem); text-shadow: 0 2px 36px rgba(0, 0, 0, 0.8); }
.precta-section__heading em { color: var(--color-blood); }
.precta-section__description { margin: 1.75rem auto 0; max-width: 34rem; font-size: 15px; color: color-mix(in srgb, var(--color-ivory) 70%, transparent); line-height: 1.6; }
.precta-section__actions { margin-top: 2.5rem; }

/* ------------------------------------------------------------- Contact */
.contact-section { background: var(--color-linen); padding: 6rem 0 3rem; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-section__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 1rem; font-weight: 500; }
.contact-title { font-size: 2.25rem; line-height: 1.05; color: var(--color-ivory); }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-title em { color: var(--color-blood); }
.contact-section__description { 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__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__link { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-ivory); transition: color 0.2s ease; }
.contact-section__link:hover { color: var(--color-blood); }
.contact-section__icon { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease; flex-shrink: 0; }
.contact-section__link:hover .contact-section__icon { border-color: var(--color-blood); }
.contact-section__link-copy { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__link-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__link-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-card { position: relative; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: color-mix(in srgb, var(--color-background) 60%, transparent); padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; }
@media (min-width: 768px) { .contact-section__quote-card { padding: 1.75rem; } }
.contact-section__quote-logo,
.contact-section__quote-card img.contact-section__quote-logo {
	width: 5rem !important;
	height: 5rem !important;
	max-width: 5rem !important;
	max-height: 5rem !important;
	flex-shrink: 0;
	object-fit: contain !important;
	filter: brightness(0) invert(1);
	opacity: 0.8;
}
@media (min-width: 768px) {
	.contact-section__quote-logo,
	.contact-section__quote-card img.contact-section__quote-logo {
		width: 6rem !important;
		height: 6rem !important;
		max-width: 6rem !important;
		max-height: 6rem !important;
	}
}
.contact-section__quote { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-ivory) 85%, transparent); font-size: 1.125rem; line-height: 1.4; }
@media (min-width: 768px) { .contact-section__quote { font-size: 1.25rem; } }
.contact-section__quote-caption { margin-top: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); letter-spacing: 0.02em; }

.contact-form { background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.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__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; }
.theme-input, .contact-form input, .contact-form select, .contact-form textarea {
	width: 100%; height: 48px; padding: 0 1rem; background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-ivory) 15%, transparent); border-radius: 0.5rem;
	font-size: 14px; color: var(--color-foreground); font-family: var(--font-body);
	transition: border-color 0.2s ease;
}
.contact-form textarea { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; resize: none; }
.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-blood); }
.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__footer { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem; }
.contact-form__submit { width: 100%; }
.contact-form__footnote { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); text-align: center; }

/* -------------------------------------------------------------- Footer */
.site-footer { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); }
/* Keep horizontal inset — shorthand padding: X 0 was wiping container-wide side padding. */
.site-footer__inner {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.site-footer__inner {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 768px) {
	.site-footer__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
@media (min-width: 1024px) {
	.site-footer__inner {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.site-footer__logo-img,
.site-footer a.site-footer__brand img.site-footer__logo-img {
	width: 48px !important;
	height: 48px !important;
	max-width: 48px !important;
	max-height: 48px !important;
	object-fit: contain !important;
	display: block;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
	opacity: 0.85;
}
.site-footer__brand-text { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; color: var(--color-ivory); }
.site-footer__brand-sub { display: block; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-blood); font-family: var(--font-body); font-weight: 500; }
.site-footer__description { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); line-height: 1.6; max-width: 20rem; }
.site-footer__tagline { margin-top: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; max-width: 20rem; font-family: var(--font-display); font-style: italic; }
.site-footer__col-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ivory); margin-bottom: 1rem; }
.theme-footer-nav-list, .site-footer__shop-list, .site-footer__contact-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-footer-nav-list a, .site-footer__shop-list a { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: color 0.2s ease; text-align: left; }
.theme-footer-nav-list a:hover, .site-footer__shop-list a:hover { color: var(--color-blood); }
.site-footer__contact-list { font-size: 14px; }
.site-footer__contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; overflow-wrap: anywhere; }
.site-footer__contact-link:hover { color: var(--color-blood); }
.site-footer__contact-static { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__copyright, .site-footer__credit { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
.site-footer__credit a:hover { color: var(--color-blood); }

/* ---------------------------------------------------------- Cart drawer */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); 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-linen); z-index: 61; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	border-left: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent);
	transform: translateX(100%); transition: transform 0.35s 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-ivory) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; color: var(--color-ivory); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; color: var(--color-ivory); background: transparent; border: none; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-ivory) 10%, 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) 60%, 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 { width: 5rem; height: 6rem; background: var(--color-bone); border-radius: 0.375rem; overflow: hidden; flex-shrink: 0; border: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; color: var(--color-ivory); transition: color 0.2s ease; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { color: var(--color-blood); }
.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; color: color-mix(in srgb, var(--color-ivory) 80%, transparent); background: transparent; border: none; border-radius: 0.25rem; transition: background-color 0.2s ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 13px; width: 1.5rem; text-align: center; color: var(--color-ivory); }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); background: transparent; border: none; transition: color 0.2s ease; }
.theme-cart-item__remove:hover { color: var(--color-blood); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); background: color-mix(in srgb, var(--color-background) 60%, 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 { font-weight: 500; color: var(--color-ivory); }
.theme-cart-drawer__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); }

/* -------------------------------------------------------- Single product */
.single-product-main { padding-top: 6rem; background: var(--color-background); }
@media (min-width: 1024px) { .single-product-main { 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 { transition: color 0.2s ease; }
.single-product__breadcrumb a:hover { color: var(--color-blood); }
.single-product__breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }
.single-product__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%; }
@media (min-width: 1024px) { .theme-product-gallery { 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: 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: var(--color-linen); border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; padding: 0; transition: border-color 0.2s ease; position: relative; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-ivory) 25%, transparent); }
.theme-product-thumb.is-active { border-color: var(--color-blood); }
.theme-product-info__category { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-blood); margin-bottom: 0.75rem; font-weight: 500; }
.product-title.single-product__title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; letter-spacing: -0.012em; color: var(--color-ivory); margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title.single-product__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title.single-product__title { font-size: 2.6rem; } }
.single-product__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-ivory) 90%, transparent); margin-bottom: 1.75rem; }
.single-product__price .woocommerce-Price-amount { font-weight: 500; }
.single-product__stock { font-size: 13px; font-weight: 500; margin-bottom: 1.5rem; }
.single-product__stock.is-out-of-stock { color: var(--color-blood); }
.single-product__description { font-size: 15px; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.single-product__description p { margin-bottom: 1rem; }
.single-product__description p:last-child { margin-bottom: 0; }
.single-product__qty-row { margin-bottom: 1.5rem; }
.single-product__qty-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-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-ivory) 20%, transparent); border-radius: 999px; }
.theme-qty-minus, .theme-qty-plus { display: inline-flex; align-items: center; justify-content: center; padding: 0.625rem 1rem; background: transparent; border: none; color: inherit; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-blood); }
.theme-qty-minus svg, .theme-qty-plus svg { display: block; width: 14px; height: 14px; }
.theme-qty-input { width: 44px; min-width: 44px; padding: 0.625rem 0; text-align: center; font-size: 14px; font-weight: 500; background: transparent; border: none; color: var(--color-foreground); -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single-product .theme-add-to-cart-area { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; }
@media (min-width: 640px) { .single-product .theme-add-to-cart-area { flex-direction: row; } }
.single-product .single_add_to_cart_button,
.single-product .theme-buy-now { flex: 1 1 0; width: 100%; min-width: 0; }
.single-product .single_add_to_cart_button.button,
.single-product a.single_add_to_cart_button {
	min-height: 48px !important;
	height: 48px !important;
	padding: 0 1.75rem !important;
	border-radius: var(--btn-radius) !important;
}
.single-product__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); }
.single-product__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; }
.single-product__details-list ul,
ul.single-product__details-list,
.single-product__details-list { display: flex; flex-direction: column; gap: 0.625rem; margin: 0; padding: 0; list-style: none; }
.single-product__details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; list-style: none; }
.single-product__details-list li::before { content: ''; width: 4px; height: 4px; background: var(--color-blood); border-radius: 999px; margin: 0.625rem 0.75rem 0 0; flex-shrink: 0; }
.single-product__pillars { 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-ivory) 10%, transparent); }
.single-product__pillar { text-align: center; }
.single-product__pillar svg { margin: 0 auto 0.5rem; color: var(--color-blood); display: block; }
.single-product__pillar 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: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-ivory) 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-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; color: var(--color-ivory); }
@media (min-width: 768px) { .related-products-section__heading { 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-blood); }

/* -------------------------------------------------------------- Archive */
.archive-product__header { padding: 6rem 0 2rem; }
@media (min-width: 1024px) { .archive-product__header { padding-top: 8rem; } }
.archive-product-main .page-title { font-size: 2.25rem; color: var(--color-ivory); }
.archive-product__pagination { margin-top: 3rem; text-align: center; }
.archive-product__pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.archive-product__pagination .page-numbers li,
.archive-product__pagination a, .archive-product__pagination span { 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-ivory) 15%, transparent); color: var(--color-foreground); font-size: 14px; }
.archive-product__pagination .current { background: var(--color-blood); color: var(--color-blood-foreground); border-color: var(--color-blood); }

/* ------------------------------------------------------------- Generic page */
.site-main { min-height: 40vh; }
body:not(.theme-no-hero) .site-main { padding-top: 0; }
body.theme-no-hero:not(.woocommerce-checkout):not(.single-product) .site-main { padding-top: var(--header-height); }
.theme-page {
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	.theme-page {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 1024px) {
	.theme-page {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.page-title { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-ivory); margin-bottom: 2rem; }

/* ------------------------------------------------------------------ 404 */
.theme-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem 0; gap: 1rem; }
.theme-404__title { font-size: 2.5rem; color: var(--color-ivory); }
.theme-404__text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 32rem; margin-bottom: 1rem; }

/* ------------------------------------------------------ WooCommerce misc */
.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; }

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; padding: 1rem 1.5rem; border-radius: 0.5rem; font-size: 14px;
	background: var(--color-linen); color: var(--color-foreground); border: 1px solid color-mix(in srgb, var(--color-ivory) 12%, transparent);
	margin-bottom: 1.5rem;
}
.woocommerce-error { border-color: var(--color-blood); color: var(--color-ivory); }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_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-product .single_add_to_cart_button.button,
.single-product a.single_add_to_cart_button { background-color: var(--color-blood) !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-product .single_add_to_cart_button.button:hover { background-color: var(--color-blood) !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;
}

.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: var(--btn-icon-padding) !important;
}

.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* ---------------------------------------------------------------- Checkout */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .theme-page {
	padding-top: 2rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
@media (min-width: 640px) {
	body.woocommerce-checkout .theme-page {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .theme-page {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-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 {
	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-ivory) 15%, transparent);
	border-radius: 0.5rem;
	background-color: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-blood); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-blood) !important;
	color: var(--color-blood-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85; }

/* Quantity badge on order-summary thumbnails — must contrast with dark theme */
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	background-color: var(--color-blood) !important;
	border-color: var(--color-blood) !important;
	color: var(--color-blood-foreground) !important;
	box-shadow: 0 0 0 2px var(--color-linen);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity span,
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity .wc-block-components-order-summary-item__quantity__number {
	color: var(--color-blood-foreground) !important;
}

/* ------------------------------------------------------------- Thank you */
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 { margin-top: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 1.5rem; margin: 0 0 2rem;
	background: var(--color-linen); border-radius: var(--card-radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-ivory); padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details th,
body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-ivory) 10%, transparent); font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@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; }
}

/* --------------------------------------------------------------- Utility */
.woocommerce-Price-amount { font-family: var(--font-body); }
.theme-post .entry-content { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
