/* Weleda RU — homepage styles */

/* ============================================================
   Weleda Design System — Foundation tokens
   Swiss natural cosmetics · Since 1921
   ============================================================ */

/* ------------------------------------------------------------
   Sculpin (Schick Toikka) — ОСНОВНОЙ sans-serif Weleda.
   Коммерческий шрифт, лицензия у Weleda по брендбуку (ребрендинг PSG).
   Файлы НЕ поставляются в публичных CDN. Получить .woff2 оттуда,
   разложить в fonts/ и раскомментировать блок ниже.
   До этого момента система автоматически падает на DM Sans.
   ------------------------------------------------------------ */
/*
*/

:root {
  /* ---------- BRAND PALETTE ---------- */
  /* Greens are the spine of the system — deep forest down to pale leaf. */
  --w-green-deep:    #0b4535;   /* primary brand, dark bg, headers */
  --w-green-mid:     #3A6B4A;   /* secondary, links, CTA hover */
  --w-green-herb:    #6B8B6B;   /* accent, series labels, captions */
  --w-green-sage:    #A8BEA8;   /* light accent, dividers */
  --w-green-pale:    #D4E8D4;   /* badge surfaces, hover tints */

  /* Warm naturals — paper, sand, bark — pair with green */
  --w-cream:         #F0EDE4;   /* text on dark, warm card bg */
  --w-sand:          #C8B99A;   /* warm border, soft divider */
  --w-bark:          #6B5A3A;   /* warm text, italic quotes */

  /* ---------- INK / SURFACE ---------- */
  --w-ink:           #1A1A18;   /* primary body text */
  --w-ink-muted:    #5A5A56;   /* secondary text */
  --w-ink-faint:    #9A9A94;   /* labels, captions, meta */
  --w-bg:            #FDFCFB;   /* page background, warm off-white */
  --w-bg-card:       #FFFFFF;   /* card / panel surface */
  --w-bg-warm:       #F4F3EE;   /* alt warm surface */
  --w-border:        rgba(0, 0, 0, 0.08);
  --w-border-mid:    rgba(0, 0, 0, 0.14);
  --w-border-input:  #B0BFB0;   /* sage-tinted input border */

  /* ---------- PRODUCT SERIES COLORS ---------- */
  /* Each Weleda product line carries its own botanical color. */
  --w-series-wildrose:     #E8A8B8;   /* Шиповник / Wild Rose */
  --w-series-buckthorn:    #F5B86A;   /* Облепиха / Sea Buckthorn */
  --w-series-iris:         #D4A8C8;   /* Ирис / Iris */
  --w-series-almond:       #E8D4A0;   /* Миндаль / Almond */
  --w-series-calendula:    #B8D4C8;   /* Календула / Calendula */
  --w-series-lavender:     #C0B8D8;   /* Лаванда / Lavender */
  --w-series-birch:        #AACCA4;   /* Берёза / Birch */
  --w-series-arnica:       #E8C8A0;   /* Арника / Arnica */

  /* ---------- TYPEFACES ---------- */
  --w-font-serif:    'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  /* Основной sans: Sculpin (бренд), фолбэк на DM Sans → системный sans. */
  --w-font-sans:     'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  /* DM Sans вынесен в отдельную переменную на случай, когда нужен именно он. */
  --w-font-sans-alt: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --w-font-mono:     'Courier New', ui-monospace, monospace;

  /* ---------- TYPE SCALE — semantic ---------- */
  /* Display + headings are serif, light weight; body + UI is sans. */
  --w-display-font:    var(--w-font-serif);
  --w-display-weight:  300;
  --w-display-size:    44px;
  --w-display-lh:      1.1;
  --w-display-ls:      0.02em;

  --w-h1-font:         var(--w-font-serif);
  --w-h1-weight:       300;
  --w-h1-size:         34px;
  --w-h1-lh:           1.15;
  --w-h1-ls:           0.02em;

  --w-h2-font:         var(--w-font-serif);
  --w-h2-weight:       400;
  --w-h2-size:         24px;
  --w-h2-lh:           1.25;
  --w-h2-ls:           0;

  --w-h3-font:         var(--w-font-serif);
  --w-h3-weight:       400;
  --w-h3-size:         18px;
  --w-h3-lh:           1.3;
  --w-h3-ls:           0;

  --w-body-font:       var(--w-font-sans);
  --w-body-weight:     400;
  --w-body-size:       14px;
  --w-body-lh:         1.75;

  --w-body-lg-size:    16px;

  --w-label-font:      var(--w-font-sans);
  --w-label-weight:    500;
  --w-label-size:      10px;
  --w-label-ls:        0.14em;

  --w-caption-size:    11px;
  --w-caption-lh:      1.5;

  --w-quote-font:      var(--w-font-serif);
  --w-quote-style:     italic;
  --w-quote-weight:    300;
  --w-quote-size:      17px;
  --w-quote-color:     var(--w-bark);

  /* ---------- SPACING ---------- */
  --w-space-xs:   4px;
  --w-space-sm:   8px;
  --w-space-md:   12px;
  --w-space-base: 16px;
  --w-space-lg:   24px;
  --w-space-xl:   40px;
  --w-space-2xl:  64px;
  --w-space-3xl:  96px;

  /* ---------- RADII ---------- */
  /* Weleda runs SHARP-to-soft: buttons are 0 / 2 px, surfaces 10–14 px. */
  --w-radius-none:  0;        /* buttons */
  --w-radius-xs:    2px;      /* inputs, badges */
  --w-radius-sm:    6px;      /* tags */
  --w-radius-md:    4px;      /* cards — единый лёгкий радиус (см. prototype-tokens.css) */
  --w-radius-lg:    14px;     /* large blocks */
  --w-radius-pill:  999px;    /* pills */

  /* ---------- BORDERS ---------- */
  --w-border-hairline: 0.5px solid var(--w-border);
  --w-border-thin:     1px solid var(--w-border-mid);

  /* ---------- SHADOWS ---------- */
  /* Weleda is FLAT — shadows are minimal, used sparingly. */
  --w-shadow-none:  none;
  --w-shadow-sm:    0 1px 2px rgba(30, 58, 42, 0.04);
  --w-shadow-md:    0 4px 16px rgba(30, 58, 42, 0.06);
  --w-shadow-lg:    0 12px 40px rgba(30, 58, 42, 0.10);

  /* ---------- MOTION ---------- */
  --w-ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
  --w-duration-fast: 120ms;
  --w-duration:      200ms;
  --w-duration-slow: 360ms;
}

/* ============================================================
   SEMANTIC ELEMENT STYLES
   ============================================================ */

html, body {
  font-family: var(--w-font-sans);
  background: var(--w-bg);
  color: var(--w-ink);
  font-size: var(--w-body-size);
  line-height: var(--w-body-lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, .w-h1 {
  font-family: var(--w-h1-font);
  font-weight: var(--w-h1-weight);
  font-size: var(--w-h1-size);
  line-height: var(--w-h1-lh);
  letter-spacing: var(--w-h1-ls);
  color: var(--w-ink);
}

h2, .w-h2 {
  font-family: var(--w-h2-font);
  font-weight: var(--w-h2-weight);
  font-size: var(--w-h2-size);
  line-height: var(--w-h2-lh);
  color: var(--w-ink);
}

h3, .w-h3 {
  font-family: var(--w-h3-font);
  font-weight: var(--w-h3-weight);
  font-size: var(--w-h3-size);
  line-height: var(--w-h3-lh);
  color: var(--w-green-mid);
}

.w-display {
  font-family: var(--w-display-font);
  font-weight: var(--w-display-weight);
  font-size: var(--w-display-size);
  line-height: var(--w-display-lh);
  letter-spacing: var(--w-display-ls);
}

p, .w-body {
  font-family: var(--w-body-font);
  font-size: var(--w-body-size);
  line-height: var(--w-body-lh);
  color: var(--w-ink-muted);
}

.w-body-lg {
  font-size: var(--w-body-lg-size);
  line-height: var(--w-body-lh);
}

.w-label {
  font-family: var(--w-label-font);
  font-weight: var(--w-label-weight);
  font-size: var(--w-label-size);
  letter-spacing: var(--w-label-ls);
  text-transform: uppercase;
  color: var(--w-ink-faint);
}

.w-caption {
  font-size: var(--w-caption-size);
  line-height: var(--w-caption-lh);
  color: var(--w-ink-muted);
}

.w-quote {
  font-family: var(--w-quote-font);
  font-style: var(--w-quote-style);
  font-weight: var(--w-quote-weight);
  font-size: var(--w-quote-size);
  color: var(--w-quote-color);
  line-height: 1.5;
}

code, .w-mono {
  font-family: var(--w-font-mono);
  font-size: 12px;
  color: var(--w-ink-muted);
}


* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; }
body {
  background: var(--w-bg);
  color: var(--w-ink);
  font-family: var(--w-font-sans);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* ===== Container ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
/* ===== Announcement bar (carousel) ===== */
/* ===== Header ===== */
/* ===== Buttons ===== */
.w-btn {
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background var(--w-duration) var(--w-ease), color var(--w-duration) var(--w-ease), border-color var(--w-duration) var(--w-ease);
  white-space: nowrap;
}
.w-btn-primary { background: var(--w-green-deep); color: var(--w-cream); }
.w-btn-primary:hover { background: var(--w-green-mid); }
.w-btn-cream { background: var(--w-cream); color: var(--w-green-deep); }
.w-btn-cream:hover { background: #fff; }
.w-btn-outline { background: transparent; color: var(--w-green-deep); border: 1px solid var(--w-green-deep); }
.w-btn-outline:hover { background: var(--w-green-deep); color: var(--w-cream); }
.w-btn-outline-cream { background: transparent; color: var(--w-cream); border: 1px solid var(--w-cream); }
.w-btn-outline-cream:hover { background: var(--w-cream); color: var(--w-green-deep); }
.w-btn-ghost {
  background: transparent;
  color: var(--w-green-deep);
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  border-bottom: 1px solid var(--w-green-mid);
}
.w-btn-ghost:hover { color: var(--w-green-mid); }
.w-btn-block { display: flex; width: 100%; justify-content: center; }
.w-btn .w-btn-ic { display: inline-flex; align-items: center; }

/* ===== Eyebrows / section heads ===== */
.eyebrow {
  font-family: var(--w-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--w-green-herb);
}
.eyebrow-light { color: var(--w-green-pale); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding: 80px 0 28px;
}
.section-head .lead h2 {
  font-family: var(--w-font-serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 8px 0 0;
  color: var(--w-ink);
}
.section-head .nav-arrows { display: flex; gap: 6px; }
.section-head .arrow {
  border: 0.5px solid var(--w-border-mid);
  background: transparent;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--w-ink-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--w-duration) var(--w-ease);
}
.section-head .arrow:hover { color: var(--w-ink); border-color: var(--w-ink); }
.section-head .arrow:disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== Placeholders ===== */
.placeholder {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.placeholder-stripes {
  position: absolute; inset: 0;
  pointer-events: none;
}
.placeholder-label {
  position: relative; z-index: 1;
  padding: 12px 14px;
  font-family: var(--w-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.66);
  border: 0.5px dashed currentColor;
  border-radius: 2px;
  margin: 14px;
  max-width: 320px;
  color: inherit;
}

/* ===== Hero ===== */
.w-hero {
  position: relative;
  background: var(--w-bg);
}
.w-hero .stage {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 0;
  margin: 0 32px;
}
.w-hero .slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--w-ease);
}
.w-hero .slide.is-active { opacity: 1; pointer-events: auto; }
.w-hero .slide .media {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
}
.w-hero .slide .media .placeholder {
  align-items: flex-end; justify-content: flex-end;
}
.w-hero .slide .media .tint {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.w-hero .slide .copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  padding: 56px 56px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.w-hero .slide.tone-dark .copy { color: var(--w-cream); }
.w-hero .slide.tone-light .copy { color: var(--w-green-deep); }
.w-hero .slide .copy .eyebrow {
  margin-bottom: 28px;
  letter-spacing: 0.22em;
}
.w-hero .slide.tone-dark .eyebrow { color: var(--w-green-pale); }
.w-hero .slide .title {
  font-family: var(--w-font-serif);
  font-weight: 300;
  font-size: 138px;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
  display: flex; align-items: baseline; gap: 6px;
}
.w-hero .slide .title .num {
  font-weight: 400;
  font-size: 1em;
  font-family: var(--w-font-serif);
  letter-spacing: -0.01em;
}
.w-hero .slide .title .suf {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.02em;
}
.w-hero .slide .title.short { font-size: 88px; line-height: 1.02; }
.w-hero .slide .title.short .suf { font-size: 0.6em; }
.w-hero .slide .title em { font-style: italic; }
.w-hero .slide .subtitle {
  font-family: var(--w-font-sans);
  font-size: 16px;
  line-height: 1.6;
  margin: 28px 0 12px;
  max-width: 440px;
}
.w-hero .slide .foot {
  font-family: var(--w-font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
  opacity: 0.7;
}
.w-hero .slide .code-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--w-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.w-hero .slide .code-pill .copy-ic { opacity: 0.7; }
.w-hero .slide .cta-row { display: flex; gap: 12px; align-items: center; }

/* Hero accent number */
.w-hero .slide .title.accent .num {
  color: var(--accent, var(--w-series-birch));
  text-shadow: none;
}

/* Hero pagination */
.w-hero .pager {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 24px 0 12px;
}
.w-hero .pager .num {
  font-family: var(--w-font-sans);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--w-ink-faint);
  cursor: pointer;
  padding: 6px 4px;
  background: transparent;
  border: 0;
}
.w-hero .pager .num.active {
  color: var(--w-green-deep);
  font-weight: 600;
  position: relative;
}
.w-hero .pager .num.active::after {
  content: ""; position: absolute; left: 30%; right: 30%; bottom: -2px;
  height: 1.5px; background: var(--w-green-deep);
}
.w-hero .pager .ctrl {
  background: transparent; border: 0; color: var(--w-ink-faint);
  cursor: pointer; padding: 4px;
}
.w-hero .pager .ctrl:hover { color: var(--w-ink); }

/* ===== Brand rail ===== */
.brand-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 24px;
}
.brand-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border);
  display: flex; flex-direction: column;
  transition: transform var(--w-duration) var(--w-ease), box-shadow var(--w-duration) var(--w-ease);
}
.brand-card:hover { transform: translateY(-2px); box-shadow: var(--w-shadow-md); }
.brand-card .top {
  position: relative;
  height: 240px;
}
.brand-card .top .placeholder { align-items: flex-end; justify-content: flex-end; }
.brand-card .top .tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.85) 100%);
  pointer-events: none;
}
.brand-card .body {
  padding: 18px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.brand-card .tag {
  font-family: var(--w-font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w-green-herb);
}
.brand-card .ttl {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  color: var(--w-ink);
  margin: 0;
}
.brand-card .sub {
  font-family: var(--w-font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--w-ink-muted);
  margin: 0;
}
.brand-card .more {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-green-deep);
}
.brand-card .more::after {
  content: ""; height: 1px; width: 28px; background: currentColor; opacity: 0.5;
  transition: width var(--w-duration) var(--w-ease);
}
.brand-card:hover .more::after { width: 44px; opacity: 1; }

/* ===== Product rail / grid ===== */
.product-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 12px;
}
.product-card {
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border);
  border-radius: var(--w-radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform var(--w-duration) var(--w-ease), box-shadow var(--w-duration) var(--w-ease);
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--w-shadow-md); }
.product-card .badge-new {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--w-font-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-green-deep);
  background: rgba(255, 255, 255, 0.94);
  padding: 5px 9px;
  border: 0.5px solid var(--w-green-mid);
  border-radius: 2px;
  z-index: 2;
}
.product-card .wish {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--w-ink-muted);
  z-index: 2;
}
.product-card .wish:hover, .product-card .wish.on { color: #B14040; }
.product-card .bottle {
  height: 320px;
  background: var(--w-bg-warm);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .bottle .obj {
  width: 116px; min-height: 240px;
  border-radius: 14px 14px 18px 18px;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  box-shadow: inset 0 -28px 60px rgba(0,0,0,0.15), 0 18px 40px rgba(30,58,42,0.18);
}
.product-card .bottle .cap {
  width: 78%;
  height: 38px;
  border-radius: 22px 22px 4px 4px;
  margin-top: 16px;
  position: relative;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,0.25), 0 4px 10px rgba(0,0,0,0.12);
}
.product-card .bottle .cap::after {
  content: ""; position: absolute; left: 18%; right: 18%; top: 0; height: 4px;
  background: rgba(0,0,0,0.15);
}
.product-card .bottle .face {
  flex: 1; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px 10px 14px;
  text-align: center;
  font-family: var(--w-font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.05;
  white-space: pre-line;
}
.product-card .bottle .face .pretitle {
  font-family: var(--w-font-sans);
  font-weight: 500;
  font-size: 7.5px;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
  opacity: 0.75;
}
.product-card .bottle .face .meta {
  font-family: var(--w-font-sans);
  font-weight: 500;
  font-size: 6.5px;
  letter-spacing: 0.20em;
  margin-top: 10px;
  opacity: 0.55;
}
.product-card .info {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-card .rating {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--w-green-mid);
  font-family: var(--w-font-sans);
  font-size: 11.5px;
}
.product-card .rating .rating-num { color: var(--w-ink); font-weight: 500; }
.product-card .rating .rating-rev { color: var(--w-ink-faint); }
.product-card .name {
  font-family: var(--w-font-sans);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--w-ink);
  min-height: 38px;
}
.product-card .vol-line {
  font-family: var(--w-font-sans);
  font-size: 11px;
  color: var(--w-ink-faint);
}
.product-card .price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 4px;
}
.product-card .price {
  font-family: var(--w-font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--w-ink);
}
.product-card .ppl {
  font-family: var(--w-font-sans);
  font-size: 10.5px;
  color: var(--w-ink-faint);
}
.product-card .buy {
  margin: auto 0 0;
  width: 100%;
  background: var(--w-green-deep);
  color: var(--w-cream);
  padding: 14px 16px;
  font-family: var(--w-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background var(--w-duration) var(--w-ease);
}
.product-card .buy:hover { background: var(--w-green-mid); }

/* ===== Commitments ===== */
.commit {
  padding: 88px 0;
  background: var(--w-bg-card);
}
.commit .head {
  max-width: 520px;
  margin-bottom: 36px;
}
.commit .head h3 {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--w-ink);
}
.commit .head p {
  font-family: var(--w-font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--w-ink-muted);
  margin: 0 0 18px;
}
.commit .head a.more {
  font-family: var(--w-font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-green-mid);
  border-bottom: 1px solid var(--w-green-mid);
  padding-bottom: 4px;
  cursor: pointer;
}
.commit .list { display: flex; flex-direction: column; }
.commit .item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 0.5px solid var(--w-border);
}
.commit .item:last-child { border-bottom: 0.5px solid var(--w-border); }
.commit .item .ic {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--w-green-mid);
}
.commit .item .label {
  font-family: var(--w-font-sans);
  font-size: 15px;
  color: var(--w-ink);
  letter-spacing: 0.005em;
  line-height: 1.5;
}
.commit .item .label .note {
  display: block;
  font-size: 12px;
  color: var(--w-ink-faint);
  font-family: var(--w-font-sans);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.commit .item .verify {
  font-family: var(--w-font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-green-mid);
}

/* ===== Stories / editorial ===== */
.stories { padding: 88px 0 96px; background: var(--w-bg); }
.stories .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.stories .feature, .stories .small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border);
  min-height: 360px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform var(--w-duration) var(--w-ease), box-shadow var(--w-duration) var(--w-ease);
}
.stories .feature:hover, .stories .small:hover {
  transform: translateY(-2px); box-shadow: var(--w-shadow-md);
}
.stories .feature .img { height: 220px; }
.stories .feature .body, .stories .small .body {
  padding: 22px 26px 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.stories .feature .tag, .stories .small .tag {
  font-family: var(--w-font-sans);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--w-green-herb);
}
.stories .feature .ttl {
  font-family: var(--w-font-serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--w-ink);
}
.stories .small .ttl {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--w-ink);
  margin: 0;
}
.stories .feature .read, .stories .small .read {
  margin-top: auto;
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w-ink-faint);
}

.stories .small {
  background: var(--w-bg-warm);
}
.stories .small .quote {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.45;
  color: var(--w-bark);
  margin: 0 0 12px;
}

/* ===== SEO block ===== */
.seo {
  background: var(--w-bg-warm);
  padding: 80px 0;
}
.seo .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.seo h3 {
  font-family: var(--w-font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--w-ink);
}
.seo .lede {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--w-bark);
  line-height: 1.55;
  margin: 16px 0 0;
}
.seo p {
  font-family: var(--w-font-sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--w-ink-muted);
  margin: 0 0 14px;
}
.seo h4 {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--w-ink);
  margin: 22px 0 8px;
}
.seo b { color: var(--w-ink); font-weight: 500; }
.seo .kw {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 18px;
}
.seo .kw span {
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border);
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--w-ink-muted);
}

/* ===== Newsletter ===== */
/* ===== Footer ===== */
/* ===== Tweak panel offsets (avoid covering CTA) ===== */
.tweaks-panel { font-family: var(--w-font-sans) !important; }

/* ===== Misc ===== */
.help-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  background: var(--w-green-deep);
  color: var(--w-cream);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--w-shadow-md);
  display: inline-flex; gap: 10px; align-items: center;
  z-index: 25;
}
.help-fab:hover { background: var(--w-green-mid); }

/* responsive — tweak common breakpoints (light cleanup, not mobile-spec) */
@media (max-width: 1100px) {
  .brand-rail { grid-template-columns: repeat(3, 1fr); }
  .product-rail { grid-template-columns: repeat(3, 1fr); }
  .stories .row { grid-template-columns: 1fr 1fr; }
  .seo .grid { grid-template-columns: 1fr; }
  }
@media (max-width: 720px) {
  .w-hero .stage { height: 480px; margin: 0 16px; }
  .w-hero .slide .copy { padding: 28px; }
  .w-hero .slide .title { font-size: 80px; }
  .brand-rail { grid-template-columns: 1fr 1fr; }
  .product-rail { grid-template-columns: 1fr 1fr; }
  }


/* Weleda RU — Product Detail Page (PDP) styles. Reuses design-system tokens. */

/* ===== Breadcrumb ===== */
.pdp-crumb {
  border-bottom: 0.5px solid var(--w-border);
  background: var(--w-bg);
}
.pdp-crumb .row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 16px 0;
  font-family: var(--w-font-sans);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--w-ink-faint);
}
.pdp-crumb a { color: var(--w-ink-muted); text-decoration: none; }
.pdp-crumb a:hover { color: var(--w-green-mid); }
.pdp-crumb .sep { opacity: 0.5; }
.pdp-crumb .cur { color: var(--w-ink); }

/* ===== Top: gallery + buybox ===== */
.pdp-top { padding: 40px 0 72px; }
.pdp-top .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.pdp-gallery .main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--w-bg-warm);
  border: 0.5px solid var(--w-border);
  border-radius: var(--w-radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pdp-gallery .main .bottle-xl {
  width: 168px; min-height: 360px;
  border-radius: 18px 18px 24px 24px;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  box-shadow: inset 0 -36px 80px rgba(0,0,0,0.15), 0 28px 60px rgba(30,58,42,0.20);
}
.pdp-gallery .main .bottle-xl .cap {
  width: 76%; height: 52px;
  border-radius: 26px 26px 5px 5px;
  margin-top: 22px;
  box-shadow: inset 0 -8px 18px rgba(0,0,0,0.25), 0 5px 12px rgba(0,0,0,0.12);
}
.pdp-gallery .main .bottle-xl .face {
  flex: 1; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 30px 14px 22px; text-align: center;
  font-family: var(--w-font-sans); font-weight: 700;
  letter-spacing: 0.04em; line-height: 1.05;
}
.pdp-gallery .main .bottle-xl .face .pre {
  font-weight: 500; font-size: 10px; letter-spacing: 0.30em; opacity: 0.7; margin-bottom: 12px;
}
.pdp-gallery .main .bottle-xl .face .big { font-size: 30px; letter-spacing: 0.06em; }
.pdp-gallery .main .bottle-xl .face .meta {
  font-weight: 500; font-size: 9px; letter-spacing: 0.22em; opacity: 0.6; margin-top: 14px;
}
.pdp-gallery .main .stamp {
  position: absolute; left: 22px; top: 22px;
  font-family: var(--w-font-mono); font-size: 9.5px; letter-spacing: 0.06em;
  color: var(--w-ink-faint);
  background: rgba(255,255,255,0.7);
  border: 0.5px dashed var(--w-border-mid);
  padding: 6px 10px; border-radius: 2px;
}
.pdp-gallery .thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px;
}
.pdp-gallery .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0.5px solid var(--w-border);
  border-radius: var(--w-radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--w-bg-warm);
  transition: border-color var(--w-duration) var(--w-ease);
}
.pdp-gallery .thumb.active { border-color: var(--w-green-deep); }
.pdp-gallery .thumb:hover { border-color: var(--w-green-mid); }
.pdp-gallery .thumb .placeholder { align-items: flex-end; justify-content: flex-start; }
.pdp-gallery .thumb .placeholder-label {
  font-size: 7px; margin: 6px; padding: 5px 6px; max-width: none; line-height: 1.3;
}

/* Buybox */
.pdp-buy .series-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--w-font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--w-green-herb);
}
.pdp-buy .series-dot { width: 7px; height: 7px; border-radius: 50%; }
.pdp-buy .rating-line {
  display: inline-flex; align-items: center; gap: 8px; margin: 18px 0 12px;
  color: var(--w-green-mid); font-family: var(--w-font-sans); font-size: 13px;
}
.pdp-buy .rating-line .num { color: var(--w-ink); font-weight: 600; }
.pdp-buy .rating-line .cnt { color: var(--w-ink-faint); }
.pdp-buy .rating-line a { color: var(--w-ink-faint); text-decoration: underline; text-underline-offset: 3px; }
.pdp-buy h1 {
  font-family: var(--w-font-serif); font-weight: 300;
  font-size: 46px; line-height: 1.06; letter-spacing: 0.01em;
  margin: 6px 0 0; color: var(--w-ink);
}
.pdp-buy .tagline {
  font-family: var(--w-font-serif); font-style: italic; font-weight: 300;
  font-size: 21px; color: var(--w-bark); margin: 14px 0 0;
}
.pdp-buy .short {
  font-family: var(--w-font-sans); font-size: 15px; line-height: 1.7;
  color: var(--w-ink-muted); margin: 20px 0 0; max-width: 460px;
}
.pdp-buy .pricebar {
  display: flex; align-items: baseline; gap: 16px;
  margin: 28px 0 0; padding: 24px 0 0; border-top: 0.5px solid var(--w-border);
}
.pdp-buy .volbar {
  margin: 28px 0 0; padding: 22px 0 0; border-top: 0.5px solid var(--w-border);
}
.pdp-buy .volbar .vol {
  font-family: var(--w-font-sans); font-size: 12px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--w-ink-muted);
}
.pdp-buy .spec {
  margin: 32px 0 0; padding: 0;
}
.pdp-buy .spec .spec-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 15px 0; border-top: 0.5px solid var(--w-border);
}
.pdp-buy .spec .spec-row:last-child { border-bottom: 0.5px solid var(--w-border); }
.pdp-buy .spec dt {
  font-family: var(--w-font-sans); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-ink-faint); margin: 0;
}
.pdp-buy .spec dd {
  font-family: var(--w-font-sans); font-size: 14px; color: var(--w-ink);
  margin: 0; text-align: right;
}
.pdp-buy .buy-cta {
  margin: 32px 0 0;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--w-green-deep); color: var(--w-cream);
  text-decoration: none; cursor: pointer;
  padding: 18px 34px;
  font-family: var(--w-font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background var(--w-duration) var(--w-ease);
}
.pdp-buy .buy-cta:hover { background: var(--w-green-mid); }

/* Related card buy button rendered as <a> */
.pdp-related .product-card .buy {
  display: block; text-decoration: none; text-align: center;
}
.pdp-buy .pricebar .price {
  font-family: var(--w-font-sans); font-weight: 600; font-size: 30px; color: var(--w-ink);
  letter-spacing: 0.01em;
}
.pdp-buy .pricebar .vol {
  font-family: var(--w-font-sans); font-size: 13px; color: var(--w-ink-muted);
}
.pdp-buy .pricebar .ppl { font-family: var(--w-font-sans); font-size: 12px; color: var(--w-ink-faint); }
.pdp-buy .pricebar .vat {
  margin-left: auto; font-family: var(--w-font-sans); font-size: 11px; color: var(--w-ink-faint);
  letter-spacing: 0.04em;
}

/* qty + cart row */
.pdp-buy .cart-row { display: flex; gap: 14px; align-items: stretch; margin: 22px 0 0; }
.pdp-buy .stepper {
  display: flex; align-items: center;
  border: 1px solid var(--w-ink); border-radius: 0;
}
.pdp-buy .stepper button {
  width: 48px; height: 100%; min-height: 52px;
  background: transparent; border: 0; cursor: pointer; color: var(--w-ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--w-duration) var(--w-ease);
}
.pdp-buy .stepper button:hover { background: var(--w-bg-warm); }
.pdp-buy .stepper .val {
  min-width: 40px; text-align: center;
  font-family: var(--w-font-sans); font-size: 15px; font-weight: 500;
  font-variant-numeric: tabular-nums; color: var(--w-ink);
}
.pdp-buy .add {
  flex: 1; background: var(--w-green-deep); color: var(--w-cream);
  border: 0; cursor: pointer;
  font-family: var(--w-font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background var(--w-duration) var(--w-ease);
}
.pdp-buy .add:hover { background: var(--w-green-mid); }
.pdp-buy .add.added { background: var(--w-green-mid); }
.pdp-buy .wishline {
  margin: 14px 0 0; display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0; cursor: pointer; padding: 6px 0;
  font-family: var(--w-font-sans); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--w-ink-muted);
}
.pdp-buy .wishline:hover { color: #B14040; }
.pdp-buy .wishline.on { color: #B14040; }

/* delivery micro-benefits */
.pdp-buy .delivery {
  margin: 28px 0 0; padding: 22px 0 0; border-top: 0.5px solid var(--w-border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px;
}
.pdp-buy .delivery .d {
  display: flex; gap: 12px; align-items: flex-start;
}
.pdp-buy .delivery .d .ic { color: var(--w-green-mid); margin-top: 1px; flex-shrink: 0; }
.pdp-buy .delivery .d .t {
  display: block;
  font-family: var(--w-font-sans); font-size: 12.5px; font-weight: 500; color: var(--w-ink);
}
.pdp-buy .delivery .d .n {
  display: block;
  font-family: var(--w-font-sans); font-size: 11px; color: var(--w-ink-faint); margin-top: 1px;
}

/* certifications */
.pdp-buy .certs { display: flex; gap: 10px; margin: 24px 0 0; flex-wrap: wrap; }
.pdp-buy .certs .c {
  font-family: var(--w-font-sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 13px; border: 0.5px solid var(--w-green-mid); color: var(--w-green-mid);
  border-radius: var(--w-radius-xs);
  display: inline-flex; align-items: center; gap: 7px;
}
.pdp-buy .certs .c .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--w-green-mid); }

/* ===== Anchor tabs (sticky) ===== */
.pdp-tabs {
  position: sticky; top: 0; z-index: 20;
  background: rgba(253, 252, 251, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 0.5px solid var(--w-border);
  border-bottom: 0.5px solid var(--w-border);
}
.pdp-tabs .row { display: flex; gap: 38px; overflow-x: auto; }
.pdp-tabs a {
  flex-shrink: 0;
  padding: 18px 0;
  font-family: var(--w-font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w-ink-muted); text-decoration: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color var(--w-duration) var(--w-ease);
}
.pdp-tabs a:hover { color: var(--w-ink); }
.pdp-tabs a.active { color: var(--w-green-deep); border-bottom-color: var(--w-green-deep); }

/* ===== Section scaffolding ===== */
.pdp-section { padding: 84px 0; }
.pdp-section .eyebrow { margin-bottom: 14px; display: block; }
.pdp-section h2.title {
  font-family: var(--w-font-serif); font-weight: 300; font-size: 34px;
  line-height: 1.15; letter-spacing: 0.01em; margin: 0; color: var(--w-ink);
}

/* ===== Efficacy band (light) ===== */
.pdp-efficacy { background: var(--w-bg-warm); color: var(--w-ink); padding: 88px 0; }
.pdp-efficacy .head { max-width: 560px; margin-bottom: 48px; }
.pdp-efficacy .head .eyebrow { color: var(--w-green-herb); }
.pdp-efficacy .head h2 {
  font-family: var(--w-font-serif); font-weight: 300; font-size: 32px;
  line-height: 1.2; color: var(--w-ink); margin: 12px 0 0;
}
.pdp-efficacy .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pdp-efficacy .stat {
  padding: 8px 36px; border-left: 0.5px solid var(--w-border);
}
.pdp-efficacy .stat:first-child { padding-left: 0; border-left: 0; }
.pdp-efficacy .stat .v {
  font-family: var(--w-font-serif); font-weight: 300; font-size: 76px; line-height: 1;
  color: var(--w-green-mid); letter-spacing: -0.01em;
}
.pdp-efficacy .stat .t {
  font-family: var(--w-font-sans); font-size: 15px; line-height: 1.5;
  color: var(--w-ink); margin: 18px 0 0;
}
.pdp-efficacy .stat .n {
  font-family: var(--w-font-sans); font-size: 11px; line-height: 1.5;
  color: var(--w-ink-faint); margin: 12px 0 0;
}

/* ===== Description ===== */
.pdp-desc { background: var(--w-bg); }
.pdp-desc .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pdp-desc .lede {
  font-family: var(--w-font-sans); font-size: 16px; line-height: 1.85; color: var(--w-ink-muted);
  margin: 0;
}
.pdp-desc .benefits { list-style: none; margin: 0; padding: 0; }
.pdp-desc .benefits li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 0.5px solid var(--w-border);
  font-family: var(--w-font-sans); font-size: 15px; line-height: 1.5; color: var(--w-ink);
}
.pdp-desc .benefits li:last-child { border-bottom: 0.5px solid var(--w-border); }
.pdp-desc .benefits li .ic { color: var(--w-green-mid); flex-shrink: 0; margin-top: 1px; }

/* ===== Ingredients ===== */
.pdp-ingredients { background: var(--w-bg-card); }
.pdp-ingredients .keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 44px 0 0; }
.pdp-ingredients .key {
  border: 0.5px solid var(--w-border); border-radius: var(--w-radius-md);
  overflow: hidden; background: var(--w-bg);
  display: flex; flex-direction: column;
}
.pdp-ingredients .key .ph { height: 180px; position: relative; }
.pdp-ingredients .key .ph .placeholder { align-items: flex-end; justify-content: flex-start; }
.pdp-ingredients .key .b { padding: 22px 24px 26px; }
.pdp-ingredients .key .org {
  font-family: var(--w-font-sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--w-green-herb);
}
.pdp-ingredients .key h3 {
  font-family: var(--w-font-serif); font-weight: 400; font-size: 21px; line-height: 1.2;
  margin: 8px 0 2px; color: var(--w-ink);
}
.pdp-ingredients .key .inci {
  font-family: var(--w-font-mono); font-size: 11px; color: var(--w-ink-faint); margin: 0 0 12px;
}
.pdp-ingredients .key p {
  font-family: var(--w-font-sans); font-size: 13.5px; line-height: 1.65; color: var(--w-ink-muted); margin: 0;
}

.pdp-ingredients .full {
  margin: 32px 0 0; border-top: 0.5px solid var(--w-border);
}
.pdp-ingredients .full summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--w-font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--w-ink);
}
.pdp-ingredients .full summary::-webkit-details-marker { display: none; }
.pdp-ingredients .full summary .chev { transition: transform var(--w-duration) var(--w-ease); color: var(--w-green-mid); }
.pdp-ingredients .full[open] summary .chev { transform: rotate(180deg); }
.pdp-ingredients .inci-table {
  width: 100%; border-collapse: collapse; margin: 0 0 24px;
}
.pdp-ingredients .inci-table tr { border-top: 0.5px solid var(--w-border); }
.pdp-ingredients .inci-table td {
  padding: 12px 16px 12px 0;
  font-family: var(--w-font-sans); font-size: 13px; line-height: 1.5; color: var(--w-ink-muted);
  vertical-align: top;
}
.pdp-ingredients .inci-table td:first-child { color: var(--w-ink); width: 48%; }
.pdp-ingredients .inci-table td.org { color: var(--w-green-mid); font-weight: 500; }
.pdp-ingredients .inci-note {
  font-family: var(--w-font-sans); font-size: 11.5px; line-height: 1.7; color: var(--w-ink-faint);
  margin: 4px 0 0; max-width: 720px;
}

/* ===== Application ===== */
.pdp-application { background: var(--w-bg-warm); }
.pdp-application .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.pdp-application p {
  font-family: var(--w-font-sans); font-size: 16px; line-height: 1.85; color: var(--w-ink-muted); margin: 0;
}
.pdp-application .steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.pdp-application .steps li {
  position: relative; padding: 0 0 26px 56px; counter-increment: step;
  font-family: var(--w-font-sans); font-size: 15px; line-height: 1.55; color: var(--w-ink);
}
.pdp-application .steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  font-family: var(--w-font-serif); font-weight: 300; font-size: 24px; color: var(--w-green-herb);
}
.pdp-application .steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 13px; top: 30px; bottom: 8px; width: 1px;
  background: var(--w-sand);
}

/* ===== Reviews ===== */
.pdp-reviews { background: var(--w-bg); }
.pdp-reviews .grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 64px; align-items: start; }
.pdp-reviews .summary { position: sticky; top: 132px; }
.pdp-reviews .summary .big {
  font-family: var(--w-font-serif); font-weight: 300; font-size: 72px; line-height: 1; color: var(--w-ink);
}
.pdp-reviews .summary .stars { display: flex; gap: 3px; color: var(--w-green-mid); margin: 12px 0 6px; }
.pdp-reviews .summary .cnt { font-family: var(--w-font-sans); font-size: 13px; color: var(--w-ink-faint); }
.pdp-reviews .bars { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 8px; }
.pdp-reviews .bar { display: flex; align-items: center; gap: 12px; }
.pdp-reviews .bar .lbl {
  font-family: var(--w-font-sans); font-size: 11px; color: var(--w-ink-muted);
  width: 14px; text-align: right; font-variant-numeric: tabular-nums;
}
.pdp-reviews .bar .track { flex: 1; height: 5px; background: var(--w-border); border-radius: 999px; overflow: hidden; }
.pdp-reviews .bar .fill { height: 100%; background: var(--w-green-mid); border-radius: 999px; }
.pdp-reviews .bar .c {
  font-family: var(--w-font-sans); font-size: 11px; color: var(--w-ink-faint);
  width: 18px; text-align: right; font-variant-numeric: tabular-nums;
}
.pdp-reviews .summary .write {
  width: 100%; justify-content: center;
}
.pdp-reviews .list { display: flex; flex-direction: column; }
.pdp-reviews .rev { padding: 26px 0; border-top: 0.5px solid var(--w-border); }
.pdp-reviews .rev:first-child { border-top: 0; padding-top: 0; }
.pdp-reviews .rev .rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pdp-reviews .rev .rev-stars { display: flex; gap: 2px; color: var(--w-green-mid); }
.pdp-reviews .rev .verified {
  font-family: var(--w-font-sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--w-green-herb);
  display: inline-flex; align-items: center; gap: 5px;
}
.pdp-reviews .rev h4 {
  font-family: var(--w-font-serif); font-weight: 400; font-size: 19px; color: var(--w-ink); margin: 0 0 8px;
}
.pdp-reviews .rev p {
  font-family: var(--w-font-sans); font-size: 14px; line-height: 1.7; color: var(--w-ink-muted); margin: 0 0 10px;
}
.pdp-reviews .rev .author {
  font-family: var(--w-font-sans); font-size: 12px; color: var(--w-ink-faint); letter-spacing: 0.04em;
}

/* ===== Related ===== */
.pdp-related { background: var(--w-bg-card); padding-bottom: 88px; }

/* ===== Toast ===== */
.pdp-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(120%);
  background: var(--w-green-deep); color: var(--w-cream);
  padding: 16px 24px; border-radius: var(--w-radius-xs);
  font-family: var(--w-font-sans); font-size: 12px; letter-spacing: 0.06em;
  box-shadow: var(--w-shadow-lg); z-index: 40;
  display: flex; align-items: center; gap: 12px;
  transition: transform 320ms var(--w-ease); opacity: 0;
}
.pdp-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .pdp-efficacy .stats { grid-template-columns: 1fr; gap: 36px; }
  .pdp-efficacy .stat { padding: 0; border-left: 0; border-top: 0.5px solid var(--w-border); padding-top: 28px; }
  .pdp-efficacy .stat:first-child { border-top: 0; padding-top: 0; }
  .pdp-desc .grid, .pdp-application .grid, .pdp-reviews .grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-ingredients .keys { grid-template-columns: 1fr; }
  .pdp-reviews .summary { position: static; }
}
@media (max-width: 760px) {
  .pdp-top .grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .pdp-gallery { width: 100%; max-width: 460px; }
  .pdp-buy { width: 100%; max-width: 460px; }
}
@media (max-width: 720px) {
  .pdp-buy h1 { font-size: 34px; }
  .pdp-gallery .thumbs { grid-template-columns: repeat(4, 1fr); }
  .pdp-section { padding: 56px 0; }
}


/* Weleda RU — Category page (Уход за лицом). Reuses design-system tokens + product.css patterns. */

/* ===== Category hero (text left, photo right; centers when no photo) ===== */
.cat-hero { background: var(--w-bg); padding: 56px 0 24px; }
.cat-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 72px;
}
.cat-hero .copy {
  max-width: 460px;
}
.cat-hero .copy h1 {
  font-family: var(--w-font-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-ink);
  margin: 0;
}
.cat-hero .tagline {
  font-family: var(--w-font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--w-ink-muted);
  margin: 24px 0 0;
}
.cat-hero .media {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.cat-hero .media .placeholder { align-items: flex-end; justify-content: flex-end; }

/* No photo — text centers */
.cat-hero.no-banner { padding: 80px 0 40px; }
.cat-hero.no-banner .hero-grid { grid-template-columns: 1fr; }
.cat-hero.no-banner .copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ===== Catalog control panel ===== */
.cat-controls {
  position: sticky; top: 0; z-index: 18;
  background: rgba(253, 252, 251, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 0.5px solid var(--w-border);
  border-bottom: 0.5px solid var(--w-border);
}
.cat-controls .row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 0;
}
.cat-controls .count {
  font-family: var(--w-font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--w-ink);
}
.cat-controls .count em {
  font-style: normal;
  color: var(--w-green-mid);
}

/* Sort dropdown */
.cat-sort { position: relative; }
.cat-sort .trigger {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px 0;
  font-family: var(--w-font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w-ink);
}
.cat-sort .trigger .lbl { color: var(--w-ink-faint); }
.cat-sort .trigger .chev { color: var(--w-green-mid); transition: transform var(--w-duration) var(--w-ease); }
.cat-sort .trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.cat-sort .menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 30;
  min-width: 240px;
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border-mid);
  border-radius: var(--w-radius-xs);
  box-shadow: var(--w-shadow-md);
  padding: 6px;
}
.cat-sort .menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer;
  padding: 11px 12px;
  font-family: var(--w-font-sans);
  font-size: 13px; color: var(--w-ink-muted);
  transition: background var(--w-duration) var(--w-ease), color var(--w-duration) var(--w-ease);
}
.cat-sort .menu button:hover { background: var(--w-bg-warm); color: var(--w-ink); }
.cat-sort .menu button.active { color: var(--w-green-deep); font-weight: 500; }
.cat-sort .menu button .tick { color: var(--w-green-mid); display: inline-flex; }

/* ===== Product grid ===== */
.cat-grid {
  background: var(--w-bg);
  padding: 40px 0 16px;
}
.cat-grid .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Category card: image, name, desc, rating, Купить на OZON */
.cat-card .info { gap: 8px; flex: 1 1 auto; }
.cat-card .info .name { min-height: 0; }
.cat-card .desc {
  font-family: var(--w-font-sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--w-ink-muted);
  margin: 0;
}
.cat-card .info .rating { margin-top: 2px; }
.cat-card .badge-soft {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--w-font-sans);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w-green-deep);
  background: rgba(255, 255, 255, 0.94);
  padding: 5px 9px;
  border: 0.5px solid var(--w-green-mid);
  border-radius: var(--w-radius-xs);
}
.cat-card .buy {
  display: block; text-decoration: none; text-align: center;
}

/* ===== Pagination / show more ===== */
.cat-more {
  background: var(--w-bg);
  padding: 24px 0 88px;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.cat-more .progress {
  font-family: var(--w-font-sans);
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--w-ink-faint);
}
.cat-more .progress em { font-style: normal; color: var(--w-ink); font-weight: 500; }
.cat-more .track {
  width: 200px; height: 3px; border-radius: 999px;
  background: var(--w-border); overflow: hidden; margin: 12px 0 4px;
}
.cat-more .track .fill { height: 100%; background: var(--w-green-mid); border-radius: 999px; transition: width var(--w-duration-slow) var(--w-ease); }
.cat-more .pager {
  display: flex; align-items: center; gap: 10px;
}
.cat-more .pager .pg {
  min-width: 38px; height: 38px;
  border: 0.5px solid var(--w-border-mid);
  background: transparent; cursor: pointer;
  border-radius: var(--w-radius-xs);
  font-family: var(--w-font-sans); font-size: 13px; color: var(--w-ink-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--w-duration) var(--w-ease);
}
.cat-more .pager .pg:hover { border-color: var(--w-ink); color: var(--w-ink); }
.cat-more .pager .pg.active { background: var(--w-green-deep); border-color: var(--w-green-deep); color: var(--w-cream); }
.cat-more .pager .pg.dots { border: 0; cursor: default; }

/* ===== Certifications band wrapper ===== */
.cat-certs { background: var(--w-bg-card); }

/* ===== Light newsletter (boxed, on cream) ===== */
.cat-newsletter { background: var(--w-bg); padding: 72px 0 80px; }
.cat-newsletter .card {
  border: 0.5px solid var(--w-border-mid);
  border-radius: var(--w-radius-lg);
  padding: 52px 56px;
}
.cat-newsletter .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cat-newsletter .pill {
  display: inline-block;
  font-family: var(--w-font-sans);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--w-green-herb);
  background: var(--w-bg-warm);
  padding: 7px 13px; border-radius: var(--w-radius-pill);
}
.cat-newsletter h3 {
  font-family: var(--w-font-serif);
  font-weight: 300;
  font-size: 34px; line-height: 1.12; letter-spacing: 0.01em;
  color: var(--w-ink);
  margin: 22px 0 0;
}
.cat-newsletter h3 em { font-style: italic; color: var(--w-green-mid); }
.cat-newsletter p {
  font-family: var(--w-font-sans);
  font-size: 14px; line-height: 1.7; color: var(--w-ink-muted);
  margin: 18px 0 0; max-width: 400px;
}
.cat-newsletter form { display: flex; flex-direction: column; gap: 18px; }
.cat-newsletter .input-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--w-bg-card);
  border: 1px solid var(--w-border-mid);
  border-radius: var(--w-radius-pill);
  padding: 8px 8px 8px 24px;
  transition: border-color var(--w-duration) var(--w-ease);
}
.cat-newsletter .input-wrap:focus-within { border-color: var(--w-green-mid); }
.cat-newsletter .input-wrap input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--w-font-sans); font-size: 15px; color: var(--w-ink);
  padding: 12px 0;
}
.cat-newsletter .input-wrap input::placeholder { color: var(--w-ink-faint); }
.cat-newsletter .input-wrap .go {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--w-green-deep); color: var(--w-cream);
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--w-duration) var(--w-ease);
}
.cat-newsletter .input-wrap .go:hover { background: var(--w-green-mid); }
.cat-newsletter .check {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--w-font-sans);
  font-size: 11.5px; line-height: 1.55; color: var(--w-ink-muted);
  max-width: 460px;
}
.cat-newsletter .check input { margin-top: 2px; flex-shrink: 0; }
.cat-newsletter .check a { color: var(--w-green-mid); text-decoration: underline; text-underline-offset: 3px; }
.cat-newsletter .thanks {
  font-family: var(--w-font-serif); font-style: italic; font-weight: 300;
  font-size: 19px; color: var(--w-green-mid); margin: 0;
}

/* ===== Certifications band (warm grey, logo row) ===== */
/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .cat-grid .grid { grid-template-columns: repeat(3, 1fr); }
  .cat-hero .media { height: 400px; }
  .cat-hero .hero-grid { gap: 48px; }
  .cat-newsletter .row { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .cat-grid .grid { grid-template-columns: repeat(2, 1fr); }
  .cat-hero .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero .copy { max-width: none; order: 2; }
  .cat-hero .media { height: 300px; order: 1; }
  .cat-hero .tagline { font-size: 15px; }
  .cat-controls .row { flex-wrap: wrap; gap: 12px; }
  .cat-newsletter .card { padding: 32px 24px; }
  }


/* Weleda RU — Журнал page styles. Reuses design-system tokens + category patterns. */

/* ===== Hero ===== */
.jr-hero { background: var(--w-bg); padding: 112px 0 36px; }
@media (max-width: 720px) {
  .jr-hero { padding: 72px 0 24px; }
}
.jr-hero .eyebrow { display: block; margin-bottom: 22px; }
/* H1 — по weleda.de: 40px/400 капсом, трекинг 0.03em, цвет #444142. */
.jr-hero h1 {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--w-ink);
  margin: 0;
  max-width: 880px;
}
.jr-hero p {
  font-family: var(--w-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--w-ink-muted);
  margin: 24px 0 0;
  max-width: 600px;
}

/* ===== Rubrics (sticky filter row) ===== */
.jr-rubrics {
  position: sticky; top: 0; z-index: 18;
  background: rgba(253, 252, 251, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 0.5px solid var(--w-border);
  border-bottom: 0.5px solid var(--w-border);
}
.jr-rubrics .row {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 16px 0;
}
.jr-rubrics .chip {
  background: transparent;
  border: 0.5px solid var(--w-border-mid);
  border-radius: var(--w-radius-pill);
  padding: 9px 20px;
  cursor: pointer;
  font-family: var(--w-font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w-ink-muted);
  transition: all var(--w-duration) var(--w-ease);
}
.jr-rubrics .chip:hover { border-color: var(--w-green-mid); color: var(--w-green-deep); }
.jr-rubrics .chip.active {
  background: var(--w-green-deep);
  border-color: var(--w-green-deep);
  color: var(--w-cream);
}

/* ===== Featured article ===== */
.jr-featured-wrap { background: var(--w-bg); padding: 48px 0 16px; }
.jr-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  gap: 0;
  border: 0.5px solid var(--w-border);
  border-radius: var(--w-radius-lg);
  overflow: hidden;
  background: var(--w-bg-card);
}
.jr-featured .img { position: relative; min-height: 420px; }
.jr-featured .img .placeholder { align-items: flex-end; justify-content: flex-end; }
.jr-featured .body {
  padding: 48px 52px;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
}
.jr-featured .meta,
.jr-card .meta {
  font-family: var(--w-font-sans);
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--w-ink-faint);
  text-transform: uppercase;
}
.jr-featured .meta .tag,
.jr-card .meta .tag { color: var(--w-green-herb); font-weight: 500; }
.jr-featured h2 {
  font-family: var(--w-font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--w-ink);
  margin: 16px 0 0;
}
.jr-featured p {
  font-family: var(--w-font-sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--w-ink-muted);
  margin: 18px 0 24px;
  max-width: 440px;
}
.jr-featured .read {
  margin-top: 22px;
  font-family: var(--w-font-sans);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--w-ink-faint);
}

/* ===== Article grid ===== */
.jr-grid { background: var(--w-bg); padding: 40px 0 80px; }
.jr-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.jr-card {
  background: var(--w-bg-card);
  border: 0.5px solid var(--w-border);
  border-radius: var(--w-radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform var(--w-duration) var(--w-ease), box-shadow var(--w-duration) var(--w-ease);
}
.jr-card:hover { transform: translateY(-2px); box-shadow: var(--w-shadow-md); }
.jr-card .img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--w-bg-warm);
}
.jr-card .img img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
}
.jr-card .img .placeholder { align-items: flex-end; justify-content: flex-end; }

/* Featured (большой блок) — картинка fills контейнер */
.jr-featured .img { width: 100%; overflow: hidden; background: var(--w-bg-warm); }
.jr-featured .img img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block;
}

/* Read-time — общий стиль для подписи под карточкой */
.jr-card .read-time,
.jr-featured .read-time {
  display: block;
  font-family: var(--w-font-sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w-ink-faint);
  margin-top: 12px;
}
.jr-featured .read-time { margin-top: 18px; }
.jr-card .body {
  padding: 20px 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.jr-card h3 {
  font-family: var(--w-font-serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--w-ink);
  margin: 0;
}
.jr-card p {
  font-family: var(--w-font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--w-ink-muted);
  margin: 0;
}
.jr-card .read {
  margin-top: auto;
  font-family: var(--w-font-sans);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--w-ink-faint);
}
.jr-grid .empty {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--w-ink-muted);
  text-align: center;
  padding: 40px 0;
}
.jr-grid .more {
  display: flex; justify-content: center;
  margin-top: 48px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .jr-hero h1 { font-size: 32px; }
  .jr-grid .grid { grid-template-columns: repeat(2, 1fr); }
  .jr-featured { grid-template-columns: 1fr; }
  .jr-featured .img { min-height: 300px; }
  .jr-featured .body { padding: 36px 32px; }
}
@media (max-width: 760px) {
  .jr-hero { padding: 40px 0 24px; }
  .jr-hero h1 { font-size: 28px; }
  .jr-hero p { font-size: 15px; }
  .jr-grid .grid { grid-template-columns: 1fr; }
  .jr-featured h2 { font-size: 28px; }
}


{__TWEAKS_STYLE}