/*
 * OBSSEZ — main stylesheet
 * Sections:
 *   1. Reset & base
 *   2. Typography
 *   3. Layout primitives
 *   4. Buttons & links
 *   5. Forms
 *   6. Header / announcement / nav
 *   7. Mobile drawer
 *   8. Footer
 *   9. Floating WhatsApp
 *  10. Hero
 *  11. Section scaffolding & eyebrows
 *  12. Product cards
 *  13. Homepage sections (why / ingredients / routine / reviews / social / newsletter)
 *  14. Editorial content (pages, policies)
 *  15. Accordions & tabs
 *  16. Motion / reveal
 *  17. Utilities & a11y
 */

/* ============ 1. Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	font-weight: 400;
	line-height: var(--lh-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	/* clip (not hidden) contains stray horizontal overflow without turning
	   <body> into a scroll container — which would break sticky headers. */
	overflow-x: clip;
}
@supports not (overflow-x: clip) {
	html { overflow-x: hidden; }
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
img { background-color: var(--color-line-soft); }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }
::selection { background: var(--olive); color: var(--ivory); }
hr { border: none; border-top: 1px solid var(--color-line); margin: var(--space-lg) 0; }

/* ============ 2. Typography ============ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: var(--lh-heading);
	color: var(--color-heading);
	letter-spacing: 0.005em;
	text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 600; letter-spacing: var(--tracking-caps); }

p { text-wrap: pretty; }
p + p { margin-top: var(--space-sm); }

a { color: var(--color-link); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--color-link-hover); }

strong, b { font-weight: 600; }
small { font-size: var(--fs-small); }
blockquote {
	font-family: var(--font-heading);
	font-size: var(--fs-h3);
	line-height: 1.4;
	color: var(--color-heading);
	padding-left: var(--space-md);
	border-left: 2px solid var(--color-accent);
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: var(--fs-eyebrow);
	font-weight: 500;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--color-text-faint);
	margin-bottom: var(--space-sm);
}
.eyebrow--gold { color: var(--gold); }

.lead { font-size: var(--fs-lead); color: var(--color-text-muted); line-height: 1.6; }

/* ============ 3. Layout primitives ============ */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

.section { padding-block: var(--section-pad-y); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--ivory { background: var(--color-bg-alt); }
.section--beige { background: var(--beige); }
.section--olive { background: var(--olive); color: var(--ivory); }
.section--olive-deep { background: var(--olive-deep); color: var(--ivory); }
.section--olive h1, .section--olive h2, .section--olive h3, .section--olive h4,
.section--olive-deep h1, .section--olive-deep h2, .section--olive-deep h3, .section--olive-deep h4 { color: var(--ivory); }
.section--olive .eyebrow,
.section--olive-deep .eyebrow { color: var(--gold-soft); }
.section--olive .section-head__text, .section--olive .lead,
.section--olive-deep .section-head__text, .section--olive-deep .lead { color: rgba(247, 243, 234, 0.78); }

.stack > * + * { margin-top: var(--space-sm); }
.grid { display: grid; gap: var(--gutter); }

.site-main:focus { outline: none; }

/* ============ 4. Buttons & links ============ */
.btn {
	--btn-bg: var(--olive);
	--btn-fg: var(--ivory);
	--btn-bd: var(--olive);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	min-height: 52px;
	padding: 0.9em 2.1em;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--btn-fg);
	background: var(--btn-bg);
	border: 1px solid var(--btn-bd);
	border-radius: var(--radius-sm);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:hover { --btn-bg: var(--olive-deep); --btn-bd: var(--olive-deep); color: var(--ivory); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--olive); }
.btn--ghost:hover { --btn-bg: var(--olive); --btn-fg: var(--ivory); }

.btn--gold { --btn-bg: var(--gold); --btn-bd: var(--gold); --btn-fg: var(--ink); }
.btn--gold:hover { --btn-bg: var(--gold-soft); --btn-bd: var(--gold-soft); color: var(--ink); }

.btn--on-dark { --btn-bg: var(--ivory); --btn-bd: var(--ivory); --btn-fg: var(--olive-deep); }
.btn--on-dark:hover { --btn-bg: transparent; --btn-fg: var(--ivory); }

.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 0.65em 1.4em; font-size: 0.72rem; }

.link-underline {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--color-heading);
	padding-bottom: 3px;
	border-bottom: 1px solid var(--color-accent);
}
.link-underline:hover { color: var(--gold); }
.link-underline svg { width: 14px; transition: transform var(--dur) var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }

/* ============ 5. Forms ============ */
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-md); }
.field label, .form-label {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--color-text-muted);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="search"], input[type="number"], input[type="password"], textarea, select {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	color: var(--color-text);
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--olive);
	box-shadow: 0 0 0 3px rgba(74, 82, 51, 0.12);
}
textarea { min-height: 140px; resize: vertical; }
::placeholder { color: var(--grey-soft); }

.form-note { font-size: var(--fs-small); color: var(--color-text-faint); }
.form-feedback { padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-size: var(--fs-small); }
.form-feedback--ok { background: rgba(74, 82, 51, 0.1); color: var(--olive-deep); }
.form-feedback--error { background: rgba(138, 59, 43, 0.1); color: var(--color-sale); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============ 6. Header / announcement / nav ============ */
.announcement-bar {
	background: var(--olive-deep);
	color: var(--ivory);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	height: var(--announcement-h);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.announcement-bar__track {
	display: flex;
	align-items: center;
	gap: 3rem;
	white-space: nowrap;
	animation: obssez-marquee 32s linear infinite;
	padding-left: 3rem;
}
.announcement-bar:hover .announcement-bar__track { animation-play-state: paused; }
.announcement-bar__item { display: inline-flex; align-items: center; gap: 0.6rem; opacity: 0.9; }
.announcement-bar__item::before { content: "\2022"; color: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) {
	.announcement-bar__track { animation: none; justify-content: center; width: 100%; padding-left: 0; flex-wrap: wrap; gap: 1.5rem; }
	.announcement-bar { height: auto; padding-block: 0.5rem; }
}
@keyframes obssez-marquee { to { transform: translateX(-50%); } }

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: color-mix(in srgb, var(--cream) 88%, transparent);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
	background: color-mix(in srgb, var(--cream) 97%, transparent);
	border-bottom-color: var(--color-line-soft);
	box-shadow: var(--shadow-sm);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 0.4rem + 1.6vw, 2.5rem);
	min-height: var(--header-h);
}
.site-branding { flex: 0 0 auto; }
.site-branding a { display: inline-flex; align-items: center; }
.site-branding img, .site-branding .site-title { max-height: 38px; width: auto; }
.site-title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--olive-deep);
	white-space: nowrap;
}
.site-tagline { display: none; }

.primary-nav { flex: 1 1 auto; min-width: 0; }
.primary-nav > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: clamp(0.7rem, 0.1rem + 1.15vw, 1.9rem);
	list-style: none;
}
.primary-nav a {
	position: relative;
	display: block;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--color-text);
	padding-block: 0.4rem;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--dur) var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 220px;
	background: var(--color-surface);
	border: 1px solid var(--color-line-soft);
	box-shadow: var(--shadow);
	padding: 0.5rem 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--dur) var(--ease);
}
.primary-nav li { position: relative; }
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu a { display: block; padding: 0.6rem 1.25rem; letter-spacing: 0.08em; }
.primary-nav .sub-menu a::after { display: none; }

.header-actions { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; gap: clamp(0.6rem, 0.2rem + 1vw, 1.15rem); }
.header-actions button, .header-actions a { display: inline-flex; align-items: center; color: var(--color-text); }
.header-actions svg { width: 21px; height: 21px; }
.header-cart { position: relative; }
.header-cart__count {
	position: absolute;
	top: -8px; right: -10px;
	min-width: 18px; height: 18px;
	display: grid; place-items: center;
	padding: 0 4px;
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 600;
	color: var(--ivory);
	background: var(--olive);
	border-radius: var(--radius-pill);
}
.nav-toggle { display: none; flex: 1 1 0; align-items: center; color: var(--color-text); }
.nav-toggle svg { width: 24px; height: 24px; }

/* Search overlay */
.search-overlay {
	position: fixed;
	inset: 0;
	z-index: var(--z-drawer);
	background: color-mix(in srgb, var(--cream) 97%, transparent);
	backdrop-filter: blur(6px);
	display: grid;
	place-items: start center;
	padding-top: 18vh;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay form { width: min(640px, 90vw); display: flex; flex-direction: column; gap: 1rem; }
.search-overlay input[type="search"] {
	font-family: var(--font-heading);
	font-size: 2rem;
	padding: 0.6rem 0;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-line);
	border-radius: 0;
}
.search-overlay input[type="search"]:focus { box-shadow: none; border-bottom-color: var(--olive); }
.search-overlay__close { position: absolute; top: 2rem; right: 2rem; }
.search-overlay__close svg { width: 26px; height: 26px; }

@media (max-width: 1080px) {
	.primary-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	/* hamburger and actions get equal flex so the logo sits centred */
	.header-actions { flex: 1 1 0; }
	.site-branding { flex: 0 0 auto; }
}

/* ============ 7. Mobile drawer ============ */
.drawer-overlay {
	position: fixed; inset: 0;
	background: rgba(28, 27, 24, 0.4);
	z-index: var(--z-overlay);
	opacity: 0; visibility: hidden;
	transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-drawer {
	position: fixed;
	top: 0; left: 0;
	height: 100dvh;
	width: min(86vw, 380px);
	background: var(--cream);
	z-index: var(--z-drawer);
	transform: translateX(-100%);
	transition: transform var(--dur-slow) var(--ease-out);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.15rem var(--gutter); border-bottom: 1px solid var(--color-line-soft); }
.mobile-drawer__head svg { width: 24px; height: 24px; }
.mobile-drawer nav ul { list-style: none; }
.mobile-drawer nav > ul { padding: var(--space-sm) 0; }
.mobile-drawer nav a {
	display: block;
	padding: 0.95rem var(--gutter);
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: var(--color-heading);
	border-bottom: 1px solid var(--color-line-soft);
}
.mobile-drawer nav .sub-menu a { font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; padding-left: calc(var(--gutter) + 1rem); color: var(--color-text-muted); }
.mobile-drawer__foot { margin-top: auto; padding: var(--space-md) var(--gutter) var(--space-xl); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-drawer__social { display: flex; gap: 1.25rem; padding: var(--space-md) var(--gutter); }
.mobile-drawer__social a svg { width: 20px; height: 20px; }

body.is-locked { overflow: hidden; }

/* ============ 8. Footer ============ */
.site-footer { background: var(--olive-deep); color: var(--ivory); padding-top: var(--space-2xl); }
.site-footer a { color: var(--ivory); opacity: 0.82; }
.site-footer a:hover { opacity: 1; color: var(--gold-soft); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: var(--space-xl);
	padding-bottom: var(--space-2xl);
}
.site-footer__brand .site-title { color: var(--ivory); font-size: 1.5rem; }
.site-footer__tagline { font-family: var(--font-heading); font-style: italic; font-size: 1.15rem; color: var(--gold-soft); margin-top: 0.75rem; }
.site-footer__contact { margin-top: var(--space-md); font-size: var(--fs-small); line-height: 2; opacity: 0.82; }
.footer-col h3 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; font-size: var(--fs-small); }
.site-footer__social { display: flex; gap: 1.25rem; margin-top: var(--space-md); }
.site-footer__social a { opacity: 0.82; }
.site-footer__social svg { width: 20px; height: 20px; }
.site-footer__bottom {
	border-top: 1px solid rgba(247, 243, 234, 0.14);
	padding-block: var(--space-md);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-sm);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.6;
}
@media (max-width: 860px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
	.site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ============ 9. Floating WhatsApp ============ */
.wa-float {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	z-index: var(--z-float);
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.8rem 1.1rem;
	background: #25D366;
	color: #06331b;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); color: #06331b; box-shadow: var(--shadow-lg); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float__label { display: inline; }
@media (max-width: 560px) {
	.wa-float { padding: 0.85rem; }
	.wa-float__label { display: none; }
}
body.single-product .wa-float { bottom: calc(64px + 1rem); }
@media (min-width: 781px) { body.single-product .wa-float { bottom: clamp(1rem, 3vw, 2rem); } }

/* ============ 10. Hero (editorial cover) ============ */
.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 80% at 50% 0%, var(--ivory) 0%, var(--cream) 55%, var(--cream) 100%);
}
.hero--cover .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: clamp(2.25rem, 1.5rem + 3vw, 4.25rem) clamp(3rem, 2rem + 4vw, 5.5rem);
}

.hero__content {
	max-width: 52rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hero__title {
	font-size: clamp(2.4rem, 1.2rem + 4.6vw, 4.35rem);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: 0.005em;
	text-wrap: balance;
}
/* keep the slogan to two elegant lines on wider screens */
@media (min-width: 720px) {
	.hero__title { max-width: 22ch; }
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__text {
	margin-top: var(--space-md);
	max-width: 40rem;
	font-size: var(--fs-lead);
	color: var(--color-text-muted);
}
.hero .eyebrow { margin-bottom: var(--space-sm); }
.hero__actions { margin-top: var(--space-lg); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }

.hero__media {
	position: relative;
	width: 100%;
	max-width: 1040px;                 /* keeps the hero balanced, not overlong */
	margin: clamp(2rem, 1.25rem + 2.5vw, 3.75rem) auto 0;
	aspect-ratio: 3 / 2;               /* matches the Trio photograph — no crop */
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.hero__media::after {                  /* hairline gold frame */
	content: "";
	position: absolute; inset: 0;
	border: 1px solid rgba(176, 141, 76, 0.35);
	border-radius: inherit;
	pointer-events: none;
	z-index: 3;
}
.hero__media img {
	width: 100%; height: 100%;
	object-fit: cover;                 /* image is 3:2, container is 3:2 → nothing lost */
	object-position: center;
}
.hero__glow {
	position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
	background: linear-gradient(to top, rgba(51, 59, 34, 0.28), transparent);
	z-index: 2;
	pointer-events: none;
}

/* The Trio image keeps its 3:2 ratio at every width so no product is cropped. */
@media (max-width: 560px) {
	.hero__media { margin-top: var(--space-lg); border-radius: var(--radius); }
	.hero__actions { width: 100%; max-width: 20rem; flex-direction: column; }
	.hero__actions .btn { width: 100%; }
}

/* ============ 11. Section scaffolding ============ */
.section-head { max-width: var(--container-narrow); margin-bottom: var(--space-xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title { font-weight: 400; }
.section-head__text { margin-top: var(--space-sm); color: var(--color-text-muted); font-size: var(--fs-lead); }
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap; }

/* ============ 12. Product cards ============ */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: clamp(1.25rem, 0.5rem + 2vw, 2.5rem) clamp(1rem, 0.5rem + 1.5vw, 2rem);
}
.product-card { position: relative; display: flex; flex-direction: column; }
.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	background: var(--ivory);
	border-radius: var(--radius);
	overflow: hidden;
}
.product-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform var(--dur-slow) var(--ease), opacity var(--dur) var(--ease);
}
.product-card__media img.is-secondary { position: absolute; inset: 0; opacity: 0; object-fit: cover; }
.product-card:hover .product-card__media img.is-primary { opacity: 0; }
.product-card:hover .product-card__media img.is-secondary { opacity: 1; }
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__badges { position: absolute; top: 0.85rem; left: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; z-index: 2; }
.badge {
	display: inline-block;
	padding: 0.32em 0.7em;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--olive);
	color: var(--ivory);
	border-radius: var(--radius-sm);
}
.badge--sale { background: var(--color-sale); }
.badge--out { background: var(--grey); }

.product-card__quickview {
	position: absolute;
	left: 50%; bottom: 1rem;
	transform: translate(-50%, 1rem);
	opacity: 0;
	transition: all var(--dur) var(--ease);
	z-index: 2;
}
.product-card:hover .product-card__quickview,
.product-card:focus-within .product-card__quickview { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none) { .product-card__quickview { position: static; transform: none; opacity: 1; margin-top: 0.75rem; } }

.product-card__body { padding-top: var(--space-sm); display: flex; flex-direction: column; gap: 0.3rem; }
.product-card__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; }
.product-card__title a { color: var(--color-heading); }
.product-card__title a:hover { color: var(--gold); }
.product-card__desc { font-size: var(--fs-small); color: var(--color-text-faint); }
.product-card__meta { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.2rem; }
.product-card__price { font-size: 1rem; color: var(--color-text); }
.product-card__price del { color: var(--color-text-faint); margin-right: 0.4rem; font-size: 0.85em; }
.product-card__price ins { text-decoration: none; color: var(--color-sale); }
.product-card__actions { margin-top: var(--space-sm); display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.product-card__actions .button,
.product-card__actions .btn { width: 100%; }
.product-card__view { font-size: 0.7rem; }
.product-card__rating { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--color-text-faint); }
.stars { --pct: 0%; display: inline-block; position: relative; font-size: 0.8rem; line-height: 1; letter-spacing: 2px; color: var(--gold); }
.stars::before { content: "\2605\2605\2605\2605\2605"; -webkit-background-clip: text; }

/* ============ 13. Homepage sections ============ */

/* --- Product card "View Product" link --- */
.link-underline--on-dark { color: var(--ivory); border-bottom-color: var(--gold-soft); }
.link-underline--on-dark:hover { color: var(--gold-soft); }

/* --- Complete Care Trio feature --- */
.trio-feature {
	display: grid;
	grid-template-columns: 1.25fr 0.9fr;
	gap: clamp(1.75rem, 1rem + 3vw, 4rem);
	align-items: center;
}
.trio-feature__media {
	position: relative;
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--olive-deep);
	box-shadow: var(--shadow-lg);
}
.trio-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.trio-feature__save {
	position: absolute; top: 1.1rem; left: 1.1rem;
	background: var(--gold); color: var(--ink);
	font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
	text-transform: uppercase; padding: 0.55em 0.95em; border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
}
.trio-feature__panel {
	background: color-mix(in srgb, var(--ivory) 8%, transparent);
	border: 1px solid rgba(247, 243, 234, 0.16);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.trio-feature__heading {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: var(--tracking-eyebrow);
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: var(--space-md);
}
.trio-breakdown { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.trio-breakdown li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: var(--fs-small); color: rgba(247, 243, 234, 0.86); }
.trio-breakdown__name em { font-style: normal; color: rgba(247, 243, 234, 0.5); font-size: 0.85em; margin-left: 0.35rem; }
.trio-breakdown__sep { height: 1px; background: rgba(247, 243, 234, 0.16); margin: 0.35rem 0; }
.trio-breakdown__sub .trio-breakdown__strike { text-decoration: line-through; opacity: 0.6; }
.trio-breakdown__total { padding-top: 0.5rem; font-size: 1rem; color: var(--ivory); }
.trio-breakdown__total span:first-child { font-family: var(--font-heading); font-size: 1.25rem; }
.trio-breakdown__now { font-family: var(--font-heading); font-size: 1.6rem; color: var(--ivory); }
.trio-feature__savings-line { margin: var(--space-md) 0 0; font-size: var(--fs-small); color: var(--gold-soft); }
.trio-feature__savings-line strong { color: var(--ivory); }
.trio-feature__actions { margin-top: var(--space-lg); display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
.trio-feature__actions .btn { align-self: stretch; text-align: center; }
@media (min-width: 861px) { .trio-feature__actions .btn { align-self: flex-start; } }
@media (max-width: 860px) {
	.trio-feature { grid-template-columns: 1fr; }
}

/* --- Targeted Treatments (skin / hair pillars) --- */
.treatments { display: flex; flex-direction: column; gap: clamp(3rem, 2rem + 4vw, 6rem); }
.treatment {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
	align-items: center;
}
.treatment--reverse .treatment__media { order: 2; }
.treatment__media { position: relative; display: flex; gap: 1rem; }
.treatment__img {
	flex: 1;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--ivory);
	box-shadow: var(--shadow);
}
.treatment__img img { width: 100%; height: 100%; object-fit: cover; }
.treatment__img--2 { align-self: flex-end; transform: translateY(8%); max-width: 62%; }
.treatment__title { font-size: var(--fs-h3); font-weight: 400; margin-top: 0.25rem; }
.treatment__copy { margin-top: var(--space-sm); color: var(--color-text-muted); max-width: 34rem; }
.treatment__actives {
	margin-top: var(--space-sm);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
}
.treatment__list { list-style: none; padding: 0; margin: var(--space-md) 0; display: grid; gap: 0.55rem; }
.treatment__list li { position: relative; padding-left: 1.5rem; color: var(--color-text-muted); font-size: var(--fs-small); }
.treatment__list li::before {
	content: ""; position: absolute; left: 0; top: 0.5em;
	width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.treatment__links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-md); }
.treatment__links .link-underline { font-size: 0.72rem; }
@media (max-width: 780px) {
	.treatment { grid-template-columns: 1fr; }
	.treatment--reverse .treatment__media { order: 0; }
	.treatment__media { max-width: 420px; }
	.treatment__img--2 { transform: none; }
}

/* Editorial single-product feature (used by the Haircare section) */
.feature-product {
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	align-items: center;
	gap: clamp(2rem, 4vw, 4.5rem);
}
.feature-product__media {
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--olive-deep);
}
.feature-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.feature-product__media:hover img { transform: scale(1.03); }
.feature-product__title { font-size: var(--fs-h2); font-weight: 400; }
.feature-product__size { font-size: 0.78rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--color-text-faint); margin-top: 0.35rem; }
.feature-product__price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-heading); margin: var(--space-sm) 0; }
.feature-product__desc { color: var(--color-text-muted); }
.feature-product__list { list-style: none; padding: 0; margin: var(--space-md) 0; display: grid; gap: 0.55rem; }
.feature-product__list li { display: flex; gap: 0.7rem; align-items: baseline; color: var(--color-text-muted); }
.feature-product__list li::before { content: ""; width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--gold); transform: translateY(-2px); }
@media (max-width: 780px) {
	.feature-product { grid-template-columns: 1fr; }
	.feature-product__media { max-width: 460px; }
}

/* Why OBSSEZ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.why-card { text-align: center; padding: var(--space-md); }
.why-card__icon { width: 44px; height: 44px; margin: 0 auto var(--space-sm); color: var(--gold); }
.why-card__icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; }
.why-card p { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: 0.4rem; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr 1fr; } }

/* Ingredient spotlight */
.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); max-width: var(--container-narrow); margin-inline: auto; }
@media (max-width: 780px) { .ingredient-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .ingredient-grid { grid-template-columns: 1fr; } }
.ingredient-card {
	position: relative;
	padding: var(--space-md);
	background: var(--color-surface);
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ingredient-card__img { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: var(--space-sm); background: var(--ivory); }
.ingredient-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-card h3 { font-size: 1.2rem; }
.ingredient-card p { font-size: var(--fs-small); color: var(--color-text-muted); margin-top: 0.3rem; }

/* Routine */
.routine { display: grid; gap: var(--space-xl); }
.routine__flow { display: flex; flex-wrap: wrap; align-items: flex-start; gap: var(--space-sm); }
.routine__step { flex: 1 1 140px; text-align: center; position: relative; }
.routine__step-num {
	width: 46px; height: 46px; margin: 0 auto 0.75rem;
	display: grid; place-items: center;
	font-family: var(--font-heading); font-size: 1.2rem;
	border: 1px solid var(--gold); color: var(--gold);
	border-radius: 50%;
}
.routine__step h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.routine__step p { font-size: var(--fs-small); color: var(--color-text-faint); margin-top: 0.3rem; }
/* Highlight the steps that are OBSSEZ products */
.routine__step--obssez .routine__step-num { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.routine__step--obssez h4 { color: var(--olive-deep); }
.routine__flow .routine__step:not(:last-child)::after {
	content: "";
	position: absolute; top: 23px; right: -0.5rem;
	width: 1rem; height: 1px; background: var(--color-line);
}
@media (max-width: 640px) {
	.routine__flow { flex-direction: column; }
	.routine__flow .routine__step:not(:last-child)::after { display: none; }
	.routine__step { display: flex; gap: 1rem; text-align: left; align-items: center; }
	.routine__step-num { margin: 0; flex: none; }
}

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gutter); }
.review-card { background: var(--color-surface); border: 1px solid var(--color-line-soft); border-radius: var(--radius); padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }
.review-card__text { font-family: var(--font-heading); font-size: 1.25rem; line-height: 1.45; color: var(--color-heading); }
.review-card__meta { margin-top: auto; font-size: var(--fs-small); color: var(--color-text-faint); }
.review-card__meta strong { display: block; color: var(--color-text); font-family: var(--font-body); letter-spacing: 0.04em; }
.reviews-empty { text-align: center; color: var(--color-text-faint); font-style: italic; font-family: var(--font-heading); font-size: 1.3rem; }

/* Social */
/* Social icon rows (obssez_social_icons default output). Without this the
 * viewBox-only SVGs blow up to fill their container. */
.social-icons { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.social-icons--center { justify-content: center; }
.social-icons a { display: inline-flex; color: var(--color-heading); transition: color var(--dur-fast) var(--ease); }
.social-icons a:hover { color: var(--gold); }
.social-icons svg { width: 20px; height: 20px; display: block; }
.mobile-drawer__social-icons { display: flex; gap: 1.4rem; }
.mobile-drawer__social-icons a { display: inline-flex; color: var(--color-heading); }
.mobile-drawer__social-icons svg { width: 20px; height: 20px; }

.social-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2px; }
.social-strip a { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ivory); }
.social-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.social-strip a:hover img { transform: scale(1.06); }
.social-strip a::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(51, 59, 34, 0);
	transition: background var(--dur) var(--ease);
}
.social-strip a:hover::after { background: rgba(51, 59, 34, 0.25); }

/* Newsletter / WhatsApp CTA */
.newsletter { text-align: center; }
.newsletter__form { display: flex; gap: 0.5rem; max-width: 480px; margin: var(--space-lg) auto 0; }
.newsletter__form input { flex: 1; background: rgba(255,255,255,0.1); border-color: rgba(247,243,234,0.3); color: var(--ivory); }
.newsletter__form input::placeholder { color: rgba(247,243,234,0.55); }
.newsletter__or { margin-top: var(--space-md); font-size: var(--fs-small); opacity: 0.7; }
@media (max-width: 520px) { .newsletter__form { flex-direction: column; } }

/* ============ 14. Editorial content ============ */
.page-hero { text-align: center; padding-block: var(--space-2xl) var(--space-xl); background: var(--ivory); }
.page-hero__title { font-size: var(--fs-h1); font-weight: 400; }
.page-hero__text { max-width: 40rem; margin: var(--space-sm) auto 0; color: var(--color-text-muted); }

.breadcrumbs { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-faint); padding-block: var(--space-md); }
.breadcrumbs a { color: var(--color-text-faint); }
.breadcrumbs a:hover { color: var(--gold); }

.entry-content { max-width: var(--container-text); margin-inline: auto; }
.entry-content > * + * { margin-top: var(--space-md); }
.entry-content h2 { margin-top: var(--space-xl); }
.entry-content h3 { margin-top: var(--space-lg); }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content li + li { margin-top: 0.4rem; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-details__item { display: flex; gap: 1rem; }
.contact-details__item svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 2px; }
.contact-details__item h3 { font-size: 0.78rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; font-family: var(--font-body); }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }

/* ============ 15. Accordions & tabs ============ */
.accordion { border-top: 1px solid var(--color-line); }
.accordion__item { border-bottom: 1px solid var(--color-line); }
.accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--color-heading);
	text-align: left;
}
.accordion__icon { position: relative; width: 14px; height: 14px; flex: none; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--color-heading); transition: transform var(--dur) var(--ease); }
.accordion__icon::before { top: 6px; left: 0; width: 14px; height: 1px; }
.accordion__icon::after { top: 0; left: 6px; width: 1px; height: 14px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }
.accordion__panel { overflow: hidden; height: 0; transition: height var(--dur) var(--ease); }
.accordion__panel-inner { padding-bottom: 1.5rem; color: var(--color-text-muted); }
.accordion__panel-inner ul, .accordion__panel-inner ol { padding-left: 1.2rem; }
.accordion__panel-inner li + li { margin-top: 0.4rem; }

.tabs__nav { display: flex; gap: 1.5rem; border-bottom: 1px solid var(--color-line); margin-bottom: var(--space-lg); overflow-x: auto; }
.tabs__tab {
	padding: 0.9rem 0;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--color-text-faint);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.tabs__tab[aria-selected="true"] { color: var(--color-heading); border-bottom-color: var(--gold); }
.tabs__panel[hidden] { display: none; }
.no-js .tabs__nav { display: none; }
.no-js .tabs__panel[hidden] { display: block; }
.no-js .tabs__panel { margin-bottom: var(--space-lg); border-bottom: 1px solid var(--color-line-soft); padding-bottom: var(--space-lg); }

/* ============ 16. Motion / reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: 80ms; }
.reveal[data-reveal-delay="2"] { transition-delay: 160ms; }
.reveal[data-reveal-delay="3"] { transition-delay: 240ms; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============ 17. Utilities & a11y ============ */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute;
	left: 8px; top: -60px;
	background: var(--olive);
	color: var(--ivory);
	padding: 0.6rem 1rem;
	z-index: 1000;
	transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 8px; color: var(--ivory); }

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--color-line); border: 0; }
