/** Shopify CDN: Minification failed

Line 2416:20 Expected ":"

**/
/* ============================================================
   EVAL HAIR — Design System v2
   Fonts: Cormorant Garamond + DM Sans
   ============================================================ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ink:      #0A0807;
  --ink-2:    #1A1815;
  --ink-3:    #2C2926;
  --ink-4:    #44403B;
  --g1:       #6B6560;
  --g2:       #9C9690;
  --g3:       #C8C3BC;
  --g4:       #E0DBD4;
  --g5:       #EDEBE5;
  --paper:    #FAFAF7;
  --paper-2:  #F3F0EA;
  --gold:     #9A7A3A;
  --gold-lt:  #B8943F;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-h: 40px;
  --ab-h:     36px;
  --hh:       84px;
  --chrome-h: calc(var(--topbar-h) + var(--ab-h) + var(--hh));
  --px:       clamp(20px, 5vw, 80px);

  /* Paper (warm-tinted whites) — legacy aliases */
  --paper-old: #FFFFFF;
  --paper-warm:    #FAFAF7;   /* main bg */
  --paper-2:       #F5F4F0;   /* section bg */
  --paper-3:       #EFEDE7;   /* hero accent */
  --bone:          #E8E5DD;   /* timeline section */

  /* Edges */
  --edge:          #E5E3DD;
  --edge-soft:     #F0EEE8;
  --edge-strong:   #2A2A2A;

  /* Functional accents (used sparingly) */
  --sale:          #C8341F;   /* sale red — only on discount badges */
  --star:          #D6A645;   /* warm gold for ratings */
  --success:       #2C5F4F;   /* deep green for stock/shipping ticks */

  /* Category accent backgrounds (soft pastel — only used on category tiles) */
  --tile-1:        #DCD4E8;
  --tile-2:        #F4DBD6;
  --tile-3:        #EBDEC8;
  --tile-4:        #C7DCD0;
  --tile-5:        #D9DDC5;
  --tile-6:        #CDD9E1;

  /* Promo banner soft warm tones */
  --promo-1:       #F4DBD6;   /* warm rose */
  --promo-2:       #EBDEC8;   /* warm sand */

  /* Typography */
  --serif:         'Fraunces', 'Times New Roman', serif;
  --sans:          'DM Sans', system-ui, -apple-system, sans-serif;
  --mono:          'JetBrains Mono', ui-monospace, monospace;

  /* Type scale (fluid editorial) */
  --t-display:     clamp(2.5rem, 5vw, 4.5rem);
  --t-h1:          clamp(2rem, 3.6vw, 3rem);
  --t-h2:          clamp(1.5rem, 2.6vw, 2.125rem);
  --t-h3:          clamp(1.25rem, 1.8vw, 1.5rem);
  --t-body-lg:     1.0625rem;
  --t-body:        0.9375rem;
  --t-sm:          0.8125rem;
  --t-xs:          0.6875rem;

  /* Geometry */
  --r-sm:          2px;
  --r:             4px;
  --r-lg:          10px;
  --r-xl:          14px;
  --r-pill:        9999px;

  /* Layout */
  --topbar-h:      40px;
  --header-h:      84px;
  --navbar-h:      52px;
  --max-w:         1380px;
  --pad-x:         clamp(16px, 4vw, 56px);

  /* Motion */
  --t-fast:        140ms;
  --t-med:         260ms;
  --t-slow:        500ms;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);     /* quart-out */
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

  /* Shadows (used very rarely) */
  --shadow-fine:   0 1px 0 0 var(--edge);
  --shadow-soft:   0 12px 32px -16px rgba(10,10,10,0.12);
  --shadow-pop:    0 24px 56px -24px rgba(10,10,10,0.18);
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; appearance: none; -webkit-appearance: none; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: var(--r); }
::selection { background: var(--ink); color: var(--paper); }

/* ─── PRIMITIVES ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--tight { padding: clamp(28px, 4vw, 48px) 0; }
.section--white { background: var(--paper); }
.section--warm { background: var(--paper-warm); }
.section--bone { background: var(--bone); }

/* Typography */
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 400; line-height: 1.08; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }
p { line-height: 1.6; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Section header */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(24px, 3vw, 40px); flex-wrap: wrap;
}
.section-head__title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-head__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  padding-bottom: 2px;
  transition: opacity var(--t-fast);
}
.section-head__link:hover { opacity: 0.6; }

/* Tabs (filter pills) */
.tabs { display: flex; gap: 28px; flex-wrap: wrap; }
.tab {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-3);
  padding: 4px 0;
  position: relative;
  cursor: pointer;
  background: none; border: none;
  transition: color var(--t-fast);
}
.tab::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--ink); transform: scaleX(0);
  transform-origin: left; transition: transform var(--t-med) var(--ease-out);
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); }
.tab.active::after { transform: scaleX(1); }

/* Badges */
.badge { font-family: var(--sans); font-size: 0.625rem; font-weight: 700; padding: 4px 8px; line-height: 1; letter-spacing: 0.04em; }
.badge--sale { background: var(--sale); color: var(--paper); }
.badge--hot { background: var(--ink); color: var(--paper); }
.badge--new { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }

/* Stars */
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 12px; height: 12px; fill: var(--star); }
.stars--empty svg { fill: var(--edge); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; min-height: 48px;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 500;
  letter-spacing: 0.02em; line-height: 1;
  border: 1px solid transparent; border-radius: 0;
  cursor: pointer; transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--edge); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 18px; min-height: 38px; font-size: 0.75rem; }
.btn-lg { padding: 18px 36px; min-height: 56px; font-size: var(--t-body); }
.btn-block { width: 100%; }

.btn-icon {
  width: 44px; height: 44px; padding: 0; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink); transition: background var(--t-fast);
  position: relative;
}
.btn-icon:hover { background: var(--paper-2); }
.btn-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.6; fill: none; }

/* Quick add pill (rounded) */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--ink); background: var(--paper); color: var(--ink);
  font-size: 0.8125rem; font-weight: 500;
  transition: all var(--t-fast);
}
.btn-pill:hover { background: var(--ink); color: var(--paper); }

/* ─── TOPBAR (Cosmika style) ──────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--paper);
  height: var(--topbar-h);
  display: flex; align-items: center;
  font-size: 0.75rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 302;
}
.topbar__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x); width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar__links { display: flex; align-items: center; gap: 28px; }
.topbar__link {
  color: rgba(255,255,255,0.78);
  font-size: 0.75rem; font-weight: 400;
  transition: color var(--t-fast);
}
.topbar__link:hover { color: var(--paper); }
.topbar__contact { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.78); font-size: 0.75rem; text-decoration: none; }
.topbar__contact strong { color: var(--paper); font-weight: 500; margin-left: 6px; }
.topbar__contact svg { width: 13px; height: 13px; opacity: 0.6; flex-shrink: 0; }
.topbar__contact:hover strong { color: rgba(255,255,255,0.9); }

/* ─── ANNOUNCEMENT BAR (slim, subtle) ─────────────────────── */
.announcement-bar {
  background: var(--paper-2);
  color: var(--ink-2);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--edge-soft);
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 301;
  height: var(--ab-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar a { text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar .close-bar {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); background: none; border: none; cursor: pointer;
}
.announcement-bar .close-bar svg { width: 12px; height: 12px; }

/* ─── HEADER (Cosmika 3-col) ─────────────────────────────── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--edge);
  position: sticky; top: 0; z-index: 200;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr auto;
  align-items: center; gap: 32px;
}
.header-logo { display: flex; align-items: center; }
.header-logo a { display: inline-block; }
.header-logo img { height: 38px; width: auto; display: block; }
.header-logo__text {
  font-family: var(--serif); font-size: 1.625rem; font-weight: 400;
  letter-spacing: -0.02em; color: var(--ink);
}

/* Search bar pill with category dropdown */
.header-search { display: flex; max-width: 620px; margin: 0 auto; width: 100%; }
.header-search__form {
  display: flex; width: 100%; align-items: stretch;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--paper);
  height: 46px;
}
.header-search__cat {
  display: flex; align-items: center; gap: 6px;
  padding: 0 18px 0 22px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--ink); white-space: nowrap;
  background: transparent;
  border-right: 1px solid var(--edge);
  cursor: pointer; flex-shrink: 0;
}
.header-search__cat svg { width: 10px; height: 10px; stroke: var(--ink-3); stroke-width: 2; fill: none; }
.header-search__input {
  flex: 1; padding: 0 18px;
  font-size: 0.875rem; color: var(--ink);
  background: transparent;
}
.header-search__input::placeholder { color: var(--ink-4); }
.header-search__btn {
  width: 56px; flex-shrink: 0;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.header-search__btn:hover { background: var(--ink-soft); }
.header-search__btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-action {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); position: relative;
  transition: background var(--t-fast);
  background: none; border: none; cursor: pointer;
}
.header-action:hover { background: var(--paper-2); }
.header-action svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.header-action__count {
  position: absolute; top: 6px; right: 6px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-pill); font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--paper); font-family: var(--sans);
}

/* ─── NAV BAR ─────────────────────────────────────────────── */
.nav-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--edge-soft);
}
.nav-bar__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--navbar-h);
  display: flex; align-items: center; gap: 24px;
}
.nav-bar__all {
  display: flex; align-items: center; gap: 10px;
  padding-right: 24px; margin-right: 8px;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--ink); border-right: 1px solid var(--edge);
  height: 100%; background: none; border: none;
  border-right: 1px solid var(--edge);
}
.nav-bar__all svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.nav-bar__links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; overflow-x: auto; scrollbar-width: none;
}
.nav-bar__links::-webkit-scrollbar { display: none; }
.nav-bar__link {
  padding: 0 14px; height: var(--navbar-h);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 500; color: var(--ink-2);
  position: relative; white-space: nowrap; flex-shrink: 0;
  transition: color var(--t-fast);
}
.nav-bar__link:hover { color: var(--ink); }
.nav-bar__link.active { color: var(--ink); }
.nav-bar__link.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 0;
  height: 1.5px; background: var(--ink);
}

/* ─── HERO (Cosmika layout) ───────────────────────────────── */
.hero {
  background: var(--paper-warm);
  padding: clamp(16px, 2vw, 24px) 0;
}
.hero__grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items: stretch;
}
.hero__main {
  position: relative; overflow: hidden;
  background: var(--paper-3);
  min-height: clamp(360px, 42vw, 480px);
  display: flex; align-items: center;
}
.hero__main-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  height: 100%; width: 58%; object-fit: cover; object-position: center;
}
.hero__main-content {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vw, 64px);
  max-width: 480px;
}
.hero__main-eyebrow { margin-bottom: 18px; }
.hero__main-title {
  font-family: var(--serif);
  font-size: var(--t-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero__main-subtitle {
  font-size: var(--t-body);
  color: var(--ink-2); max-width: 380px;
  margin-bottom: 32px; line-height: 1.6;
}
.hero__sidebar { display: flex; flex-direction: column; gap: 16px; }
.hero__side {
  flex: 1; position: relative; overflow: hidden;
  background: var(--paper-3);
  min-height: 232px;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 24px 24px 0;
}
.hero__side:nth-child(1) { background: var(--paper-3); }
.hero__side:nth-child(2) { background: var(--bone); }
.hero__side-img {
  position: absolute; right: 12px; bottom: 12px;
  max-height: 75%; max-width: 60%; width: auto; object-fit: contain;
  z-index: 1;
}
.hero__side-content { position: relative; z-index: 2; max-width: 60%; }
.hero__side-title {
  font-family: var(--serif); font-size: 1.375rem; font-weight: 400;
  line-height: 1.1; color: var(--ink); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero__side-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: gap var(--t-fast);
}
.hero__side-cta:hover { gap: 10px; }

/* Top Offers chip on sidebar */
.hero__chip {
  position: absolute; top: 16px; right: 16px;
  background: var(--paper); color: var(--ink);
  padding: 5px 10px; font-size: 0.6875rem; font-weight: 600;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 5px;
  z-index: 3; border: 1px solid var(--edge);
}
.hero__chip svg { width: 9px; height: 9px; }

/* ─── FEATURES STRIP ──────────────────────────────────────── */
.features {
  background: var(--paper);
  border-top: 1px solid var(--edge-soft);
  border-bottom: 1px solid var(--edge-soft);
}
.features__grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 24px;
  border-right: 1px solid var(--edge-soft);
}
.feature:last-child { border-right: none; }
.feature__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.feature__icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.4; fill: none; }
.feature__title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 3px; }
.feature__desc { font-size: 0.75rem; color: var(--ink-3); line-height: 1.4; }

/* ─── PRODUCT CARD ────────────────────────────────────────── */
.products-grid { display: grid; gap: 20px; }
.products-grid--5 { grid-template-columns: repeat(5, 1fr); }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--paper);
  border: 1px solid var(--edge-soft);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--t-fast), transform var(--t-med) var(--ease-out);
}
.product-card:hover { border-color: var(--edge); }
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-warm);
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 18px; transition: transform var(--t-slow) var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
}
.product-card__wish {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); opacity: 0; transform: translateY(-4px);
  transition: all var(--t-med) var(--ease-out);
  z-index: 2; cursor: pointer;
}
.product-card:hover .product-card__wish { opacity: 1; transform: translateY(0); }
.product-card__wish svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.product-card__wish:hover { color: var(--sale); }

/* Countdown timer on card */
.product-card__timer {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--paper); border: 1px solid var(--edge);
  padding: 6px 8px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  font-family: var(--mono);
  z-index: 2;
}
.product-card__timer-cell {
  text-align: center; border-right: 1px solid var(--edge-soft);
  padding: 0 2px;
}
.product-card__timer-cell:last-child { border-right: none; }
.product-card__timer-num { font-size: 0.8125rem; font-weight: 700; color: var(--ink); line-height: 1.1; font-family: var(--mono); }
.product-card__timer-lbl { font-size: 0.5rem; color: var(--ink-4); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* Card body */
.product-card__body { padding: 14px 14px 18px; }
.product-card__title {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.product-card:hover .product-card__title { text-decoration: underline; text-underline-offset: 3px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-card__rating-count { font-size: 0.6875rem; color: var(--ink-4); }
.product-card__price { display: flex; align-items: baseline; gap: 8px; font-family: var(--sans); }
.product-card__price-current { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.product-card__price-was { font-size: 0.8125rem; color: var(--ink-4); text-decoration: line-through; font-weight: 400; }

/* ─── DUAL PROMO BANNERS ─────────────────────────────────── */
.promo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.promo-banner {
  position: relative; overflow: hidden;
  min-height: 220px;
  display: flex; align-items: center;
  padding: 36px 40px;
}
.promo-banner:nth-child(1) { background: var(--promo-1); }
.promo-banner:nth-child(2) { background: var(--promo-2); }
.promo-banner__content { position: relative; z-index: 2; max-width: 56%; }
.promo-banner__title {
  font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px;
}
.promo-banner__subtitle { font-size: 0.8125rem; color: var(--ink-2); margin-bottom: 16px; }
.promo-banner__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 2px;
  transition: gap var(--t-fast);
}
.promo-banner__cta:hover { gap: 10px; }
.promo-banner__img {
  position: absolute; right: 0; top: 0; bottom: 0;
  height: 100%; width: 55%; object-fit: contain; object-position: center right;
  padding: 16px;
}

/* ─── BEST DEALS (compact 3-col) ─────────────────────────── */
.deals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.deal {
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  align-items: center;
  border: 1px solid var(--edge-soft);
  background: var(--paper);
  padding: 14px;
  transition: border-color var(--t-fast);
}
.deal:hover { border-color: var(--edge); }
.deal__media { aspect-ratio: 1; background: var(--paper-warm); }
.deal__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.deal__body { display: flex; flex-direction: column; gap: 6px; }
.deal__title {
  font-size: 0.8125rem; font-weight: 500; color: var(--ink); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal__rating { display: flex; align-items: center; gap: 4px; }
.deal__price { display: flex; align-items: baseline; gap: 6px; }
.deal__price-current { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.deal__price-was { font-size: 0.75rem; color: var(--ink-4); text-decoration: line-through; }
.deal__timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--edge-soft); margin-top: 2px; }
.deal__timer-cell { text-align: center; padding: 3px 0; border-right: 1px solid var(--edge-soft); }
.deal__timer-cell:last-child { border-right: none; }
.deal__timer-num { font-family: var(--mono); font-size: 0.75rem; font-weight: 700; color: var(--ink); line-height: 1; }
.deal__timer-lbl { font-size: 0.5rem; color: var(--ink-4); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.deal__atc {
  font-size: 0.75rem; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  align-self: flex-start;
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; margin-top: 2px;
}

/* ─── POPULAR CATEGORIES ─────────────────────────────────── */
.cats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.cat {
  display: flex; flex-direction: column; align-items: stretch;
  text-align: center;
}
.cat__tile {
  aspect-ratio: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: transform var(--t-med) var(--ease-out);
}
.cat:hover .cat__tile { transform: translateY(-3px); }
.cat__tile:nth-child(1) { background: var(--tile-1); }
.cat:nth-child(1) .cat__tile { background: var(--tile-1); }
.cat:nth-child(2) .cat__tile { background: var(--tile-2); }
.cat:nth-child(3) .cat__tile { background: var(--tile-3); }
.cat:nth-child(4) .cat__tile { background: var(--tile-4); }
.cat:nth-child(5) .cat__tile { background: var(--tile-5); }
.cat:nth-child(6) .cat__tile { background: var(--tile-6); }
.cat__tile img {
  max-width: 75%; max-height: 75%; width: auto; height: auto;
  object-fit: contain;
}
.cat__label {
  font-family: var(--sans); font-size: 0.875rem; font-weight: 600;
  color: var(--ink); text-align: center;
}

/* stato attivo categoria */
button.cat {
  background: none; border: none; padding: 0; cursor: pointer;
  text-align: center;
}

.cat.is-active .cat__tile {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* pannello espandibile */
.cats-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.cats-panel.is-open {
  max-height: 420px;
}
.cats-panel__inner {
  padding: 24px 0 8px;
}

/* chip tipi capello */
.cats-panel__hair-types {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.hair-chip {
  background: none;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.hair-chip:hover,
.hair-chip.is-active {
  background: var(--ink);
  color: var(--paper);
}

/* griglia loghi brand */
.cats-panel__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cats-panel__brands .brand-logo {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 60px;
  border: 1px solid #e8e8e8;
  border-radius: var(--r, 8px);
  padding: 8px;
  transition: border-color 0.18s, box-shadow 0.18s;
  background: #fff;
}
.cats-panel__brands .brand-logo:hover {
  border-color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cats-panel__brands .brand-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.cats-panel__empty {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink-3, #888);
}

/* mobile */
@media (max-width: 767px) {
  .cats-panel.is-open { max-height: 560px; }
  .cats-panel__brands .brand-logo { width: 90px; height: 50px; }
}

/* ─── BLOG POSTS ─────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card__media {
  aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 16px;
  background: var(--paper-2);
}
.blog-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__meta {
  font-size: 0.75rem; color: var(--ink-3); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.blog-card__meta-dot { width: 3px; height: 3px; background: var(--ink-4); border-radius: 50%; }
.blog-card__title {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 400;
  line-height: 1.25; color: var(--ink);
  transition: opacity var(--t-fast);
}
.blog-card:hover .blog-card__title { opacity: 0.65; }

/* ─── BRAND LOGOS STRIP ──────────────────────────────────── */
.brand-strip {
  border-top: 1px solid var(--edge-soft);
  border-bottom: 1px solid var(--edge-soft);
  background: var(--paper);
  padding: 36px 0;
}
.brand-strip__row {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.brand-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-4);
  transition: color var(--t-fast);
  filter: grayscale(1);
  opacity: 0.55;
}
.brand-logo:hover { opacity: 1; filter: grayscale(0); color: var(--ink); }
.brand-logo img { height: 28px; width: auto; filter: grayscale(1); opacity: 0.55; transition: all var(--t-fast); }
.brand-logo:hover img { filter: grayscale(0); opacity: 1; }


/* ─── PRODUCT PAGE (Hydrience Labs style) ────────────────── */
.product {
  padding: calc(var(--chrome-h) + 16px) 0 clamp(48px, 6vw, 80px);
  scroll-margin-top: calc(var(--chrome-h) + 16px);
}
.product__breadcrumb {
  font-size: 0.75rem; color: var(--ink-3);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.product__breadcrumb a { color: var(--ink-3); }
.product__breadcrumb a:hover { color: var(--ink); }
.product__breadcrumb svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.product__breadcrumb .current { color: var(--ink); }

.product__layout {
  display: grid; grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + 12px); }
.product-gallery__main {
  aspect-ratio: 1; overflow: hidden;
  background: var(--paper-2);
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.product-gallery__thumb {
  aspect-ratio: 1; overflow: hidden;
  background: var(--paper-2);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
}
.product-gallery__thumb.active { border-color: var(--ink); }
.product-gallery__thumb:hover { border-color: var(--ink-4); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info column */
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-page__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  background: #c0392b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 20px;
  font-family: var(--sans);
  box-shadow: 0 2px 10px rgba(192,57,43,0.3);
}
.product-info__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product-info__title {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400; line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink);
  word-break: break-word; overflow-wrap: anywhere;
}
.product-info__wish {
  width: 44px; height: 44px; border: 1px solid var(--edge);
  border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); flex-shrink: 0; background: var(--paper); cursor: pointer;
  transition: all var(--t-fast);
}
.product-info__wish:hover { border-color: var(--ink); color: var(--sale); }
.product-info__wish svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.product-info__rating { display: flex; align-items: center; gap: 8px; }
.product-info__rating-count { font-size: 0.8125rem; color: var(--ink-3); }
.product-info__desc { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.65; }
.product-info__price { display: flex; align-items: baseline; gap: 12px; padding-top: 4px; }
.product-info__price-current { font-family: var(--sans); font-size: 1.625rem; font-weight: 700; color: var(--ink); }
.product-info__price-was { font-size: 1rem; color: var(--ink-4); text-decoration: line-through; }

/* Variant pills */
.product-info__option-group { display: flex; flex-direction: column; gap: 10px; }
.product-info__option-label {
  font-size: 0.8125rem; color: var(--ink-3); font-weight: 400;
}
.product-info__option-label strong { color: var(--ink); font-weight: 600; }
.product-info__variants { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill {
  padding: 10px 20px; min-height: 42px;
  font-size: 0.8125rem; font-weight: 500; color: var(--ink);
  background: var(--paper); border: 1px solid var(--edge);
  border-radius: var(--r-pill);
  cursor: pointer; transition: all var(--t-fast);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  position: relative;
}
.variant-pill:hover:not(:disabled) { border-color: var(--ink); }
.variant-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.variant-pill.sold-out {
  color: var(--ink-4); cursor: not-allowed;
  text-decoration: line-through;
  background: var(--paper-2);
}
.variant-pill__sold-out {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-4); text-decoration: none;
  display: inline-block; text-decoration: none !important;
}

/* Variant select dropdown (per opzioni con molti valori) */
.variant-select-wrap {
  position: relative; display: flex; align-items: center;
}
.variant-select {
  width: 100%; padding: 12px 44px 12px 16px;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--edge); border-radius: var(--r-pill);
  appearance: none; -webkit-appearance: none;
  cursor: pointer; transition: border-color var(--t-fast);
  line-height: 1.4;
}
.variant-select:hover { border-color: var(--ink); }
.variant-select:focus { outline: none; border-color: var(--ink); }
.variant-select-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; pointer-events: none; color: var(--ink-3);
}

/* Quantity + ATC row */
.product-info__buy { display: flex; gap: 12px; }
.qty-stepper {
  display: flex; align-items: center;
  border: 1px solid var(--ink); padding: 0 4px;
  height: 56px; min-width: 130px;
}
.qty-stepper button {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); background: none; border: none;
}
.qty-stepper button svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.qty-stepper input {
  flex: 1; width: 40px; text-align: center;
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
  color: var(--ink); background: transparent;
}
.product-info__atc { flex: 1; min-height: 56px; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* Perks list */
.product-perks { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.product-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; color: var(--ink-2);
}
.product-perk svg { width: 16px; height: 16px; color: var(--success); stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

/* Accordion */
.product-acc { border-top: 1px solid var(--edge); margin-top: 12px; }
.acc-item { border-bottom: 1px solid var(--edge); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink);
  background: none; border: none; text-align: left;
}
.acc-trigger svg {
  width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none;
  transition: transform var(--t-med) var(--ease-out);
}
.acc-item.open .acc-trigger svg { transform: rotate(180deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-med) var(--ease-out); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-body__inner { padding: 0 0 20px; font-size: 0.875rem; color: var(--ink-2); line-height: 1.65; }

/* Reviewer photos */
.reviewer-strip { display: flex; gap: 10px; padding: 4px 0; }
.reviewer {
  width: 64px; height: 64px; border-radius: var(--r-pill);
  overflow: hidden; flex-shrink: 0; border: 2px solid var(--paper);
  background: var(--paper-2);
}
.reviewer img { width: 100%; height: 100%; object-fit: cover; }

/* Timeline section */
.timeline-section {
  background: var(--bone);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  margin-top: 56px;
}
.timeline-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.timeline__title {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 14px;
  line-height: 1.1; letter-spacing: -0.01em;
}
.timeline__intro { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 32px; line-height: 1.6; max-width: 460px; }
.timeline__list { display: flex; flex-direction: column; gap: 24px; position: relative; padding-left: 24px; }
.timeline__list::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 1px; background: var(--ink-4);
}
.timeline__step { position: relative; }
.timeline__step::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--bone);
}
.timeline__step-title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.timeline__step-desc { font-size: 0.8125rem; color: var(--ink-2); line-height: 1.5; }

/* Before/After slider — nascosto sulla pagina prodotto */
.product .beforeafter,
.pdp-desc .beforeafter { display: none !important; }

/* Before/After slider (usato altrove nel sito) */
.beforeafter {
  position: relative; aspect-ratio: 4 / 3.4; overflow: hidden;
  background: var(--paper-2); user-select: none;
}
.beforeafter__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.beforeafter__before { clip-path: inset(0 50% 0 0); z-index: 2; }
.beforeafter__label {
  position: absolute; top: 16px;
  background: var(--paper); color: var(--ink);
  padding: 6px 14px; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill); z-index: 4;
}
.beforeafter__label--before { left: 16px; }
.beforeafter__label--after { right: 16px; }
.beforeafter__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--paper); z-index: 3;
  cursor: ew-resize; transform: translateX(-50%);
}
.beforeafter__knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
}
.beforeafter__knob svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Frequently Bought Together */
.fbt {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-2);
  border-radius: 4px;
}
.fbt__title {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400; margin-bottom: 28px; color: var(--ink);
}
.fbt__row {
  display: flex; align-items: flex-start; gap: 12px;
  flex-wrap: wrap;
}
.fbt__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; position: relative; flex: 1; min-width: 100px; max-width: 160px;
  transition: opacity var(--t-fast);
}
.fbt__item--main { pointer-events: none; }
.fbt__item--unchecked { opacity: 0.35; }
.fbt__img-wrap {
  width: 100%; aspect-ratio: 1; background: var(--paper);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.fbt__img-wrap--link { display: block; }
.fbt__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fbt__badge {
  position: absolute; top: 6px; left: 6px;
  font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: var(--ink); color: var(--paper);
  padding: 3px 7px; border-radius: 2px;
}
.fbt__check-label {
  position: absolute; top: 6px; right: 6px; z-index: 2; cursor: pointer;
}
.fbt__check { display: none; }
.fbt__check-box {
  width: 20px; height: 20px; border: 1.5px solid var(--edge);
  background: var(--paper); display: flex; align-items: center; justify-content: center;
  border-radius: 3px; transition: all var(--t-fast);
}
.fbt__check:checked + .fbt__check-box {
  background: var(--ink); border-color: var(--ink);
}
.fbt__check:checked + .fbt__check-box::after {
  content: ''; width: 5px; height: 9px;
  border: 2px solid var(--paper); border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); display: block;
}
.fbt__name {
  font-size: 0.75rem; color: var(--ink-2); text-align: center; line-height: 1.4;
}
.fbt__name a { color: inherit; text-decoration: none; }
.fbt__name a:hover { color: var(--ink); }
.fbt__price {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
}
.fbt__chosen-variant {
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--ink-4);
  font-family: var(--sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fbt__variant-pick {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink-5);
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: var(--sans);
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.15s, color 0.15s;
}
.fbt__variant-pick:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}

/* FBT / Upsell Popup */
.fbt-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10,8,7,0.45);
  z-index: 600;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.22s;
  pointer-events: none;
}
.fbt-popup-overlay--open { opacity: 1; pointer-events: auto; }
.fbt-popup {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 24px 28px;
  width: 90%; max-width: 480px;
  position: relative;
  transform: translateY(-12px) scale(0.98);
  transition: transform 0.22s var(--ease);
  max-height: 85vh;
  overflow-y: auto;
}
.fbt-popup-overlay--open .fbt-popup { transform: translateY(0) scale(1); }

/* Mobile: bottom sheet */
@media (max-width: 600px) {
  .fbt-popup-overlay { align-items: flex-end; }
  .fbt-popup {
    width: 100%; max-width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(20px);
    max-height: 80vh;
  }
  .fbt-popup-overlay--open .fbt-popup { transform: translateY(0); }
}

.fbt-popup__title {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 20px; padding-right: 24px;
}
.fbt-popup__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fbt-popup__pill {
  padding: 7px 14px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.fbt-popup__pill:hover { border-color: var(--ink); }
.fbt-popup__pill--active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fbt-popup__pill--sold-out { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
.fbt-popup__close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.25rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  color: var(--ink-4); padding: 4px;
}
.fbt-popup__close:hover { color: var(--ink); }

/* Upsell popup */
.fbt-popup--upsell { max-width: 520px; }
.upsell-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.upsell-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--edge);
}
.upsell-row:last-child { border-bottom: none; }
.upsell-row__img {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden; background: var(--paper-2);
}
.upsell-row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upsell-row__info { flex: 1; min-width: 0; }
.upsell-row__name { font-size: 0.875rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.upsell-row__price { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.upsell-row__variants { display: flex; flex-wrap: wrap; gap: 6px; }
.upsell-row__variants .fbt-popup__pill { font-size: 0.72rem; padding: 4px 10px; }
.upsell-row__add {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 999px;
  font-size: 0.8125rem; font-family: var(--sans);
  cursor: pointer; transition: opacity 0.15s;
  align-self: center;
}
.upsell-row__add:hover { opacity: 0.8; }
.upsell-row__add:disabled { opacity: 0.5; cursor: default; }
.upsell-skip {
  width: 100%; padding: 10px;
  background: none; border: none;
  font-size: 0.8125rem; color: var(--ink-4);
  cursor: pointer; text-decoration: underline;
  font-family: var(--sans);
}
.upsell-skip:hover { color: var(--ink); }
.fbt__plus {
  font-size: 1.25rem; font-weight: 300; color: var(--ink-4);
  align-self: center; flex-shrink: 0; padding-top: 16px;
}
.fbt__footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--edge);
}
.fbt__total-wrap { display: flex; align-items: baseline; gap: 8px; }
.fbt__total-label { font-size: 0.8125rem; color: var(--ink-3); }
.fbt__total { font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.fbt__atc { min-height: 48px; font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 600px) {
  .fbt__row { gap: 8px; }
  .fbt__item { min-width: 80px; max-width: 110px; }
  .fbt__footer { flex-direction: column; align-items: flex-start; }
  .fbt__atc { width: 100%; }
}

/* Recommended For You */
/* ── Search page ──────────────────────────────────────────── */
.search-page {
  padding: calc(var(--chrome-h) + 48px) var(--px) clamp(64px, 8vw, 96px);
  max-width: 900px;
  margin: 0 auto;
}
.search-header {
  text-align: center;
  margin-bottom: 40px;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--edge-strong);
  border-radius: 999px;
  overflow: hidden;
  max-width: 560px;
  margin: 24px auto 0;
  background: var(--paper);
}
.search-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  background: transparent;
  color: var(--ink);
}
.search-form input[type="search"]::placeholder { color: var(--g2); }
.search-form button[type="submit"] {
  background: none;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  color: var(--ink-3);
  display: flex;
  align-items: center;
}
.search-form button[type="submit"]:hover { color: var(--ink); }
.search-form button svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.search-count {
  font-size: 0.875rem;
  color: var(--ink-4);
  margin-bottom: 28px;
}
.search-results .product-grid { margin-top: 0; }

.search-live {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--paper);
  border: 1px solid var(--edge);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(10,8,7,0.10);
  overflow: hidden;
  z-index: 400;
  max-width: 560px;
  margin: 0 auto;
}
#search-form { position: relative; }
.search-live__list {
  list-style: none;
  margin: 0; padding: 8px 0;
}
.search-live__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.12s;
}
.search-live__item:hover { background: var(--paper-2); }
.search-live__img {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--paper-2);
}
.search-live__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.search-live__no-img { display: block; width: 100%; height: 100%; }
.search-live__info {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.search-live__vendor {
  font-size: 0.6875rem; color: var(--ink-4);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.search-live__name {
  font-size: 0.875rem; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-live__price {
  font-size: 0.8125rem; font-weight: 600; color: var(--ink);
}
.search-live__empty {
  padding: 16px; font-size: 0.875rem; color: var(--ink-4); text-align: center;
}
.search-live__all {
  display: block; padding: 12px 16px;
  font-size: 0.8125rem; color: var(--ink-3);
  text-decoration: none; border-top: 1px solid var(--edge);
  text-align: center;
  transition: color 0.12s, background 0.12s;
}
.search-live__all:hover { color: var(--ink); background: var(--paper-2); }

.recommended { margin-top: clamp(56px, 7vw, 88px); }
.recommended__title {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400; color: var(--ink); margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.recommended .product-card { border: none; }
.recommended .product-card__media { background: var(--paper-2); }

/* FAQ */
.faq-section {
  margin-top: clamp(64px, 8vw, 96px);
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--edge);
}
.faq-section__title {
  text-align: center; font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400;
  margin-bottom: clamp(32px, 4vw, 48px); letter-spacing: -0.015em;
}
.faq-list { max-width: 980px; margin: 0 auto; }
.faq-item {
  display: grid; grid-template-columns: 64px 1fr 1fr; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid var(--edge);
  align-items: start;
}
.faq-num { font-family: var(--sans); font-size: 0.875rem; font-weight: 600; color: var(--ink-3); letter-spacing: 0.04em; }
.faq-q { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.faq-a { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; }

/* Sticky mobile ATC */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--paper); border-top: 1px solid var(--edge);
  padding: 12px var(--pad-x);
  display: none; align-items: center; gap: 12px;
  transform: translateY(110%); transition: transform var(--t-med) var(--ease-out);
}
.sticky-atc.show { transform: translateY(0); }
.sticky-atc__price { font-weight: 700; font-size: 0.9375rem; }
.sticky-atc .btn { flex: 1; }

/* ─── ANIMATIONS (entrance) ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp var(--t-slow) var(--ease-out) both; }

/* ─── CART DRAWER (existing) ─────────────────────────────── */
.overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.45);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity var(--t-med) var(--ease-out);
}
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: min(440px, 100vw); background: var(--paper);
  z-index: 400; transform: translateX(100%);
  transition: transform var(--t-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--edge);
}
.cart-drawer__header h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.cart-drawer__close {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--ink); border: none; cursor: pointer;
}
.cart-drawer__close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--edge); }
.cart-empty { text-align: center; padding: 48px 0; color: var(--ink-3); }
.cart-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--edge-soft); }
.cart-line__img { width: 80px; height: 80px; background: var(--paper-2); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__title { font-size: 0.875rem; font-weight: 500; }
.cart-line__price { font-weight: 700; }
.cart-totals { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.9375rem; }
.cart-totals strong { font-weight: 700; }

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; left: -100%; height: 100vh;
  width: min(320px, 100vw); background: var(--paper);
  z-index: 500; transition: left var(--t-med) var(--ease-out);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { left: 0; }
.mobile-nav__header { padding: 18px 20px; border-bottom: 1px solid var(--edge); display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__close { width: 36px; height: 36px; border-radius: var(--r-pill); background: var(--paper-2); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
.mobile-nav__close svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 2; fill: none; }
.mobile-nav__links { padding: 8px 0; }
.mobile-nav__link {
  display: block; padding: 14px 20px;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--edge-soft);
}
.mobile-nav__link:hover { background: var(--paper-2); }
.mobile-menu-btn { display: none; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__sidebar { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; }
  .products-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .products-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product__layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .timeline-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --navbar-h: 46px; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .header-search { display: none; }
  .header-logo img { height: 32px; }
  .mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: none; color: var(--ink); cursor: pointer;
  }
  .mobile-menu-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; fill: none; }
  .nav-bar { display: none; }
  .topbar__links { gap: 14px; }
  .topbar__link { font-size: 0.6875rem; }
  .topbar__contact { font-size: 0.6875rem; gap: 8px; }
  .topbar__contact-label { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { padding: 16px 14px; }
  .feature:nth-child(2) { border-right: none; }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--edge-soft); }
  .products-grid--5, .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .deals-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .promo-pair { grid-template-columns: 1fr; }
  .promo-banner { padding: 28px 24px; min-height: 180px; }
  .site-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .faq-item { grid-template-columns: 32px 1fr; gap: 16px; }
  .faq-a { grid-column: 2; margin-top: 8px; }
  .sticky-atc { display: flex; }
  .product-info__buy { flex-direction: column; }
  .timeline-section { padding: 28px 20px; }
  .section-head { align-items: flex-start; }
  .tabs { gap: 16px; }
  .hero__sidebar { display: flex; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__main-content { padding: 28px 24px; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}

/* Print-friendly + reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   HEADER v2
   ============================================================ */
#site-header {
  position: fixed;
  top: calc(var(--topbar-h) + var(--ab-h));
  left: 0; right: 0;
  z-index: 300;
  height: var(--hh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(250,250,247,0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}

#site-header.is-scrolled { box-shadow: 0 1px 0 var(--g5); }

/* Logo */
.sh-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
  height: var(--hh);
  width: 180px;
}

.sh-logo__img {
  width: 180px;
  height: auto;
  display: block;
  margin-top: -28%;
  margin-bottom: -28%;
}

/* Nav */
.sh-nav {
  display: flex;
  align-items: center;
  height: var(--hh);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sh-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.sh-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--g1);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.sh-link--btn {
  background: none;
  border: none;
}

.sh-link:hover,
.sh-item:hover > .sh-link { color: var(--ink); }

.sh-item > .sh-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s var(--ease);
}

.sh-item:hover > .sh-link::after { transform: scaleX(1); }

.sh-chev {
  width: 10px; height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.22s var(--ease);
}

.sh-item--drop:hover .sh-chev,
.sh-item--drop .sh-link--btn[aria-expanded="true"] ~ .sh-drop + .sh-chev,
.sh-link--btn[aria-expanded="true"] .sh-chev { transform: rotate(180deg); }

/* Dropdown */
.sh-drop {
  position: absolute;
  top: calc(var(--hh) - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--paper);
  border: 1px solid var(--g5);
  border-top: 2px solid var(--gold);
  min-width: 230px;
  box-shadow: 0 16px 40px -12px rgba(10,8,7,0.13);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
  z-index: 400;
}

.sh-item--drop:hover .sh-drop,
.sh-link--btn[aria-expanded="true"] + .sh-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sh-drop__inner { padding: 10px 0; }

.sh-drop__link {
  display: block;
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--g1);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.sh-drop__link:hover { background: var(--paper-2); color: var(--ink); }

.sh-drop__sep { height: 1px; background: var(--g5); margin: 8px 22px; }

.sh-drop__foot { padding: 8px 22px 4px; }

.sh-drop__foot a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.sh-drop__foot a:hover { color: var(--ink); }

/* Brand mega menu */
.sh-mega {
  min-width: 680px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding: 0;
}
.sh-item--drop:hover .sh-mega,
.sh-link--btn[aria-expanded="true"] + .sh-mega {
  transform: translateX(-50%) translateY(0);
}
.sh-mega__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 16px 16px 8px;
}
.sh-mega__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.sh-mega__card:hover { background: var(--paper-2); }
.sh-mega__img-wrap {
  width: 72px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sh-mega__img-wrap--empty {
  background: var(--g6);
  border-radius: 6px;
}
.sh-mega__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}
.sh-mega__card:hover .sh-mega__img { filter: grayscale(0); opacity: 1; }
.sh-mega__initials {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-4);
  font-family: var(--sans);
}
.sh-mega__name {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
  text-align: center;
  font-family: var(--sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.15s;
}
.sh-mega__card:hover .sh-mega__name { color: var(--ink); }
.sh-mega__foot {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--g5);
  text-align: right;
}
.sh-mega__foot a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.sh-mega__foot a:hover { color: var(--ink); }

/* Actions */
.sh-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.sh-action {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.sh-cart { position: relative; }

.sh-actions svg {
  width: 18px; height: 18px;
  stroke: var(--g1);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.2s;
}

.sh-action:hover svg { stroke: var(--ink); }

.sh-cart__count {
  position: absolute;
  top: -5px; right: -6px;
  width: 14px; height: 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 7.5px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-burger { display: none; }

/* Overlay */
.sh-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,0.4);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sh-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Mobile nav */
.sh-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--paper);
  z-index: 310;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
}

.sh-mobile.is-open { transform: translateX(0); }

.sh-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--g5);
}

.sh-mobile__logo {
  height: 44px;
  width: auto;
  overflow: hidden;
}

.sh-mobile__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.sh-mobile__close svg {
  width: 20px; height: 20px;
  stroke: var(--ink-4);
  stroke-width: 1.5;
  fill: none;
}

.sh-mobile__body { padding: 12px 0 40px; }

.sh-mobile__link {
  display: block;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-4);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.sh-mobile__link:hover { color: var(--ink); background: var(--paper-2); }

.sh-mobile__link--parent {
  font-weight: 500;
  color: var(--ink);
  margin-top: 8px;
}

.sh-mobile__link--child {
  padding-left: 40px;
  font-size: 13px;
  color: var(--g1);
}

.sh-mobile__sep { height: 1px; background: var(--g5); margin: 12px 24px; }

/* Header responsive */
@media (max-width: 900px) {
  .sh-nav { display: none; }
  .sh-burger { display: flex; }
  .sh-overlay { display: block; pointer-events: none; }
}

/* ============================================================
   FOOTER v2
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
}

/* Newsletter band */
.sf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(40px, 5vw, 64px) var(--px);
  border-bottom: 1px solid var(--ink-3);
  flex-wrap: wrap;
}

.sf-top__heading {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 6px;
}

.sf-top__sub {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--g3);
  line-height: 1.6;
}

.sf-nl {
  display: flex;
  border: 1px solid var(--ink-3);
  width: 360px;
  max-width: 100%;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.sf-nl:focus-within { border-color: var(--g2); }

.sf-nl__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 18px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--paper);
  outline: none;
  min-width: 0;
}

.sf-nl__input::placeholder { color: var(--ink-4); }

.sf-nl__btn {
  background: var(--paper);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.sf-nl__btn:hover { background: var(--gold); color: var(--paper); }

/* Main grid */
.sf-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding: clamp(44px, 6vw, 68px) var(--px);
  border-bottom: 1px solid var(--ink-3);
}

/* Brand col */
.sf-brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--paper);
  display: block;
  margin-bottom: 2px;
}

.sf-brand-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--g2);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}

.sf-desc {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--g3);
  line-height: 1.85;
  max-width: 240px;
  margin-bottom: 26px;
}

.sf-social {
  display: flex;
  gap: 9px;
}

.sf-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s;
}

.sf-social a:hover { border-color: var(--gold); background: var(--gold); }

.sf-social svg {
  width: 13px; height: 13px;
  stroke: var(--g2);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.22s;
}

.sf-social a:hover svg { stroke: var(--paper); }

/* Link columns */
.sf-col__title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 20px;
}

.sf-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sf-links a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--g3);
  text-decoration: none;
  transition: color 0.18s;
}

.sf-links a:hover { color: var(--paper); }

/* Bottom bar */
.sf-bottom {
  padding: 18px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-copy {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--g2);
  letter-spacing: 0.03em;
}

.sf-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.sf-legal a {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--g2);
  text-decoration: none;
  transition: color 0.18s;
}

.sf-legal a:hover { color: var(--paper); }

/* Footer responsive */
@media (max-width: 1100px) {
  .sf-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .sf-top { flex-direction: column; align-items: flex-start; }
  .sf-nl  { width: 100%; }
  .sf-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sf-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .sf-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE v2 SECTIONS
   eval-hero-split · eval-trust-strip · eval-brand-marquee
   eval-brand-grid · eval-category-grid · eval-mission-split
═══════════════════════════════════════════════════════════ */

/* ─── Shared helpers ─────────────────────────────────────── */
.ev-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ev-eyebrow--light { color: rgba(255,255,255,0.35); }

.ev-sec-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ev-sec-title--light { color: var(--paper); }

.ev-title-em { font-style: italic; font-weight: 300; }

.ev-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.ev-link-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--g2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.ev-link-sm:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ─── Buttons ─────────────────────────────────────────────── */
.ev-btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.28s;
  position: relative;
  overflow: hidden;
}

.ev-btn-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.34s var(--ease);
}

.ev-btn-fill:hover::before { transform: translateX(0); }
.ev-btn-fill > * { position: relative; z-index: 1; }

.ev-btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink-4);
  border: 1px solid var(--g4);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.ev-btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.ev-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ev-btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.34s var(--ease);
}

.ev-btn-dark:hover::before { transform: translateX(0); }
.ev-btn-dark > * { position: relative; z-index: 1; }

/* ─── Hero Split ─────────────────────────────────────────── */
/* ─── Hero Split — Cinematic Edition ─────────────────────── */

@keyframes ehw-in {
  from { opacity: 0; transform: translateY(28px); clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; transform: translateY(0);    clip-path: inset(0 0 0% 0);   }
}

@keyframes eh-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes tile-in {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes gold-sweep {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   HERO IMMERSIVO — sfondo pieno, testo sovrapposto, category strip
   ═══════════════════════════════════════════════════════════ */

.eval-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--chrome-h);
}

/* ── Slides carosello ── */
.eval-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}

.eval-hero__slide.is-active {
  opacity: 1;
}

/* Ken Burns leggero sullo slide attivo */
.eval-hero__slide.is-active .eval-hero__cinebg-img {
  animation: kb-in 8s ease-in-out both;
}

@keyframes kb-in {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Dots navigazione */
.eval-hero__dots {
  position: absolute;
  bottom: 80px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 4;
}

\.eval-hero__dot {\n  pointer-events: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.eval-hero__dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Sfondo cinematografico full-width ── */
.eval-hero__cinebg {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.eval-hero__cinebg-video,
.eval-hero__cinebg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 20%;
}

/* Overlay caldo ambra — più opaco a sinistra dove sta il testo */
.eval-hero__cinebg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(8,6,4,0.82) 0%,
      rgba(8,6,4,0.65) 42%,
      rgba(8,6,4,0.28) 72%,
      rgba(8,6,4,0.10) 100%
    ),
    linear-gradient(
      to top,
      rgba(8,6,4,0.55) 0%,
      transparent 40%
    );
}

/* Tinta ambra calda */
.eval-hero__cinebg-warm {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(154,100,30,0.18) 0%, transparent 65%);
  mix-blend-mode: screen;
}

.eval-hero__cinebg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Sfondo fallback senza immagine */
.eval-hero__cinebg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1208 0%, #2d1f0e 50%, #1a1208 100%);
}

/* ── Contenuto principale ── */
.eval-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) var(--px) clamp(32px, 4vw, 56px);
  max-width: 680px;
}

/* ── Eyebrow ── */
.eval-hero__sup {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: eh-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}

.eval-hero__sup::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Headline ── */
.eval-hero__heading {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 300;
  font-style: italic;
  color: var(--paper);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.eval-hero__heading em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.ehw {
  display: inline-block;
  margin-right: 0.22em;
  animation: ehw-in 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: calc(var(--wi, 0) * 90ms + 120ms);
}

/* ── Sottotitolo ── */
.eval-hero__sub {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(250,248,244,0.7);
  margin-bottom: 44px;
  max-width: 440px;
  line-height: 1.8;
  animation: eh-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

/* ── CTA ── */
.eval-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: eh-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

.ev-btn-outline--white {
  border-color: rgba(250,250,247,0.35);
  color: var(--paper);
}
.ev-btn-outline--white:hover {
  border-color: rgba(250,250,247,0.7);
  background: rgba(250,250,247,0.07);
  color: var(--paper);
}

/* ── Scroll indicator ── */
.eval-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-left: 2px;
  margin-top: 56px;
  animation: eh-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 1s both;
}

.eval-hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scroll-line 2.2s ease-in-out 1.4s infinite;
}

.eval-hero__scroll-text {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Category strip ── */
.eval-hero__cats {
  position: relative;
  z-index: 3;
  background: rgba(8,6,4,0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0 var(--px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  animation: eh-fade-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

.eval-hero__cats::-webkit-scrollbar { display: none; }

.eval-hero__cats-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}

.eval-hero__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
  flex-shrink: 0;
  position: relative;
}

.eval-hero__cat:first-child { padding-left: 0; }

.eval-hero__cat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.eval-hero__cat:hover { background: rgba(255,255,255,0.04); }
.eval-hero__cat:hover::after { transform: scaleX(1); }

.eval-hero__cat-icon {
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.eval-hero__cat:hover .eval-hero__cat-icon { transform: scale(1.15); }

.eval-hero__cat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.65);
  transition: color 0.25s;
  white-space: nowrap;
}

.eval-hero__cat:hover .eval-hero__cat-label { color: var(--paper); }

.eval-hero__cat-arr {
  font-size: 10px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  margin-left: 2px;
}

.eval-hero__cat:hover .eval-hero__cat-arr {
  opacity: 1;
  transform: translateX(0);
}

/* ── Badge bestseller ── */
.eval-hero__cat--hot .eval-hero__cat-label::after {
  content: '●';
  color: var(--gold);
  font-size: 6px;
  margin-left: 6px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Hero cat active state ── */
.eval-hero__cat.is-active .eval-hero__cat-label { color: var(--gold, #b8975a); }
.eval-hero__cat.is-active::after { transform: scaleX(1); }

/* ── Hero panel (tipi capello + brand) ── */
.eval-hero-panel {
  background: rgba(8,6,4,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1);
}
.eval-hero-panel.is-open { max-height: 260px; }
.eval-hero-panel__inner {
  padding: 22px var(--px, 48px);
}
.eval-hero-panel__hair-types {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
}
.ehp-chip {
  background: none;
  border: 1px solid rgba(250,248,244,0.25);
  border-radius: 100px;
  padding: 5px 15px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.6);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.ehp-chip:hover, .ehp-chip.is-active {
  background: var(--gold, #b8975a);
  border-color: var(--gold, #b8975a);
  color: #0a0806;
}
.eval-hero-panel__brands {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.ehp-brand {
  display: flex; align-items: center; justify-content: center;
  width: 110px; height: 52px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(250,248,244,0.75);
  transition: border-color 0.18s, background 0.18s;
}
.ehp-brand:hover {
  border-color: var(--gold, #b8975a);
  background: rgba(255,255,255,0.08);
}
.ehp-brand img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.18s;
}
.ehp-brand:hover img { opacity: 1; }
.ehp-empty {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(250,248,244,0.35);
}
@media (max-width: 768px) {
  .eval-hero-panel.is-open { max-height: 360px; }
  .eval-hero-panel__inner { padding: 18px var(--px, 20px); }
  .ehp-brand { width: 90px; height: 44px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .eval-hero__body {
    padding-top: clamp(56px, 10vw, 80px);
    padding-bottom: 32px;
    max-width: 100%;
  }

  .eval-hero__heading {
    font-size: clamp(38px, 10vw, 56px);
  }

  .eval-hero__cat { padding: 18px 20px; }
  .eval-hero__cat:first-child { padding-left: 16px; }
}

/* ─── Collection empty state (brand page senza prodotti) ───── */
.collection-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.collection-empty__logo {
  margin-bottom: 36px;
}

.collection-empty__logo-img {
  max-width: 220px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}

.collection-empty__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}

.collection-empty__desc {
  font-size: 15px;
  color: var(--g1);
  line-height: 1.75;
  margin-bottom: 28px;
}

.collection-empty__soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.collection-empty__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.collection-empty__cta {
  display: inline-flex;
}

/* ─── Trust Strip ─────────────────────────────────────────── */
.ev-trust {
  border-top: 1px solid var(--g5);
  border-bottom: 1px solid var(--g5);
  background: var(--paper-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ev-trust__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px var(--px);
  border-right: 1px solid var(--g5);
}

.ev-trust__item:last-child { border-right: none; }

.ev-trust__icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); stroke-width: 1.5; fill: none;
  flex-shrink: 0;
}

.ev-trust__text p {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  white-space: nowrap;
}

.ev-trust__text span {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--g2);
}

/* ─── Brand Marquee ──────────────────────────────────────── */
.ev-marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--g5);
  background: var(--paper);
}

.ev-marquee-track {
  display: flex;
  width: max-content;
  animation: ev-marquee 55s linear infinite;
}

.ev-marquee-item {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g3);
  padding: 13px 32px;
  border-right: 1px solid var(--g5);
  white-space: nowrap;
  transition: color 0.2s;
}

.ev-marquee-item:hover { color: var(--g1); }

.ev-marquee-dot {
  font-family: var(--serif);
  font-size: 8px;
  color: var(--gold);
  border-right: 1px solid var(--g5);
  display: flex;
  align-items: center;
  padding: 13px 12px;
}

@keyframes ev-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Brand Grid ─────────────────────────────────────────── */
.ev-brands {
  padding: clamp(52px, 8vw, 96px) var(--px);
  background: var(--paper);
  border-top: 1px solid var(--g5);
}

.ev-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ev-b-card {
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: #F0EDE6;
  transition: transform 0.3s var(--ease);
}

.ev-b-card:hover { transform: translateY(-3px); }

.ev-b-card--dark::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease);
  z-index: 4;
}

.ev-b-card--dark:hover::before { transform: scaleX(1); }

.ev-b-logo-img {
  width: 72%;
  max-height: 60%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease);
  filter: none;
}

.ev-b-card:hover .ev-b-logo-img { transform: scale(1.04); }

.ev-b-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ev-b-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.ev-b-card:hover .ev-b-img { transform: scale(1.06); }

.ev-b-logo-text {
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: block;
}

.ev-b-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

.ev-b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s;
}

.ev-b-card:hover .ev-b-overlay { opacity: 1.0; }

.ev-b-label {
  position: absolute;
  bottom: 16px;
  left: 16px; right: 16px;
  text-align: left;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.3s var(--ease);
}

.ev-b-card:hover .ev-b-label { transform: translateY(0); }

/* ─── Per-brand background colors (used when no collection image) ─── */
.ev-b-card--artego                 { background: #1A1035; }
.ev-b-card--ascet                  { background: #F0EDE6; }
.ev-b-card--matrix                 { background: #0D0D0D; }
.ev-b-card--redken                 { background: #1C1C1C; }
.ev-b-card--loreal-professionnel-paris { background: #F7F3EE; }
.ev-b-card--wella                  { background: #FFE8D6; }
.ev-b-card--swarzkopf              { background: #111111; }
.ev-b-card--oli-g                  { background: #E8EDE0; }
.ev-b-card--organicals             { background: #EDE8DC; }
.ev-b-card--muk                    { background: #E8E0F0; }
.ev-b-card--muk-professional       { background: #2A0A3E; }
.ev-b-card--elchim                 { background: #C8102E; }

/* Gold accent line on dark cards */
.ev-b-card--artego::before,
.ev-b-card--matrix::before,
.ev-b-card--redken::before,
.ev-b-card--swarzkopf::before,
.ev-b-card--muk-professional::before,
.ev-b-card--elchim::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease);
  z-index: 4;
}

.ev-b-card--artego:hover::before,
.ev-b-card--matrix:hover::before,
.ev-b-card--redken:hover::before,
.ev-b-card--swarzkopf:hover::before,
.ev-b-card--muk-professional:hover::before,
.ev-b-card--elchim:hover::before { transform: scaleX(1); }

/* ─── Category Grid ──────────────────────────────────────── */
.ev-cats {
  padding: clamp(48px, 7vw, 80px) var(--px);
  background: var(--ink-2);
  border-top: 1px solid var(--ink-3);
}

.ev-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
}

.ev-cat-card {
  background: var(--ink-2);
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.ev-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}

.ev-cat-card:hover { background: rgba(255,255,255,0.04); }
.ev-cat-card:hover::after { transform: scaleX(1); }

.ev-cat-icon {
  width: 32px; height: 32px;
  stroke: var(--gold);
  stroke-width: 1.3;
  fill: none;
  margin-bottom: 18px;
}

.ev-cat-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 6px;
}

.ev-cat-desc {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ─── Mission Split ──────────────────────────────────────── */
.ev-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

/* Visual side */
.ev-mission__visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 420px;
}
.ev-mission__visual-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.ev-mission:hover .ev-mission__visual-img { transform: scale(1.04); }
.ev-mission__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.18) 55%, transparent 100%);
  z-index: 1;
}
.ev-mission__visual-bg { display: none; }

/* Stats bar */
.ev-mission__stats {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 32px 40px;
  gap: 0;
}
.ev-mission__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ev-mission__stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ev-mission__stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ev-mission__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin: 0 32px;
  flex-shrink: 0;
}

/* Content side */
.ev-mission__content {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bone, #f5f0e8);
}
.ev-mission__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3, #999);
  margin-bottom: 16px;
}
.ev-mission__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ink, #1a1a1a);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ev-mission__title em {
  font-style: italic;
  color: var(--ink-2, #555);
}
.ev-mission__text {
  font-size: 0.9375rem;
  color: var(--ink-2, #555);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}

/* Checklist perks */
.ev-mission__perks {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-mission__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-2, #444);
  font-weight: 500;
}
.ev-mission__perks svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--ink, #1a1a1a);
}

/* CTA */
.ev-mission__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink, #1a1a1a);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background 0.2s, gap 0.2s;
}
.ev-mission__cta:hover { background: #333; gap: 14px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .eval-hero { grid-template-columns: 1fr; }
  .eval-hero__right { display: none; }
  .eval-hero__left { padding: calc(var(--chrome-h) + 24px) var(--px) 60px; min-height: 0; }
  .eval-hero__left::after { display: none; }
  .ev-brand-grid { grid-template-columns: repeat(3, 1fr); }
  .ev-trust { grid-template-columns: repeat(2, 1fr); }
  .ev-cats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ev-brand-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-trust { grid-template-columns: repeat(2, 1fr); }
  .ev-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-mission { grid-template-columns: 1fr; }
  .ev-mission__visual { min-height: 360px; }
  .ev-mission__stats { padding: 24px 28px; }
  .ev-mission__stat-divider { margin: 0 20px; }
  .ev-sec-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .ev-trust { grid-template-columns: 1fr; }
  .ev-trust__item { border-right: none; border-bottom: 1px solid var(--g5); }
  .ev-trust__item:last-child { border-bottom: none; }
  .ev-cats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Cart Page ──────────────────────────────────────────── */
.cart-page { padding: calc(var(--chrome-h, 80px) + 40px) var(--px, 24px) 80px; }
.cart-page-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.cart-page-title { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; font-style: italic; margin-bottom: 32px; }

.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 20px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--g5, #f0ede8); }
.cart-item__image { width: 100px; border-radius: 8px; overflow: hidden; background: var(--g6, #f8f6f2); }
.cart-item__image img { width: 100%; height: auto; display: block; object-fit: cover; }
.cart-item__brand { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3, #999); margin-bottom: 4px; }
.cart-item__name { font-family: var(--serif); font-size: 1rem; font-style: italic; font-weight: 400; color: var(--ink-1, #1a1a1a); text-decoration: none; display: block; margin-bottom: 4px; }
.cart-item__name:hover { text-decoration: underline; }
.cart-item__variant { font-size: 0.8125rem; color: var(--ink-3, #999); }
.cart-item__price { font-size: 1rem; font-weight: 600; color: var(--ink-1, #1a1a1a); }
.cart-item__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--g4, #ddd); border-radius: 6px; overflow: hidden; width: fit-content; }
.cart-qty-btn { width: 36px; height: 36px; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--ink-1, #1a1a1a); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.cart-qty-btn:hover { background: var(--g6, #f8f6f2); }
.cart-qty-input { width: 40px; height: 36px; border: none; border-left: 1px solid var(--g4, #ddd); border-right: 1px solid var(--g4, #ddd); text-align: center; font-size: 0.9rem; background: none; }
.cart-item__remove { background: none; border: none; cursor: pointer; font-size: 0.8rem; color: var(--ink-3, #999); padding: 0; text-decoration: underline; }
.cart-item__remove:hover { color: var(--ink-1, #1a1a1a); }

.cart-order-summary { background: var(--g6, #f8f6f2); border-radius: 12px; padding: 28px; position: sticky; top: calc(var(--chrome-h, 80px) + 20px); }
.order-summary-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; font-style: italic; margin-bottom: 20px; }
.order-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.9rem; color: var(--ink-2, #555); border-bottom: 1px solid var(--g5, #f0ede8); }
.order-summary-row.total { font-size: 1.05rem; font-weight: 700; color: var(--ink-1, #1a1a1a); border-bottom: none; padding-top: 16px; }
.cart-checkout-btn { display: block; width: 100%; text-align: center; padding: 16px; background: var(--ink-1, #1a1a1a); color: #fff; border-radius: 8px; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: background 0.2s; }
.cart-checkout-btn:hover { background: #333; }

@media (max-width: 900px) {
  .cart-page-inner { grid-template-columns: 1fr; }
  .cart-order-summary { position: static; }
}
@media (max-width: 600px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item > div:last-child { grid-column: 2; }
}

/* ─── Product Page Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .product__layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .timeline-grid { grid-template-columns: 1fr; }
  .faq-item { grid-template-columns: 40px 1fr; }
  .faq-a { grid-column: 2; }
  .recommended .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-info__buy { flex-direction: column; }
  .qty-stepper { width: 100%; justify-content: space-between; }
  .product-info__atc { width: 100%; }
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .products-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
  .faq-num { display: none; }
  .faq-a { grid-column: 1; }
  .timeline-section { padding: 32px 20px; }
}

/* ─── Before/After Placeholder ───────────────────────────── */
.beforeafter__placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.beforeafter__placeholder--after {
  background: linear-gradient(160deg, #f5efe8 0%, #e8ddd0 40%, #c9b89e 100%);
}
.beforeafter__placeholder--before {
  background: linear-gradient(160deg, #d4c4b0 0%, #b89e82 40%, #8c7258 100%);
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.beforeafter__placeholder::before {
  content: '';
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.beforeafter__placeholder--after::after {
  content: 'Capelli luminosi\A e nutriti';
  white-space: pre;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(60,45,30,0.7);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.beforeafter__placeholder--before::after {
  content: 'Capelli opachi\A e secchi';
  white-space: pre;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ─── Collection Page ────────────────────────────────────── */
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--chrome-h, 80px) + 40px) var(--px, 24px) 80px;
  align-items: start;
}

/* Sidebar */
.collection-sidebar {
  position: sticky;
  top: calc(var(--chrome-h, 80px) + 20px);
  background: var(--paper, #fff);
  padding: 24px;
  border: 1px solid var(--edge, #eee);
  border-radius: 10px;
}
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--edge, #eee); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group__title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3, #999); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 0.875rem; color: var(--ink-2, #555); }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ink, #1a1a1a); cursor: pointer; flex-shrink: 0; }
.filter-option label { cursor: pointer; }

/* Toolbar */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--edge, #eee);
}
.collection-count { font-size: 0.8125rem; color: var(--ink-3, #999); }
.collection-sort select {
  padding: 8px 14px;
  border: 1px solid var(--edge, #eee);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--ink-1, #1a1a1a);
  background: var(--paper, #fff);
  cursor: pointer;
  outline: none;
  appearance: auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 24px;
}
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--edge, #eee);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--ink-2, #555);
  text-decoration: none;
  transition: all 0.15s;
}
.pagination a:hover { border-color: var(--ink, #1a1a1a); color: var(--ink, #1a1a1a); }
.pagination span.current { background: var(--ink, #1a1a1a); color: #fff; border-color: var(--ink, #1a1a1a); font-weight: 600; }

/* Collection responsive */
@media (max-width: 1100px) {
  .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 300px; max-width: 85vw;
    z-index: 400; overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    border-radius: 0;
  }
  .collection-sidebar.open { transform: translateX(0); }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid--4,
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collection-layout { padding-top: calc(var(--chrome-h, 80px) + 20px); }
}

/* ─── Card Product (collection grid) ────────────────────── */
.card-product {
  display: flex;
  flex-direction: column;
  background: var(--paper, #fff);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--edge, #eee);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card-product:hover { border-color: var(--ink-4, #ccc); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.card-product__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--g6, #f8f6f2);
}
.card-product__image-wrap img,
.card-product__image-wrap .placeholder-svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.card-product:hover .card-product__image-wrap img { transform: scale(1.04); }

.card-product__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 11px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 20px;
  font-family: var(--sans);
  line-height: 1;
}
.card-product__badge--sale {
  background: #c0392b;
  color: #fff;
  box-shadow: 0 2px 8px rgba(192,57,43,0.25);
}
.card-product__badge--new { background: var(--ink, #1a1a1a); color: #fff; }

.card-product__quick-add {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 13px;
  background: var(--ink, #1a1a1a);
  color: #fff;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; cursor: pointer; border: none;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.card-product:hover .card-product__quick-add { transform: translateY(0); }

.card-product__info { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.card-product__brand { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3, #999); }
.card-product__title {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-1, #1a1a1a);
  text-decoration: none; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-product__title:hover { text-decoration: underline; text-underline-offset: 3px; }
.card-product__price { margin-top: 6px; display: flex; align-items: baseline; gap: 7px; }

/* ─── Price snippet ──────────────────────────────────────── */
.price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price__current { font-size: 0.9375rem; font-weight: 700; color: var(--ink, #1a1a1a); }
.price__compare { font-size: 0.8125rem; color: var(--ink-4, #bbb); text-decoration: line-through; font-weight: 400; }
.price--sale .price__current { color: #e8433a; }

/* ─── Product Description (tabs) ────────────────────────── */
.pdp-desc {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--edge, #eee);
}

.pdp-desc__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--edge, #eee);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pdp-desc__tab {
  padding: 18px 28px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3, #999);
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.pdp-desc__tab:hover { color: var(--ink, #1a1a1a); }
.pdp-desc__tab.active { color: var(--ink, #1a1a1a); border-bottom-color: var(--ink, #1a1a1a); }

.pdp-desc__panel { display: none; }
.pdp-desc__panel.active { display: block; }

.pdp-desc__body {
  max-width: 860px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Benefits checklist */
.pdp-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  padding: 0; margin: 0;
}
.pdp-benefit {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--ink-2, #444); line-height: 1.4;
}
.pdp-benefit__icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--ink, #1a1a1a); margin-top: 1px;
}

/* Rich text description */
.pdp-desc__rte { font-size: 0.9375rem; color: var(--ink-2, #444); line-height: 1.75; }
.pdp-desc__rte p { margin-bottom: 14px; }
.pdp-desc__rte p:last-child { margin-bottom: 0; }
.pdp-desc__rte strong { color: var(--ink, #1a1a1a); font-weight: 600; }
.pdp-desc__rte ul, .pdp-desc__rte ol { padding-left: 20px; margin-bottom: 14px; }
.pdp-desc__rte li { margin-bottom: 6px; }

/* Specs table */
.pdp-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--edge, #eee);
  border: 1px solid var(--edge, #eee);
  border-radius: 8px;
  overflow: hidden;
}
.pdp-spec {
  background: var(--paper, #fff);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.pdp-spec__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3, #999); }
.pdp-spec__val { font-size: 0.9rem; font-weight: 500; color: var(--ink-1, #1a1a1a); }

/* How to use steps */
.pdp-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
  counter-reset: step;
}
.pdp-step {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 0.9375rem; color: var(--ink-2, #444); line-height: 1.6;
  counter-increment: step;
}
.pdp-step::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink, #1a1a1a);
  color: #fff;
  font-size: 0.8125rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* Ingredients */
.pdp-ingredients {
  font-size: 0.8125rem; color: var(--ink-3, #999);
  line-height: 1.8; letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .pdp-benefits { grid-template-columns: 1fr; }
  .pdp-specs { grid-template-columns: 1fr 1fr; }
  .pdp-desc__tab { padding: 14px 18px; font-size: 0.75rem; }
  .pdp-desc__body { padding: 28px 0; }
}

/* ─── Footer bottom bar social + phone ──────────────────── */
.sf-bottom__left { display: flex; flex-direction: column; gap: 6px; }
.sf-phone { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--g2); text-decoration: none; transition: color 0.18s; }
.sf-phone:hover { color: var(--paper); }
.sf-bottom__social { display: flex; align-items: center; gap: 14px; }
.sf-bottom__social-link { color: var(--g2); transition: color 0.18s; display: flex; align-items: center; }
.sf-bottom__social-link:hover { color: var(--paper); }

/* ─── Page (main-page) ───────────────────────────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--chrome-h, 80px) + 48px) var(--px, 24px) 96px;
}
.page-hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--edge, #eee);
}
.page-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink, #1a1a1a);
  line-height: 1.1;
}

/* Rich text content — usato da tutte le pagine inclusa FAQ */
.page-body { font-size: 1rem; color: var(--ink-2, #444); line-height: 1.8; }
.page-body h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 400; color: var(--ink, #1a1a1a); margin: 48px 0 16px; line-height: 1.2; }
.page-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink, #1a1a1a); margin: 32px 0 12px; }
.page-body h4 { font-size: 1rem; font-weight: 700; color: var(--ink, #1a1a1a); margin: 24px 0 8px; letter-spacing: 0.02em; }
.page-body p { margin-bottom: 18px; }
.page-body p:last-child { margin-bottom: 0; }
.page-body strong { color: var(--ink, #1a1a1a); font-weight: 600; }
.page-body a { color: var(--ink, #1a1a1a); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { opacity: 0.7; }
.page-body ul, .page-body ol { padding-left: 22px; margin-bottom: 18px; }
.page-body li { margin-bottom: 8px; }
.page-body ul li { list-style: disc; }
.page-body ol li { list-style: decimal; }
.page-body blockquote {
  border-left: 3px solid var(--ink, #1a1a1a);
  margin: 28px 0;
  padding: 12px 24px;
  font-style: italic;
  color: var(--ink-2, #444);
  background: var(--g6, #f8f6f2);
}
.page-body hr { border: none; border-top: 1px solid var(--edge, #eee); margin: 40px 0; }
.page-body img { max-width: 100%; border-radius: 8px; margin: 24px 0; }
.page-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.9rem; }
.page-body th { background: var(--g6, #f8f6f2); font-weight: 600; text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--edge, #eee); }
.page-body td { padding: 12px 16px; border-bottom: 1px solid var(--edge, #eee); }

@media (max-width: 600px) {
  .page-content { padding-top: calc(var(--chrome-h, 80px) + 28px); }
}

/* ─── Mission Split — badge & quote ─────────────────────── */
.ev-mission__badge {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.ev-mission__badge-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: rgba(255,255,255,0.7);
  animation: badge-spin 18s linear infinite;
  transform-origin: center;
}
@keyframes badge-spin { to { transform: rotate(360deg); } }
.ev-mission__badge-center {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
}

.ev-mission__quote {
  position: absolute;
  top: 50%; left: 32px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 200px;
  color: rgba(255,255,255,0.88);
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.5;
}
.ev-mission__quote-mark {
  width: 20px; height: 15px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   CHI SIAMO PAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.about-hero {
  position: relative;
  height: 90vh; min-height: 560px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.3) 50%, rgba(8,6,4,0.1) 100%);
}
.about-hero__body {
  position: relative; z-index: 2;
  padding: 0 var(--px, 24px) clamp(56px, 8vw, 96px);
  max-width: 820px;
}
.about-hero__eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.about-hero__title {
  font-family: var(--serif); font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 20px;
}
.about-hero__title em { font-style: italic; color: rgba(255,255,255,0.75); }
.about-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.65;
}
.about-hero__scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
}
.about-hero__scroll-line {
  display: block; width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line { 0%,100%{opacity:0;transform:scaleY(0) translateY(-100%)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* Shared */
.about-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3, #999); margin-bottom: 14px;
}
.about-h2 {
  font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--ink, #1a1a1a);
  line-height: 1.1; letter-spacing: -0.02em;
}
.about-body { font-size: 1rem; color: var(--ink-2, #555); line-height: 1.8; margin-top: 20px; }
.about-body p { margin-bottom: 16px; }
.about-body p:last-child { margin-bottom: 0; }

/* Intro split */
.about-intro {
  padding: clamp(72px, 10vw, 120px) var(--px, 24px);
  max-width: 1300px; margin: 0 auto;
}
.about-intro__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px); align-items: center;
}
.about-intro__visual {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-intro__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-intro__badge {
  position: absolute; bottom: 28px; left: 28px;
  background: #fff; border-radius: 10px;
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.about-intro__badge-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  color: var(--ink, #1a1a1a); line-height: 1;
}
.about-intro__badge-lbl {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3, #999);
}

/* Stats */
.about-stats {
  background: var(--ink, #1a1a1a);
  padding: clamp(48px, 6vw, 72px) var(--px, 24px);
}
.about-stats__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.about-stat {
  background: var(--ink, #1a1a1a);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 8px;
}
.about-stat__num {
  font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300; color: #fff; line-height: 1;
  letter-spacing: -0.03em;
}
.about-stat__lbl {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* Valori */
.about-values {
  padding: clamp(72px, 10vw, 120px) var(--px, 24px);
  background: var(--bone, #f5f0e8);
}
.about-values__inner { max-width: 1200px; margin: 0 auto; }
.about-values__head { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.about-values__head .about-label { display: block; }
.about-values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-value {
  background: #fff; border-radius: 12px;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--edge, #eee);
  transition: box-shadow 0.25s, transform 0.25s;
}
.about-value:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.about-value__icon {
  width: 48px; height: 48px;
  background: var(--ink, #1a1a1a); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.about-value__icon svg { width: 22px; height: 22px; }
.about-value__title {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 400;
  color: var(--ink, #1a1a1a); line-height: 1.2;
}
.about-value__text {
  font-size: 0.875rem; color: var(--ink-2, #555); line-height: 1.7;
}

/* CTA finale */
.about-cta {
  padding: clamp(80px, 12vw, 140px) var(--px, 24px);
  text-align: center;
  background: #fff;
}
.about-cta__inner { max-width: 640px; margin: 0 auto; }
.about-cta__title {
  font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--ink, #1a1a1a);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.about-cta__sub { font-size: 1rem; color: var(--ink-2, #555); margin-bottom: 36px; line-height: 1.6; }
.about-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  background: var(--ink, #1a1a1a); color: #fff;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  transition: background 0.2s, gap 0.2s;
}
.about-cta__btn:hover { background: #333; gap: 16px; }

/* Responsive */
@media (max-width: 1000px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-intro__inner { grid-template-columns: 1fr; }
  .about-intro__visual { aspect-ratio: 3/2; }
  .about-hero { height: 75vh; }
}
@media (max-width: 480px) {
  .about-values__grid { grid-template-columns: 1fr; }
  .about-stats__inner { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Hero */
.faq-hero {
  background: var(--c-bone, #f9f6f1);
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 1px solid #ece8e1;
}
.faq-hero__inner { max-width: 680px; margin: 0 auto; }
.faq-hero__eyebrow {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-gold, #b89b6e);
  font-weight: 600;
  margin-bottom: 12px;
}
.faq-hero__title {
  font-family: var(--f-serif, Georgia, serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--c-ink, #1a1410);
  margin-bottom: 16px;
  line-height: 1.15;
}
.faq-hero__sub {
  color: #6b5e52;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Search bar */
.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid #ddd6cc;
  border-radius: 40px;
  padding: 12px 20px;
  transition: border-color .2s;
}
.faq-search:focus-within { border-color: var(--c-gold, #b89b6e); }
.faq-search svg { flex-shrink: 0; color: #a09080; }
.faq-search__input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  color: var(--c-ink, #1a1410);
  outline: none;
}
.faq-search__input::placeholder { color: #b0a090; }

/* Body layout */
.faq-body { padding: 60px 24px 80px; }
.faq-body__inner { max-width: 820px; margin: 0 auto; }

/* Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.faq-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #ddd6cc;
  border-radius: 40px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #6b5e52;
  cursor: pointer;
  transition: all .2s;
}
.faq-tab:hover { border-color: var(--c-gold, #b89b6e); color: var(--c-ink, #1a1410); }
.faq-tab.is-active {
  background: var(--c-ink, #1a1410);
  border-color: var(--c-ink, #1a1410);
  color: #fff;
}

/* Panel */
.faq-panel { display: none; }
.faq-panel.is-active { display: block; }

/* FAQ list */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-list--solo { max-width: 820px; margin: 0 auto; }

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #ece8e1;
}
.faq-item:first-child { border-top: 1px solid #ece8e1; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink, #1a1410);
  cursor: pointer;
  transition: color .2s;
  line-height: 1.4;
}
.faq-item__q:hover { color: var(--c-gold, #b89b6e); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ddd6cc;
  border-radius: 50%;
  transition: all .25s;
  color: #a09080;
}
.faq-item.is-open .faq-item__icon {
  background: var(--c-ink, #1a1410);
  border-color: var(--c-ink, #1a1410);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner {
  overflow: hidden;
  color: #5a4e45;
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 0;
  transition: padding-bottom .3s;
}
.faq-item.is-open .faq-item__a-inner { padding-bottom: 20px; }
.faq-item__a-inner p { margin: 0 0 8px; }
.faq-item__a-inner p:last-child { margin-bottom: 0; }

/* Empty state */
.faq-empty {
  color: #a09080;
  font-size: 14px;
  padding: 24px 0;
  text-align: center;
}

/* CTA contatti */
.faq-cta {
  background: var(--c-ink, #1a1410);
  padding: 64px 24px;
  text-align: center;
}
.faq-cta__inner { max-width: 520px; margin: 0 auto; }
.faq-cta__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--c-gold, #b89b6e);
}
.faq-cta__title {
  font-family: var(--f-serif, Georgia, serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.faq-cta__sub { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--c-gold, #b89b6e);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 3px;
  transition: opacity .2s;
}
.faq-cta__btn:hover { opacity: .88; }

@media (max-width: 600px) {
  .faq-hero { padding: 60px 20px 40px; }
  .faq-body { padding: 40px 20px 60px; }
  .faq-item__q { font-size: 15px; padding: 18px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — MEGA MENU & MOBILE ACCORDION
   ═══════════════════════════════════════════════════════════════ */

/* Mega menu container */
.sh-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  background: #fff;
  border: 1px solid #ece8e1;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 200;
}
.sh-item--mega { position: relative; }
.sh-item--mega.is-open .sh-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sh-mega__inner { padding: 20px; }

.sh-mega__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.sh-mega__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
}
.sh-mega__link:hover { background: #f9f6f1; }

.sh-mega__thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0ebe3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-mega__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sh-mega__thumb--empty { color: #b0a090; }

.sh-mega__link-text { display: flex; flex-direction: column; gap: 2px; }
.sh-mega__link-name { font-size: 14px; font-weight: 500; color: #1a1410; }
.sh-mega__link-count { font-size: 11px; color: #a09080; }

.sh-mega__footer {
  border-top: 1px solid #ece8e1;
  padding-top: 12px;
  text-align: right;
}
.sh-mega__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1410;
  text-decoration: none;
  letter-spacing: .03em;
}
.sh-mega__all:hover { color: var(--c-gold, #b89b6e); }

/* Promo link */
.sh-link--promo { color: var(--c-gold, #b89b6e) !important; font-weight: 600; }

/* Mobile accordion */
.sh-mobile__acc { border-bottom: 1px solid #f0ebe3; }
.sh-mobile__link--acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}
.sh-mobile__link--acc svg { transition: transform .25s; flex-shrink: 0; }
.sh-mobile__acc.is-open .sh-mobile__link--acc svg { transform: rotate(180deg); }

.sh-mobile__acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.sh-mobile__link--child { padding-left: 28px !important; font-size: 14px !important; }
.sh-mobile__link--all { font-weight: 600; color: var(--c-ink, #1a1410); }
.sh-mobile__link--promo { color: var(--c-gold, #b89b6e) !important; font-weight: 600; }
.sh-mobile__link--util {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #6b5e52 !important;
  font-size: 14px !important;
}
