/* =====================================================================
   Aromelt — Design System
   Skill: ui-ux-pro-max | Style: Luxury E-commerce + Storytelling
   Palette: Aromelt brand — parchment (#EDE8D8) / sage green (#5C6B44)
   Typography: Hebrew-first — Heebo (headings) + Assistant (body)
   ===================================================================== */

/* ── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
/* Prevent horizontal scroll on the entire site */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* Offset anchored sections so the fixed header doesn't cover their titles */
#products, #about, #gallery, #contact { scroll-margin-top: 90px; }

/* ── SKIP LINK (keyboard accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  right: 12px;
  top: -64px;
  z-index: 10000;
  background: var(--gold, #5C6B44);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .skip-link { transition: none; } }
a { color: inherit; text-decoration: none; }

/* ── DESIGN TOKENS — Aromelt brand palette (sage/olive + parchment) ── */
:root {
  /* Parchment / cream scale (from product photography backgrounds) */
  --stone-50:   #F5F1E8;
  --stone-100:  #EDE8D8;
  --stone-200:  #DDD8C4;
  --stone-300:  #C8C0A8;
  --stone-400:  #A09880;
  --stone-500:  #807860;
  --stone-700:  #4A4438;
  --stone-800:  #302C24;
  --stone-900:  #1E1C14;   /* dark (about section) */
  --stone-950:  #141208;

  /* Sage / Olive green — actual Aromelt brand color */
  --gold:       #5C6B44;   /* primary sage green (logo color) */
  --gold-light: #7A8C5A;   /* lighter sage */
  --gold-glow:  #DDE5CC;   /* very light sage tint */
  --gold-mid:   #4E5C38;   /* darker sage (buttons) */

  /* Brass/gold — only for metal hardware (tins, jar lids) */
  --brass:      #C4A840;
  --brass-lt:   #D8BC58;

  /* Semantic tokens */
  --bg:         #EDE8D8;   /* warm parchment — matches photo backgrounds */
  --surface:    #F5F1E6;   /* light cream */
  --surface-2:  #E4DEC8;   /* slightly darker cream */
  --text:       #2A2820;   /* dark warm charcoal */
  --text-2:     #484038;   /* medium warm brown */
  --text-3:     #615847;   /* muted warm gray — darkened to meet WCAG AA (~4.6:1) on parchment */
  --border:     var(--stone-200);
  --border-2:   var(--stone-300);
  --accent:     var(--gold);
  --accent-lt:  var(--gold-light);

  /* Hero — light parchment (matches brand photography) */
  --hero-bg: linear-gradient(160deg, #E4DEC8 0%, #EDE8D8 50%, #E8E2CC 100%);

  /* Shadows (Skill: Soft UI Evolution) */
  --shadow-xs:  0 1px 3px rgba(28,25,23,.07), 0 1px 2px rgba(28,25,23,.05);
  --shadow-sm:  0 2px 8px rgba(28,25,23,.08), 0 1px 4px rgba(28,25,23,.06);
  --shadow-md:  0 4px 20px rgba(28,25,23,.10), 0 2px 8px rgba(28,25,23,.06);
  --shadow-lg:  0 12px 40px rgba(28,25,23,.14), 0 4px 16px rgba(28,25,23,.08);
  --shadow-xl:  0 24px 60px rgba(28,25,23,.18);

  /* Radii (Skill: Organic Biophilic / Soft UI Evolution) */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Animation (Skill: 200–300ms, meaningful) */
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --ease-out:   cubic-bezier(0, 0, .2, 1);
  --ease-spring:cubic-bezier(.34, 1.56, .64, 1);
  --t-fast:  150ms;
  --t-base:  250ms;
  --t-slow:  350ms;

  /* Spacing scale */
  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
}

/* ── BASE TYPOGRAPHY — Hebrew-first: Heebo (headings) + Assistant (body) ────── */
body {
  font-family: 'Assistant', sans-serif;
  font-size: 1.05rem;     /* Assistant needs slightly larger size to match */
  font-weight: 300;       /* thin/light as default — delicate brand feel */
  line-height: 1.7;       /* slightly more generous for thin Hebrew text */
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1160px, 100% - 3rem);
  margin-inline: auto;
}

/* ── EYEBROW / TITLES ───────────────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Assistant', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;        /* thin — Heebo reads most elegantly at 300 */
  color: var(--text);
  line-height: 1.2;
  letter-spacing: .01em;
}

/* Desktop only (not mobile): slightly larger subheadings.
   (product-card__name override lives after its base rule — see below.) */
@media (min-width: 641px) {
  .section-title   { font-size: clamp(2.2rem, 4.5vw, 3.3rem); }
  .section-eyebrow { font-size: .82rem; }
}

.section-header {
  margin-bottom: var(--space-12);
}

/* ── BUTTONS (Skill: min touch target 44×44px) ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;                 /* WCAG touch target */
  padding: .75rem 1.875rem;
  border-radius: var(--r-full);
  font-family: 'Assistant', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: none;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  background: rgba(255,255,255,.12);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(78,92,56,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78,92,56,.38);
}

.btn--ghost {
  background: rgba(92,107,68,.06);
  color: var(--text);
  border: 1.5px solid rgba(92,107,68,.45);  /* stronger border — was .3 (too faint) */
}
.btn--ghost:hover {
  background: rgba(92,107,68,.12);
  border-color: rgba(92,107,68,.7);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ── ICON BUTTON ────────────────────────────────────────────────────── */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; min-height: 44px;   /* WCAG 2.1 touch target */
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-2);
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); }
.icon-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── HEADER ─────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              padding var(--t-base) var(--ease);
}
.header.scrolled {
  background: rgba(237,232,216,.94);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
  padding: var(--space-3) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.logo__mark { color: var(--accent); flex-shrink: 0; }
.logo__text {
  font-family: 'Heebo', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;        /* logo needs some presence but stays delicate */
  color: var(--text);
  letter-spacing: .06em;
}
.logo--light .logo__mark { color: var(--gold-light); }
.logo--light .logo__text { color: rgba(255,255,255,.9); }

/* Nav */
.nav {
  display: flex;
  gap: var(--space-8);
  margin-inline-start: auto;
}
.nav__link {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-2);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--t-base) var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 3px; }

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--text);
  border-radius: 50%;
  transition: background var(--t-fast) var(--ease);
}
.cart-btn:hover { background: var(--surface-2); }
.cart-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.cart-btn__count {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--t-base) var(--ease-spring),
              transform var(--t-base) var(--ease-spring);
}
.cart-btn__count.visible { opacity: 1; transform: scale(1); }

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  padding: var(--space-2);
  border-radius: var(--r-sm);
}
.menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t-base) var(--ease);
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-4) var(--space-6);
  background: rgba(237,232,216,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: var(--space-1);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 1rem; padding: var(--space-3) 0; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-inline-end: 6%;
  padding-bottom: 8%;
  pointer-events: none;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  bottom: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(217,119,6,.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-block: 5rem;
}

.hero__kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 200;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: .02em;
  margin-bottom: var(--space-6);
  /* subtle shadow so text stays crisp over background photo */
  text-shadow: 0 1px 12px rgba(237,232,216,.8), 0 0 30px rgba(237,232,216,.5);
}
.hero__title em {
  font-style: normal;     /* Heebo has no italic — use weight contrast instead */
  font-weight: 300;
  color: var(--gold);
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  /* backdrop so description stays readable over photo */
  text-shadow: 0 0 20px rgba(237,232,216,.9), 0 0 40px rgba(237,232,216,.7);
}

.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(90,100,70,.45), transparent);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(1.2); }
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
}
.hero__wave svg { display: block; width: 100%; height: 100px; }

/* ── HERO PRODUCT SCENE (replaces candle art) ──────────────────────── */
.product-scene {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-blob {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,107,68,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Main tin - large brass circle */
.scene-tin--main {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #F0D068 0%, #C49828 45%, #7A5808 100%);
  box-shadow:
    0 20px 56px rgba(100,80,20,.28),
    inset -6px -6px 20px rgba(0,0,0,.18),
    inset 5px 5px 14px rgba(255,215,70,.25);
  top: 50%; left: 50%;
  transform: translate(-58%, -52%);
  animation: float-tin 6s ease-in-out infinite;
}
.scene-tin--main::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,215,80,.4);
}
.scene-tin--main::after {
  content: 'Aromelt';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58%; height: 30%;
  background: rgba(255,255,255,.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Heebo', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: #2C1A08;
}

/* Small secondary tin */
.scene-tin--sm {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ECC860 0%, #B88820 50%, #6A4C08 100%);
  box-shadow:
    0 10px 32px rgba(0,0,0,.28),
    inset -4px -4px 12px rgba(0,0,0,.15),
    inset 3px 3px 10px rgba(255,210,60,.2);
  bottom: 18%; right: 10%;
  animation: float-sm 7s ease-in-out infinite;
}
.scene-tin--sm::after {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,210,60,.35);
}

/* Glass jar shape */
.scene-jar {
  position: absolute;
  width: 72px; height: 90px;
  top: 12%; right: 20%;
  animation: float-jar 5.5s ease-in-out 1s infinite;
}
.scene-jar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 72px;
  border-radius: 6px;
  background: linear-gradient(to right,
    rgba(235,225,200,.55) 0%,
    rgba(252,248,238,.85) 12%,
    rgba(252,248,238,.85) 88%,
    rgba(218,205,178,.5) 100%);
  border: 1px solid rgba(200,178,138,.4);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.scene-jar::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 66px; height: 22px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #C8A030, #8A6A10);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

/* Floating rose petals */
.scene-petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: .7;
  animation: petal-float 8s ease-in-out infinite;
}
.p1 {
  width: 12px; height: 18px;
  background: #C87060;
  top: 20%; left: 18%;
  animation-delay: 0s;
  transform: rotate(-30deg);
}
.p2 {
  width: 10px; height: 14px;
  background: #D49060;
  bottom: 25%; left: 14%;
  animation-delay: 2.5s;
  transform: rotate(20deg);
}
.p3 {
  width: 9px; height: 13px;
  background: #C46858;
  top: 55%; right: 8%;
  animation-delay: 4.5s;
  transform: rotate(-15deg);
}

@keyframes float-tin {
  0%, 100% { transform: translate(-58%, -52%) translateY(0) rotate(0deg); }
  50%       { transform: translate(-58%, -52%) translateY(-8px) rotate(1.5deg); }
}
@keyframes float-sm {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-6px) rotate(-1.5deg); }
}
@keyframes float-jar {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes petal-float {
  0%        { transform: translateY(0) rotate(-30deg); opacity: .6; }
  33%       { transform: translateY(-12px) rotate(-20deg); opacity: .8; }
  66%       { transform: translateY(-6px) rotate(-35deg); opacity: .65; }
  100%      { transform: translateY(0) rotate(-30deg); opacity: .6; }
}

/* Kept for the about section jar art (still uses these) */
@keyframes flicker {
  0%,100% { transform: scaleX(1)   scaleY(1)    rotate(-1deg); }
  20%     { transform: scaleX(.92) scaleY(1.06) rotate(1.2deg); }
  50%     { transform: scaleX(1.04)scaleY(.96)  rotate(.3deg); }
  75%     { transform: scaleX(.96) scaleY(1.04) rotate(-1.5deg); }
}
.flame__inner {
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 12px;
  background: radial-gradient(ellipse, #fff 0%, #fef9c3 60%, transparent 100%);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 1.7s ease-in-out infinite reverse;
}

/* ── TRUST BAR ──────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-2);
  border-inline-end: 1px solid var(--border);
  letter-spacing: .02em;
}
.trust-item:last-child { border-inline-end: none; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── FILTERS ────────────────────────────────────────────────────────── */
.filters-section {
  padding: var(--space-10) 0 var(--space-4);
}
.filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.filter-btn {
  height: 44px;
  padding: 0 var(--space-5);
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-2);
  background: var(--surface);
  color: var(--text-3);
  font-family: 'Assistant', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn--active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.filter-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── PRODUCTS ───────────────────────────────────────────────────────── */
.products {
  padding: var(--space-6) 0 var(--space-24);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: var(--space-6);
}

/* AI-image disclaimer under the products grid */
.products__disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: var(--space-8);
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-3);
  text-align: center;
}
.products__disclaimer svg { flex-shrink: 0; opacity: .8; }

/* Product card */
.product-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Image area */
.product-card__media {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.product-card__emoji-wrap {
  display: none;
}

/* Real product photo in card */
.product-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__photo { transform: scale(1.06); }

/* Real product photo in modal */
.modal-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card__art {
  width: 80%;
  max-width: 160px;
  height: 80%;
  max-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 20px rgba(80,50,10,.18));
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card__art {
  transform: scale(1.06) translateY(-4px);
}
.product-card__art svg {
  width: 100%;
  height: 100%;
}

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--text);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: var(--r-full);
}

/* Info */
.product-card__info {
  padding: var(--space-5) var(--space-6) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.product-card__name {
  font-family: 'Heebo', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.38;      /* fixed: was 1.25 — too tight for Hebrew */
  margin-bottom: var(--space-2);
}
/* Desktop only (not mobile): slightly larger product names */
@media (min-width: 641px) {
  .product-card__name { font-size: 1.32rem; }
}
.product-card__desc {
  font-size: .875rem;     /* bumped from .8rem — ensures readability at weight 400 */
  font-weight: 400;       /* bumped from 300 — 12.8px+300 too thin to read comfortably */
  color: var(--text-3);
  line-height: 1.6;
  /* clamp to 3 lines — keeps card heights uniform in grid */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;  /* footer uses margin-top:auto to stay at bottom */
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
}
/* Add + Share buttons grouped together */
.product-card__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
/* Share button — native Web Share API (any platform) */
.product-card__share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-3);
  border: 1.5px solid var(--border-2);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
.product-card__share:hover {
  background: var(--gold-glow);
  color: var(--gold);
  border-color: var(--gold-light);
  transform: scale(1.08);
}
.product-card__share:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.product-card__price {
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;       /* price — readable but not heavy */
  color: var(--text);
}
.product-card__add {
  width: 44px; height: 44px;    /* Skill: min touch target */
  border-radius: 50%;
  background: var(--text);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease),
              transform var(--t-base) var(--ease-spring);
  flex-shrink: 0;
}
.product-card__add:hover {
  background: var(--accent);
  transform: scale(1.12) rotate(90deg);
}
.product-card__add:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── ABOUT — olive green matching brand color ───────────────────────── */
.about {
  background: linear-gradient(155deg, #4A5C36 0%, #5C6B44 50%, #4E6040 100%);
  padding: var(--space-24) 0;
  overflow: hidden;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Art */
.about__visual { display: flex; justify-content: center; }
.about__art {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}
.art-ring--1 { inset: 0; }
.art-ring--2 { inset: 24px; border-color: rgba(255,255,255,.08); }
.art-ring--3 { inset: 48px; border-color: rgba(255,255,255,.05); }

.jar-stack {
  position: relative;
  width: 120px; height: 160px;
}
.jar {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.jar--back { right: 0; opacity: .6; }
.jar--front { left: 0; }

.jar__vessel {
  width: 80px; height: 100px;
  background: linear-gradient(to right,
    rgba(255,255,255,.15) 0%,
    rgba(255,255,255,.35) 40%,
    rgba(255,255,255,.12) 100%);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 6px 6px 12px 12px;
  box-shadow: inset -6px 0 16px rgba(92,107,68,.1),
              0 8px 28px rgba(92,107,68,.2);
  position: relative;
  overflow: hidden;
}
.jar__vessel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 4px; right: 4px;
  height: 55%;
  background: linear-gradient(to top, #fef3c7 0%, #fde68a 60%, transparent 100%);
  opacity: .7;
  border-radius: 0 0 10px 10px;
}
.jar__flame {
  width: 14px; height: 24px;
  position: relative;
  margin-bottom: -1px;
  z-index: 2;
  filter: drop-shadow(0 0 6px rgba(251,191,36,.5));
}
.jar__flame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 85%, #fff 0%, #fde68a 30%, #f59e0b 60%, transparent 100%);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 2s ease-in-out infinite;
  transform-origin: 50% 95%;
}

/* Text — olive green background, light text */
.about__text { color: #fff; }
.about__text .section-eyebrow { color: rgba(255,255,255,.75); letter-spacing: .2em; }
.about__text .section-title   { color: #fff; margin-bottom: var(--space-8); }

.about__story {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.about__story p {
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  font-weight: 400;
}

/* Highlighted callout — why we avoid paraffin */
.about__note {
  margin-top: var(--space-2);
  padding: var(--space-5) var(--space-6);
  background: rgba(255,255,255,.07);
  border-inline-start: 3px solid var(--gold-glow, #DDE5CC);
  border-radius: 12px;
}
.about__note strong {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-2);
}
.about__note p {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-weight: 400;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.value-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: var(--space-5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.value-card:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
}
.value-card__icon {
  color: rgba(255,255,255,.82);  /* soft white on olive background */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  margin-bottom: var(--space-1);
  flex-shrink: 0;
}
.value-card__icon svg { display: block; }
.value-card strong { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); }
.value-card p { font-size: .8rem; color: rgba(255,255,255,.8); line-height: 1.5; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--surface);   /* #F5F1E6 — lighter than page bg, creates separation */
}
.testimonials .section-header { text-align: center; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial__stars {
  color: var(--brass);   /* warm brass/amber — reviews should feel warm, not sage */
  font-size: .95rem;
  letter-spacing: .12em;
}
.testimonial blockquote {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}
.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after  { content: '\201D'; }
.testimonial footer cite {
  font-size: .78rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-3);
  letter-spacing: .06em;
}

/* ── CONTACT ────────────────────────────────────────────────────────── */
.contact { padding: var(--space-24) 0; }
.contact__card {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.contact__deco {
  background: linear-gradient(160deg, #5C6B44 0%, #4A5836 60%, #3E4C2C 100%);
  position: relative;
  overflow: hidden;
}
.contact__deco::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 20 Q120 60 100 90 Q80 60 100 20Z' fill='rgba(255,255,255,.07)'/%3E%3Cpath d='M60 80 Q90 110 70 140 Q50 110 60 80Z' fill='rgba(255,255,255,.05)' transform='rotate(20 70 110)'/%3E%3Cpath d='M130 60 Q160 95 140 125 Q115 95 130 60Z' fill='rgba(255,255,255,.06)' transform='rotate(-15 145 95)'/%3E%3C/svg%3E");
  background-size: cover;
}
.contact__deco::after {
  content: '🌿';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  opacity: .25;
  filter: grayscale(1) brightness(3);
}
.contact__body {
  padding: var(--space-12) var(--space-12);
}
.contact__body .section-title { margin-bottom: var(--space-2); }
.contact__sub {
  font-size: .875rem;
  color: var(--text-3);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.contact__form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
}
.field input,
.field textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  font-family: 'Assistant', sans-serif;
  font-size: .875rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  min-height: 44px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92,107,68,.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact__form .btn { align-self: flex-start; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #2A3420 0%, #222C1A 100%);
  color: rgba(255,255,255,.55);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding: var(--space-16) 0 var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand .logo__text { color: rgba(255,255,255,.85); }
.footer__brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-top: var(--space-3);
  font-weight: 300;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  display: inline-block;
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover { color: #fff; }
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-inline-start: auto;
}
.footer__social a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--gold-light); color: #fff; }
.footer__social a:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.footer__bottom { padding: var(--space-5) 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__bottom a { color: var(--gold-light); }
.footer__bottom a:hover { text-decoration: underline; }

/* ── CART SIDEBAR ───────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(12,10,9,.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;          /* RTL: slide in from the RIGHT side */
  width: min(420px, 96vw);
  height: 100%;
  background: var(--surface);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);   /* starts off-screen to the right */
  transition: transform var(--t-slow) cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 40px rgba(12,10,9,.12);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar__header {
  padding: var(--space-5) var(--space-6) var(--space-5) var(--space-5);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-sidebar__header h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  height: 200px;
  color: var(--text-3);
  font-size: .875rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--surface-2);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.cart-item__emoji { display: none; }

.cart-item__art {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.cart-item__art svg { width: 100%; height: 100%; }
.cart-item__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-weight: 400;       /* delicate — matches brand voice */
  font-size: .9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price { font-size: .85rem; color: var(--accent); font-weight: 500; margin-top: 2px; }
.cart-item__controls { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.cart-item__controls button {
  width: 44px; height: 44px;   /* WCAG touch target */
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  background: var(--surface);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  cursor: pointer;
  flex-shrink: 0;
}
.cart-item__controls button:hover { border-color: var(--accent); color: var(--accent); }
.cart-item__qty { font-size: .85rem; font-weight: 700; min-width: 20px; text-align: center; }

.cart-sidebar__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-4);
  font-size: .875rem;
  color: var(--text-2);
}
.cart-total strong {
  font-family: 'Heebo', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
}
.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: .73rem;
  color: var(--text-3);
  margin-top: var(--space-3);
}

/* ── PRODUCT MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,10,9,.6);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  z-index: 301;
  background: var(--surface);
  border-radius: var(--r-xl);
  width: min(720px, 96vw);
  max-height: 88svh;
  /* overflow on the inner, not the modal itself, so sticky works */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-out);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 10;
  background: rgba(245,241,230,.88);
  backdrop-filter: blur(8px);
}
.modal-close:hover { background: var(--stone-200); }

.product-modal__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow-y: auto;
  flex: 1;
}
/* Sticky media column: sticks within the scrollable inner */
.modal-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  cursor: zoom-in;
  min-height: 320px;
  min-width: 0;   /* prevent grid item expanding beyond track */
}
/* Full-fill photo */
.modal-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fill — no blank space on sides */
  object-position: center center;
  transition: transform .4s var(--ease);
}
.modal-media:hover .modal-photo { transform: scale(1.04); }

/* Zoom icon overlay */
.modal-zoom-hint {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border-radius: var(--r-full);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.modal-media:hover .modal-zoom-hint { opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(20,18,8,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: min(900px, 95vw);
  max-height: 92svh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  transform: scale(.92);
  transition: transform var(--t-base) var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* SVG art products: center within the media area */
.modal-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  max-width: 210px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(80,60,10,.18));
}
.modal-art svg { width: 100%; height: auto; }
.modal-info {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.modal-name:focus { outline: none; }
.modal-cat {
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.modal-name {
  font-family: 'Heebo', sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.modal-desc {
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

/* ── Fragrance profile (wax melt modal) ──────────────────────────────── */
.scent-profile {
  margin-bottom: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-2, #F5F1E6);
  border: 1px solid var(--stone-200, rgba(120,112,96,.18));
  border-radius: var(--r-lg, 14px);
}
.scent-profile__title {
  font-family: 'Heebo', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-2);
  margin-bottom: var(--space-3);
}
.scent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 5px;
}
.scent-row__label {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-2);
  flex-shrink: 0;
  min-width: 64px;
}
.scent-row__dots {
  display: inline-flex;
  gap: 6px;
}
.scent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--stone-200, rgba(120,112,96,.22));
  transition: background var(--t-fast, .15s) ease;
}
.scent-dot--on { background: var(--accent, #5C6B44); }

/* ── Gift-set scent chooser (dropdowns) ──────────────────────────────── */
.scent-choose {
  margin-bottom: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-2, #F5F1E6);
  border: 1px solid var(--stone-200, rgba(120,112,96,.18));
  border-radius: var(--r-lg, 14px);
}
.scent-choose__title {
  font-family: 'Heebo', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: var(--space-3);
}
.scent-choose__row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.scent-choose__row:last-child { margin-bottom: 0; }
.scent-choose__row label {
  flex-shrink: 0;
  min-width: 56px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
}
.scent-choose__select {
  flex: 1;
  min-width: 0;
  font-family: 'Assistant', sans-serif;
  font-size: .9rem;
  color: var(--text);
  padding: .55rem .75rem;
  border: 1px solid var(--stone-300, #C8C0A8);
  border-radius: var(--r-sm, 8px);
  background: #fff;
  cursor: pointer;
}
.scent-choose__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78,92,56,.15);
}

/* ── Wax spec table (how many melts + which wax) ─────────────────────── */
.wax-spec {
  margin-bottom: var(--space-5);
  border-top: 1px solid var(--stone-200, rgba(120,112,96,.18));
}
.wax-spec__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 9px 2px;
  border-bottom: 1px solid var(--stone-200, rgba(120,112,96,.14));
}
.wax-spec__row dt {
  font-size: .85rem;
  color: var(--text-3);
  margin: 0;
}
.wax-spec__row dd {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  text-align: start;
}

.modal-price {
  font-family: 'Heebo', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.modal-scents { margin-bottom: var(--space-5); }
.modal-scents label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: var(--space-3);
  letter-spacing: .04em;
}
.scent-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.scent-chip {
  padding: .3rem .8rem .3rem .4rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-2);
  background: var(--bg);
  font-size: .78rem;
  font-family: 'Assistant', sans-serif;
  cursor: pointer;
  color: var(--text-2);
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
/* Scent chip with thumbnail image */
.scent-chip__thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.08);
}
.scent-chip.selected {
  border-color: var(--accent);
  background: var(--gold-glow);
  color: var(--stone-800);
  box-shadow: 0 2px 8px rgba(92,107,68,.2);
}
.scent-chip.selected .scent-chip__thumb {
  border-color: var(--accent);
}
.scent-chip:hover:not(.selected) { border-color: var(--stone-400); background: var(--surface); }
.scent-chip:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.modal-qty {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.modal-qty label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .04em;
}
.modal-qty input {
  width: 72px;
  padding: .6rem .75rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  font-family: 'Assistant', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  background: var(--bg);
  outline: none;
  min-height: 44px;
}
.modal-qty input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(78,92,56,.15); }

/* AI-image disclaimer (product modal) */
.modal-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: var(--space-4);
  font-size: .76rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-3);
}
.modal-disclaimer svg { flex-shrink: 0; margin-top: 2px; color: var(--text-3); opacity: .8; }

/* ── TOAST ──────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--stone-900);
  color: rgba(255,255,255,.9);
  padding: .75rem var(--space-6);
  border-radius: var(--r-full);
  font-size: .85rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-out);
  z-index: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── HERO ENTRANCE (CSS-only, no JS needed — above-the-fold) ────────── */
@keyframes hero-up {
  from { transform: translateY(18px); opacity: .5; }
  to   { transform: translateY(0);    opacity: 1; }
}
/* Hero content is always visible; animation is purely decorative */
.hero__anim-1 { animation: hero-up .6s var(--ease-out) .05s both; }
.hero__anim-2 { animation: hero-up .65s var(--ease-out) .15s both; }
.hero__anim-3 { animation: hero-up .65s var(--ease-out) .25s both; }
.hero__anim-4 { animation: hero-up .65s var(--ease-out) .35s both; }

/* ── SCROLL REVEAL (Storytelling-Driven, Skill: 250ms) ──────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up:nth-child(2) { transition-delay: 80ms; }
.reveal-up:nth-child(3) { transition-delay: 160ms; }
.reveal-up:nth-child(4) { transition-delay: 240ms; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: flex; }

  /* RTL header fix: when nav is hidden its margin-inline-start:auto disappears.
     Add it to cart-btn so the group [cart|menu] hugs the LEFT (logical end) edge
     while the logo stays at the RIGHT (logical start) edge. */
  .cart-btn { margin-inline-start: auto; }

  /* Hero — hide product scene, center content */
  .hero__bg { display: none; }
  .hero__content {
    max-width: 100%;
    text-align: center;
    padding-block: 3.5rem 4rem;
    padding-inline: var(--space-4);
  }
  .hero__actions { justify-content: center; }
  .hero__desc br { display: none; }
  .hero__scroll-hint { display: none; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .about__visual { display: none; }
  .about__values { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact__card { grid-template-columns: 1fr; }
  .contact__deco { display: none; }
  .contact__body { padding: var(--space-8); }

  /* Modal — bottom sheet on tablet/mobile */
  .product-modal {
    top: auto; left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 95svh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    transform: translateY(20px);
    /* Allow inner scrolling on mobile */
    overflow: hidden;
  }
  .product-modal.open { transform: translateY(0); }
  .product-modal__inner {
    grid-template-columns: 1fr;
    /* Allow inner content to scroll on mobile */
    overflow-y: auto;
    overflow-x: hidden;        /* never scroll sideways */
    max-height: 95svh;
    scrollbar-width: none;
    min-width: 0;              /* let grid item shrink to container */
  }
  .product-modal__inner::-webkit-scrollbar { display: none; }
  .modal-media {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;              /* proper fix for grid-column expansion bug */
    height: 80vw;
    min-height: unset;
    max-height: unset;
    position: relative;
  }
  .modal-photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* fill width — no blank sides */
    object-position: center center;
  }
  .modal-info {
    border-inline-start: none;
    border-top: 1px solid var(--border);
    padding: var(--space-6) var(--space-5) var(--space-8);
  }
  /* Scent chips — scrollable on mobile if many */
  .scent-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-2);
    scrollbar-width: none;
  }
  .scent-chips::-webkit-scrollbar { display: none; }
  .scent-chip { flex-shrink: 0; }
  .modal-close { top: var(--space-3); left: var(--space-3); }

  /* Cart */
  .cart-sidebar { width: 100%; border-radius: 0; }

  /* Footer */
  .footer__inner { gap: var(--space-8); }
  .footer__social { margin-inline-start: 0; }
}

@media (max-width: 640px) {
  /* Trust bar — scrollable */
  .trust-bar__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-inline: var(--space-4); }
  .trust-item { flex-shrink: 0; padding: var(--space-4) var(--space-5); }

  /* Hero */
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__desc { font-size: .95rem; }
  .hero__kicker { font-size: .65rem; }

  /* Filters — scrollable row */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--space-2);
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* Products — single column on small phones */
  .products__grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }

  /* About values — single col */
  .about__values { grid-template-columns: 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__inner { flex-direction: column; gap: var(--space-6); }
  .footer__links { flex-direction: row; gap: var(--space-5); flex-wrap: wrap; justify-content: center; }
  /* Larger tap targets for footer links on touch screens */
  .footer__links a { padding-block: 9px; }

  /* Drag handle — absolute so it doesn't push image down */
  .product-modal::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 4px;
    background: rgba(255,255,255,.55);
    border-radius: 2px;
    z-index: 10;
    pointer-events: none;
  }
}

/* ── CHECKOUT MODAL ─────────────────────────────────────────────────── */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(12,10,9,.6);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  backdrop-filter: blur(4px);
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  position: fixed;
  z-index: 401;
  background: var(--bg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  /* Desktop: centered */
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(560px, 96vw);
  max-height: 90svh;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-out);
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.checkout-modal__inner {
  overflow-y: auto;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  /* Hide scrollbar visually — keep scroll functional */
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE/Edge */
}
.checkout-modal__inner::-webkit-scrollbar { display: none; } /* Chrome/Safari/iOS */

.checkout-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.checkout-modal__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
}
.checkout-modal__close {
  flex-shrink: 0;
}

/* Cart summary inside modal */
.checkout-modal__summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .875rem;
  color: var(--text-2);
  gap: var(--space-3);
}
.checkout-summary__item-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.checkout-summary__item-qty {
  color: var(--text-3);
  font-size: .8rem;
  flex-shrink: 0;
}
.checkout-summary__item-price {
  font-weight: 500;
  flex-shrink: 0;
}
.checkout-summary__divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-1) 0;
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .875rem;
  color: var(--text-2);
}
.checkout-summary__total-amount {
  font-family: 'Heebo', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
}

/* Shipping row */
.checkout-summary__shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  color: var(--text-2);
  padding: var(--space-2) 0;
}
.checkout-summary__shipping--free {
  color: var(--gold);
  font-weight: 500;
}
.co-free-badge {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .15rem .6rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(92,107,68,.25);
}
.co-free-hint {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: var(--space-2) var(--space-3);
  margin: var(--space-1) 0;
}

/* Coupon section */
.co-coupon-wrap {
  padding: var(--space-4) 0 var(--space-2);
  border-top: 1px solid var(--border);
}
.co-coupon-label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}
.co-coupon-input-group {
  display: flex;
  gap: var(--space-2);
}
.co-coupon-input-group input {
  flex: 1;
  padding: .65rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  font-family: 'Assistant', sans-serif;
  font-size: .9rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  min-height: 44px;
  transition: border-color var(--t-fast) var(--ease);
}
.co-coupon-input-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92,107,68,.12);
}
.co-coupon-btn {
  min-height: 44px;
  padding: 0 var(--space-5);
  font-size: .85rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.co-coupon-success {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  color: var(--gold);
  font-size: .85rem;
  font-weight: 500;
}
.co-coupon-success svg { flex-shrink: 0; }
.checkout-summary__discount {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--gold);
  font-weight: 500;
  padding: var(--space-1) 0;
}

/* Checkout form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);   /* slightly more breathing room between rows */
}
.checkout-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
/* דירה + קומה + עיר — שלושה שדות בשורה אחת */
.checkout-form__grid3 {
  display: grid;
  /* two narrow columns (apartment / floor) + a wider city column */
  grid-template-columns: minmax(0, 120px) minmax(0, 120px) 1fr;
  gap: var(--space-4);
}
/* co-row נשאר לתאימות אחורית */
.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.field__req {
  color: var(--accent);
  margin-inline-start: 2px;
}
.field__error {
  font-size: .75rem;
  color: #b91c1c;
  min-height: 1em;
  display: block;
  margin-top: calc(-1 * var(--space-1));
}
.field--invalid input,
.field--invalid textarea {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185,28,28,.12);
}
.checkout-form__global-error {
  font-size: .82rem;
  color: #b91c1c;
  text-align: center;
  min-height: 1.2em;
  display: block;
}
.checkout-form__secure {
  margin-top: var(--space-2);
}

/* Checkout submit loading state */
#checkoutSubmitBtn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Mobile: bottom sheet */
@media (max-width: 640px) {
  .checkout-modal {
    top: auto; left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 96svh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    transform: translateY(20px);
  }
  .checkout-modal.open { transform: translateY(0); }
  .checkout-modal::before {
    content: '';
    display: block;
    width: 36px; height: 4px;
    background: var(--border-2);
    border-radius: 2px;
    margin: var(--space-3) auto 0;
    flex-shrink: 0;
  }
  /* Fix 1: all grids collapse to 1 col on mobile */
  .checkout-form__grid,
  .checkout-form__grid3 { grid-template-columns: 1fr; }

  /* Fix 2: iOS zoom prevention — inputs must be ≥16px font-size
     (iOS Safari auto-zooms when focused input < 16px) */
  .field input,
  .field textarea,
  .co-coupon-input-group input {
    font-size: 16px !important;
  }
}

/* ── HOW TO USE ─────────────────────────────────────────────────────── */
.how-to-use { padding: var(--space-24) 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-6) / 2 - 1px);
  top: 50%;
  width: var(--space-6);
  height: 1px;
  background: var(--border-2);
}
.step__num {
  font-family: 'Heebo', sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  color: var(--gold);   /* sage — airy but clearly visible */
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step__icon {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.step__title {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.step__desc { font-size: .85rem; color: var(--text-3); line-height: 1.6; font-weight: 300; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── GALLERY ─────────────────────────────────────────────────────────── */
.gallery { padding: var(--space-24) 0; background: linear-gradient(160deg, #4A5C36 0%, #5C6B44 50%, #4E6040 100%); }
.gallery .section-header .section-eyebrow { color: rgba(255,255,255,.65); }
.gallery .section-title { color: rgba(255,255,255,.92); }

.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
  max-height: 563px;
}
/* 4-photo variant: tall left + 2 right stacked + wide bottom spanning right 2 cols */
.gallery__grid--4 {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  max-height: 603px;
}
.gallery__grid--4 .gallery__item--wide {
  grid-column: 2 / 4;   /* spans cols 2 & 3 */
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--stone-800);
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease);
  display: block;
}
.gallery__item:hover img { transform: scale(1.06); }

/* Gradient overlay + label */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  letter-spacing: .06em;
}

/* Placeholder style (shows when image doesn't load) */
.gallery__item::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-family: 'Heebo', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .1em;
  z-index: 0;
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    max-height: none;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery__item--wide { grid-column: span 1; }
}

/* ── SHARE POPOVER ──────────────────────────────────────────────────── */
.share-popover {
  position: absolute;
  z-index: 400;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  min-width: 210px;
  animation: share-pop .18s var(--ease-spring) both;
}
@keyframes share-pop {
  from { opacity: 0; transform: scale(.9) translateY(6px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.share-popover__title {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-3);
  text-align: center;
}
.share-popover__options {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
}
.share-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-2);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-2);
  font-family: 'Assistant', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  min-width: 50px;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.share-opt:hover {
  background: var(--gold-glow);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.share-opt:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;              /* left in RTL = logical end */
  z-index: 150;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-full);
  padding: .75rem 1.25rem .75rem 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.12);
  font-family: 'Assistant', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  animation: whatsapp-bounce 3s ease-in-out 2s infinite;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.15);
  animation: none;
}
.whatsapp-float__label { line-height: 1; }

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@media (max-width: 640px) {
  /* On mobile: show icon only */
  .whatsapp-float { padding: .875rem; border-radius: 50%; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float svg { width: 30px; height: 30px; }
  /* Lift the toast above the corner floating buttons so they don't collide */
  .toast { bottom: 6rem; }
  /* Let the hero subtitle flow naturally on small screens (no forced break) */
  .br-desktop { display: none; }
}

/* ── POLICY PAGES ────────────────────────────────────────────────────── */
.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem var(--space-6) var(--space-24);
}
.policy-page h1 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.policy-page .policy-date {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: var(--space-12);
}
.policy-page h2 {
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
}
.policy-page p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.policy-page ul {
  padding-inline-start: var(--space-6);
  margin-bottom: var(--space-4);
}
.policy-page li {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}
.policy-page a { color: var(--gold); text-decoration: underline; }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: var(--space-8);
  transition: opacity var(--t-fast);
}
.policy-back:hover { opacity: .7; }

/* ── OUT OF STOCK ───────────────────────────────────────────────────── */
.product-card--oos { opacity: .65; cursor: default; }
.product-card--oos:hover { transform: none; box-shadow: var(--shadow-sm); }
.product-card__badge--oos {
  background: var(--stone-400);
  color: #fff;
}
.product-card__add:disabled {
  background: var(--stone-300);
  color: var(--stone-500);
  cursor: not-allowed;
  transform: none !important;
}

/* ── HERO ROTATING SLIDES ───────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide--active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.95) saturate(1.02); /* barely dimmed — keep photo vivid */
}
.hero-slides__overlay {
  position: absolute;
  inset: 0;
  /* RTL: text is on the RIGHT — overlay fades left to show photo */
  background: linear-gradient(to left,
    rgba(237,232,216,.88) 0%,    /* right — text readable */
    rgba(237,232,216,.78) 30%,   /* title area */
    rgba(237,232,216,.45) 55%,   /* transition */
    rgba(237,232,216,.10) 80%,   /* photo shows through */
    rgba(237,232,216,.0)  100%   /* left — full photo */
  );
  z-index: 1;
}
/* Hero content must be above overlay */
.hero__content { z-index: 2; position: relative; }
.hero__scroll-hint { z-index: 2; }
.hero__wave { z-index: 2; }

@media (max-width: 900px) {
  .hero__bg { display: block; }
  .hero-slides__overlay {
    /* Mobile: centre-focused overlay — text is centred */
    background: linear-gradient(
      to bottom,
      rgba(237,232,216,.75) 0%,
      rgba(237,232,216,.92) 45%,
      rgba(237,232,216,.95) 70%,
      rgba(237,232,216,.85) 100%
    );
  }
}

/* ── WELCOME POPUP ──────────────────────────────────────────────────── */
.welcome-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,8,.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.welcome-overlay.open { opacity: 1; pointer-events: all; }

.welcome-popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  z-index: 501;
  width: min(420px, 92vw);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: var(--space-10) var(--space-8) var(--space-8);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease-spring);
}
.welcome-popup.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.welcome-popup[hidden] { display: none; }

.welcome-close {
  position: absolute;
  top: var(--space-4); left: var(--space-4);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: none;
  color: var(--text-2);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease);
}
.welcome-close:hover { background: var(--stone-300); }
.welcome-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.welcome-popup__deco {
  color: var(--gold);
  display: flex; justify-content: center;
  margin-bottom: var(--space-4);
}
.welcome-popup__eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.welcome-popup__title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.welcome-popup__sub {
  font-size: .95rem; font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
/* Coupon code box — dashed ticket style */
.welcome-popup__code {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  background: var(--gold-glow);
  border: 2px dashed var(--gold);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.welcome-popup__code:hover { background: #D2DEBE; }
.welcome-popup__code:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.welcome-popup__code-text {
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem; font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold-mid);
}
.welcome-popup__code-copy {
  display: flex; align-items: center; gap: var(--space-1);
  font-size: .78rem; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* ── ACCESSIBILITY WIDGET ───────────────────────────────────────────── */
.a11y-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;      /* always on top */
  direction: rtl;
  /* Escape body-level CSS filters (contrast/grayscale) via isolation */
  isolation: isolate;
  /* Force visibility — even when body has filter applied */
  filter: none !important;
}

/* Toggle button */
.a11y-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(92,107,68,.35);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.a11y-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(92,107,68,.45); }
.a11y-toggle:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Panel */
.a11y-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: a11y-slide-up .2s var(--ease-out) both;
}
@keyframes a11y-slide-up {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}
.a11y-panel[hidden] { display: none; }

.a11y-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--gold);
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: .9rem;
  font-weight: 400;
}
.a11y-panel__close { color: rgba(255,255,255,.8); }
.a11y-panel__close:hover { background: rgba(255,255,255,.15); color: #fff; }

.a11y-panel__body { padding: var(--space-4) var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.a11y-panel__footer { padding: var(--space-3) var(--space-5); border-top: 1px solid var(--border); text-align: center; }
.a11y-panel__footer a { font-size: .75rem; color: var(--accent); text-decoration: underline; }

/* Section */
.a11y-section { display: flex; flex-direction: column; gap: var(--space-2); }
.a11y-section__label { font-size: .75rem; font-weight: 600; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; }

/* Text size buttons */
.a11y-text-btns { display: flex; gap: var(--space-2); }
.a11y-btn {
  flex: 1; height: 38px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-2);
  background: var(--bg);
  font-family: 'Heebo', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.a11y-btn:hover { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); }
.a11y-btn--reset { font-size: .75rem; }

/* Toggle row */
.a11y-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-2) 0;
  cursor: pointer;
  font-size: .875rem; font-weight: 300; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  gap: var(--space-3);
}
.a11y-toggle-row:last-child { border-bottom: none; }
.a11y-check { display: none; }
.a11y-switch {
  flex-shrink: 0;
  width: 40px; height: 22px;
  border-radius: var(--r-full);
  background: var(--stone-300);
  position: relative;
  transition: background var(--t-fast) var(--ease);
}
.a11y-switch::after {
  content: '';
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform var(--t-fast) var(--ease);
}
.a11y-check:checked + .a11y-switch { background: var(--gold); }
.a11y-check:checked + .a11y-switch::after { transform: translateX(-18px); }

/* Reset button */
.a11y-reset-all {
  width: 100%; height: 36px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-2);
  background: transparent;
  font-family: 'Assistant', sans-serif;
  font-size: .8rem;
  color: var(--text-3);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.a11y-reset-all:hover { background: var(--surface-2); border-color: var(--stone-400); }

/* ── Applied accessibility classes ──────────────────────────────────── */
/* Filters are applied to every direct child of <body> EXCEPT the
   accessibility widget — so the widget is never dimmed/greyed and
   stays fully visible & usable to toggle the effect back off.
   Each top-level element gets its own filter context (independent),
   which is fine for contrast/grayscale. */

/* High contrast */
body.a11y-high-contrast > *:not(.a11y-widget) {
  filter: contrast(1.5);
}
/* Grayscale */
body.a11y-grayscale > *:not(.a11y-widget) {
  filter: grayscale(100%);
}
/* Both at once — combine filters */
body.a11y-high-contrast.a11y-grayscale > *:not(.a11y-widget) {
  filter: contrast(1.5) grayscale(100%);
}

/* Dyslexia font — Lexend is loaded via the <link> in index.html <head> */
body.a11y-dyslexia,
body.a11y-dyslexia * {
  font-family: 'Lexend', sans-serif !important;
  letter-spacing: .05em !important;
  word-spacing: .1em !important;
  line-height: 1.9 !important;
}
/* Keep widget controls on the brand font for clarity */
body.a11y-dyslexia .a11y-widget,
body.a11y-dyslexia .a11y-widget * {
  font-family: 'Assistant', sans-serif !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  line-height: 1.4 !important;
}

/* Stop animations */
body.a11y-no-motion *,
body.a11y-no-motion *::before,
body.a11y-no-motion *::after {
  animation-duration: .01ms !important;
  transition-duration: .01ms !important;
}

@media (max-width: 640px) {
  .a11y-widget { right: 1rem; bottom: 1rem; }
  .a11y-panel { right: 0; width: min(260px, 90vw); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-up,
  .hero__anim-1,
  .hero__anim-2,
  .hero__anim-3,
  .hero__anim-4 { opacity: 1; transform: none; animation: none; }
}

/* =====================================================================
   NEW FEATURES — search, mood filters, scent finder, cart extras,
   gift option, newsletter, quiz
   ===================================================================== */

/* Keyboard focus ring for all new interactive elements (matches legacy controls) */
.mood-btn:focus-visible,
.scent-finder-cta:focus-visible,
.quiz-option:focus-visible,
.quiz-retry:focus-visible,
.cart-crosssell__add:focus-visible,
.faq__item summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Accessible visually-hidden helper */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Product search ──────────────────────────────────────────────────── */
.product-search {
  position: relative;
  max-width: 420px;
  margin: 0 auto var(--space-5);
}
.product-search__icon {
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.product-search__input {
  width: 100%;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  color: var(--text);
  padding-block: .7rem;
  padding-inline-start: 2.6rem;  /* clearance for the icon (logical = RTL-safe) */
  padding-inline-end: 1rem;
  border: 1px solid var(--stone-300);
  border-radius: var(--r-full);
  background: #fff;
}
.product-search__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78,92,56,.15);
}

/* ── Mood filters ────────────────────────────────────────────────────── */
.filters--mood {
  margin-top: var(--space-4);
  align-items: center;
  gap: var(--space-2);
}
.filters__label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-3);
  margin-inline-end: var(--space-2);
}
.mood-btn {
  font-family: 'Assistant', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  min-height: 44px;            /* WCAG touch target */
  padding: .35rem 1rem;
  border: 1.5px solid var(--stone-300);
  border-radius: var(--r-full);
  background: var(--surface);  /* matches .filter-btn */
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.mood-btn:hover { border-color: var(--accent); color: var(--accent); }
.mood-btn--active {
  background: var(--accent);   /* solid — AA contrast, matches .filter-btn--active */
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

/* ── Scent finder CTA ────────────────────────────────────────────────── */
.scent-finder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-5) auto 0;
  font-family: 'Assistant', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1.5px dashed var(--accent);
  border-radius: var(--r-full);
  min-height: 44px;            /* WCAG touch target */
  padding: .6rem 1.4rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.scent-finder-cta:hover {
  background: var(--accent);   /* solid hover — clear contrast */
  border-style: solid;
  color: #fff;
}
.filters-section { display: flex; flex-direction: column; align-items: center; }

/* ── Product grid empty state ────────────────────────────────────────── */
.products__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-3);
  padding: var(--space-12) var(--space-4);
  font-size: 1rem;
}

/* ── Cart: free-shipping progress ────────────────────────────────────── */
.cart-ship {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.cart-ship__msg {
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: 8px;
  text-align: center;
}
.cart-ship__msg strong { color: var(--accent); font-weight: 700; }
.cart-ship__track {
  height: 7px;
  border-radius: var(--r-full);
  background: var(--stone-200);
  overflow: hidden;
}
.cart-ship__fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--gold-glow), var(--accent));
  transition: width .4s var(--ease-out);
}
.cart-ship--done .cart-ship__fill { background: var(--accent); }

/* ── Cart: cross-sell ────────────────────────────────────────────────── */
.cart-crosssell {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;              /* never squashed by the flexing items list */
  margin: var(--space-4);
  padding: var(--space-3);
  border: 1px dashed var(--stone-300);
  border-radius: var(--r-md);
  background: var(--surface);
}
.cart-crosssell__img {
  width: 46px; height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-crosssell__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cart-crosssell__label { font-size: .7rem; font-weight: 600; color: var(--accent); letter-spacing: .03em; }
.cart-crosssell__name { font-size: .85rem; color: var(--text); font-weight: 500; }
.cart-crosssell__add {
  flex-shrink: 0;
  font-family: 'Assistant', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--r-full);
  min-height: 44px;            /* WCAG touch target */
  padding: .45rem 1rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.cart-crosssell__add:hover { background: var(--gold-mid); }

/* ── Modal action buttons (add + buy now) ────────────────────────────── */
.modal-actions { display: flex; flex-direction: column; gap: var(--space-2); }

/* ── Gift option (checkout) ──────────────────────────────────────────── */
.co-gift {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
}
.co-gift__toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.co-gift__toggle input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.co-gift__fields { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }

/* ── Newsletter ──────────────────────────────────────────────────────── */
.newsletter {
  background: var(--gold-glow);
  padding: var(--space-24) var(--space-6);  /* same vertical rhythm as legacy sections */
}
.newsletter__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__text h2 {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.newsletter__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}
.newsletter__form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  padding: .8rem 1.1rem;
  border: 1px solid var(--stone-300);
  border-radius: var(--r-full);
  background: #fff;
}
.newsletter__form input[type="email"]:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(78,92,56,.15);
}
.newsletter__form .btn { flex-shrink: 0; white-space: nowrap; }
.newsletter__note { margin-top: var(--space-4); font-size: .9rem; color: var(--text-2); min-height: 1.2em; }

/* ── Scent finder quiz modal ─────────────────────────────────────────── */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(42,40,32,.55);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.quiz-overlay.open { opacity: 1; pointer-events: all; }
.quiz-modal {
  position: fixed;
  z-index: 601;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: min(520px, calc(100vw - 2rem));
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-10) var(--space-8) var(--space-8);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease-out);
}
.quiz-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
/* Close on the LEFT corner — same as every other modal on the site */
.quiz-modal .modal-close { position: absolute; top: var(--space-4); left: var(--space-4); }
.quiz-progress { display: flex; gap: 7px; justify-content: center; margin-bottom: var(--space-5); }
.quiz-dot { width: 28px; height: 5px; border-radius: var(--r-full); background: var(--stone-200); }
.quiz-dot--on { background: var(--accent); }
.quiz-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--space-3);
}
.quiz-q { text-align: center; font-size: .8rem; color: var(--text-3); margin-bottom: var(--space-2); }
.quiz-question {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.quiz-options { display: flex; flex-direction: column; gap: var(--space-3); }
.quiz-option {
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: start;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--stone-300);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.quiz-option:hover {
  border-color: var(--accent);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.quiz-result { text-align: center; }
.quiz-result__eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-2);
}
.quiz-result__img {
  width: 180px; height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin: var(--space-4) auto;
}
.quiz-result__desc {
  font-size: .92rem; font-weight: 300; color: var(--text-2);
  line-height: 1.7; margin-bottom: var(--space-6);
}
.quiz-result__actions { display: flex; flex-direction: column; gap: var(--space-2); }
.quiz-retry {
  background: none; border: none;
  font-family: 'Assistant', sans-serif;
  font-size: .85rem; color: var(--text-3);
  text-decoration: underline; cursor: pointer;
  padding: var(--space-2);
}
.quiz-retry:hover { color: var(--text); }

@media (max-width: 640px) {
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .filters--mood { flex-wrap: wrap; justify-content: center; }
}

/* ── FAQ (accordion) ─────────────────────────────────────────────────── */
.faq { padding-block: var(--space-24); }  /* same vertical rhythm as legacy sections */
.faq .section-header { margin-bottom: var(--space-10); }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.faq__item[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(42,40,32,.06);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: 'Heebo', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
/* Plus / minus chevron */
.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--t-fast) var(--ease);
  margin-top: -4px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq__item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
}
.faq__answer p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}
.faq__answer a { color: var(--accent); font-weight: 500; text-decoration: underline; }
/* Subtle open animation */
.faq__item[open] .faq__answer { animation: faq-reveal .25s var(--ease-out); }
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq__item[open] .faq__answer { animation: none; }
}
