/* Натуральное здоровье — лендинг ДКВ (ТЗ) */
:root {
  /* Исходная тема сайта (до экспериментов со «Студией» / «Ботаникой») */
  --bg: #f4f3ee;
  --tint: #f0ede6;
  --text: #2b2c28;
  --text-primary: #2b2c28;
  --text-muted: #687272;
  --muted: #687272;
  --dark: #282e25;
  --dark-mid: #343d30;
  --accent: #6cb426;
  --accent-hover: #5aa020;
  --secondary: #b66e2d;
  --white: #fff;
  --rgb-dark: 40, 46, 37;
  --rgb-accent: 108, 180, 38;
  --card-shadow-rgb: 69, 41, 38;
  --line: rgba(40, 46, 37, 0.12);
  --shadow: 0 12px 40px rgba(40, 46, 37, 0.1);
  --shadow-sm: 0 6px 20px rgba(40, 46, 37, 0.08);
  --container: 1200px;
  --measure: 720px;
  --section: 80px;
  --gutter: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 260ms;
  --catalog-bg: #f5f1ee;
  --catalog-maroon: #452926;
  --catalog-maroon-hover: #5c362f;
  --header-solid-bg: rgba(40, 46, 37, 0.94);
  --hero-cta-bg: #7ed321;
  --hero-cta-hover: #6bc21a;
  --hero-cta-color: #11150c;
  --consult-bar-bg: #0f2e28;
  --btn-primary-bg: #6cb426;
  --btn-primary-hover: #5aa020;
  --btn-primary-fg: #11150c;
  --footer-bg: #1e231c;
}

html[data-theme="studio"] {
  /* «Спокойная природная студия» */
  --bg: #f2f1ec;
  --tint: #e7e5de;
  --text: #4e642a;
  --text-primary: #4e642a;
  --text-muted: #6f7d55;
  --muted: #6f7d55;
  --dark: #3d4f22;
  --dark-mid: #4a5e2c;
  --accent: #8fa35b;
  --accent-hover: #7a8d4d;
  --secondary: #927651;
  --rgb-dark: 61, 79, 34;
  --rgb-accent: 143, 163, 91;
  --card-shadow-rgb: 120, 98, 68;
  --line: rgba(78, 100, 42, 0.14);
  --shadow: 0 12px 40px rgba(61, 79, 34, 0.12);
  --shadow-sm: 0 6px 20px rgba(61, 79, 34, 0.08);
  --catalog-bg: #d8d3c7;
  --catalog-maroon: #7a5c3f;
  --catalog-maroon-hover: #927651;
  --header-solid-bg: rgba(61, 79, 34, 0.93);
  --hero-cta-bg: #4e642a;
  --hero-cta-hover: #3d4f22;
  --hero-cta-color: #f2f1ec;
  --consult-bar-bg: #3d4f22;
  --btn-primary-bg: #4e642a;
  --btn-primary-hover: #3d4f22;
  --btn-primary-fg: #f2f1ec;
  --footer-bg: #2d3b1a;
}

html[data-theme="botanical"] {
  /* «Ботанический премиум» */
  --bg: #f1eee7;
  --tint: #e4e0d8;
  --text: #3b3937;
  --text-primary: #3b3937;
  --text-muted: #6d6a68;
  --muted: #6d6a68;
  --dark: #3b3937;
  --dark-mid: #4a4846;
  --accent: #556b66;
  --accent-hover: #78906f;
  --secondary: #78906f;
  --rgb-dark: 59, 57, 55;
  --rgb-accent: 85, 107, 102;
  --card-shadow-rgb: 59, 57, 55;
  --line: rgba(59, 57, 55, 0.12);
  --shadow: 0 12px 40px rgba(59, 57, 55, 0.1);
  --shadow-sm: 0 6px 20px rgba(59, 57, 55, 0.07);
  --catalog-bg: #c8baba;
  --catalog-maroon: #3b3937;
  --catalog-maroon-hover: #556b66;
  --header-solid-bg: rgba(59, 57, 55, 0.92);
  --hero-cta-bg: #556b66;
  --hero-cta-hover: #3b3937;
  --hero-cta-color: #f1eee7;
  --consult-bar-bg: #3b3937;
  --btn-primary-bg: #556b66;
  --btn-primary-hover: #3b3937;
  --btn-primary-fg: #f1eee7;
  --footer-bg: #2a2827;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Якоря не прячутся под фиксированной шапкой */
  scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px));
}

html:has(#demo-dkv-catalog-chrome) {
  /* Две строки плашки Django (22px + 26px) — см. portfolio_strip.dkv_catalog_chrome_markup */
  --demo-dkv-chrome-h: 48px;
  scroll-padding-top: calc(var(--demo-dkv-chrome-h) + 72px + env(safe-area-inset-top, 0px));
}

html:has(#demo-dkv-catalog-chrome) .site-header {
  top: var(--demo-dkv-chrome-h);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.prose {
  max-width: 720px;
}

.section {
  padding-block: var(--section);
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.12);
}

.section--dark .muted,
.section--dark p.lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.is-solid {
  background: var(--header-solid-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding-block: 12px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.brand__mark {
  display: inline-block;
  flex-shrink: 0;
  height: 44px;
  aspect-ratio: 668 / 900;
  background: transparent center / contain no-repeat url("../assets/dkv-logo.png");
  filter: invert(1);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.nav a:hover {
  color: #fff;
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions__cart,
.mobile-drawer__cart {
  padding-inline: 14px;
}

.header-actions__cart-count,
.mobile-drawer__cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(var(--rgb-accent), 0.92);
  color: var(--btn-primary-fg);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-menu {
  position: relative;
}

.contact-menu__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.contact-menu__summary::-webkit-details-marker {
  display: none;
}

.contact-menu__summary::marker {
  content: "";
}

.contact-menu__summary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 48px rgba(15, 18, 12, 0.18);
  border: 1px solid var(--line);
  z-index: 220;
}

.contact-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  transition: background var(--dur) var(--ease);
}

a.contact-menu__link:hover {
  background: rgba(var(--rgb-dark), 0.06);
}

.contact-menu--cta .contact-menu__panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.mobile-drawer__contacts {
  display: grid;
  gap: 12px;
}

.mobile-drawer__contact {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background var(--dur) var(--ease);
}

a.mobile-drawer__contact:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform 200ms var(--ease);
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--dark:hover {
  filter: brightness(1.08);
}

.header-call {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}

.header-call:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-call:active {
  transform: scale(0.98);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 280;
  pointer-events: none;
}

.mobile-drawer.is-open {
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 12, 0.45);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100dvh;
  max-height: 100dvh;
  background: var(--dark);
  color: #fff;
  padding: calc(16px + env(safe-area-inset-top, 0px)) var(--gutter) calc(20px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-drawer__close {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.mobile-drawer__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-drawer__block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer__label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-drawer__callback {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}

.mobile-drawer__cart {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

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

.mobile-nav {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #1a1f18;
}

.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (min-width: 641px) {
  .hero__img {
    object-position: 62% center;
  }
}

@media (max-width: 640px) {
  .hero__img {
    object-position: 58% 24%;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.58) 22%,
    rgba(0, 0, 0, 0.32) 42%,
    rgba(0, 0, 0, 0.08) 58%,
    rgba(0, 0, 0, 0) 78%
  );
}

.hero__body {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 120px 24px 32px 80px;
  box-sizing: border-box;
}

.hero__content {
  max-width: var(--measure);
  width: 100%;
}

.hero__title {
  margin: 0 0 24px;
  max-width: var(--measure);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__sub {
  margin: 0 0 32px;
  max-width: var(--measure);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero__btn--primary {
  background: var(--hero-cta-bg);
  color: var(--hero-cta-color);
}

.hero__btn--primary:hover {
  background: var(--hero-cta-hover);
}

.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 80px;
  box-sizing: border-box;
  background: #0f2e28;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}

.hero__panel-text {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  flex: 1 1 220px;
}

.hero__panel-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  background: var(--hero-cta-bg);
  color: var(--hero-cta-color);
  transition: background 0.2s var(--ease);
}

.hero__panel-btn:hover {
  background: var(--hero-cta-hover);
}

/* ----- Консультация у каталога (было внизу hero) ----- */
.catalog-consult-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: 12px;
  box-sizing: border-box;
  background: var(--consult-bar-bg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.catalog-consult-bar__text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  flex: 1 1 220px;
}

@media (max-width: 520px) {
  .catalog-consult-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-consult-bar .hero__panel-btn {
    width: 100%;
  }
}

@media (min-width: 641px) {
  .hero__title {
    font-size: 44px;
  }
}

@media (min-width: 1025px) {
  .hero__title {
    font-size: 56px;
  }
}

/* ----- How we work — eco-style (листья, шаги в кругах) ----- */
.how-eco {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 7vw, 88px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--tint) 45%, var(--catalog-bg) 100%);
  color: var(--text);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.how-eco::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 58% at -6% -4%, rgba(var(--rgb-accent), 0.12) 0%, transparent 54%),
    radial-gradient(ellipse 48% 42% at 102% 103%, rgba(var(--rgb-accent), 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 42% 36% at -3% 106%, rgba(var(--rgb-dark), 0.06) 0%, transparent 48%);
}

.how-eco .container {
  position: relative;
  z-index: 1;
}

.how-eco__head {
  text-align: center;
  margin: 0 auto 42px;
}

.how-eco__title {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}

.how-eco__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: min(320px, 100%);
  margin: 0 auto;
}

.how-eco__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--rgb-accent), 0.35), transparent);
}

.how-eco__divider-leaf {
  flex-shrink: 0;
  display: block;
}

.how-eco__rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2px;
}

.how-eco__join {
  flex: 1 1 clamp(16px, 3.5vw, 48px);
  min-width: 8px;
  max-width: 56px;
  align-self: flex-start;
  margin-top: clamp(58px, 8.5vw, 72px);
  height: 0;
  border-top: 1px dashed rgba(var(--rgb-dark), 0.22);
}

.how-eco__step {
  flex: 1 1 0;
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
}

.how-eco__step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.how-eco__step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.how-eco__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.how-eco__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.how-eco__orbit {
  position: relative;
  width: clamp(76px, 11vw, 92px);
  height: clamp(76px, 11vw, 92px);
  flex-shrink: 0;
}

.how-eco__sprig {
  position: absolute;
  left: -20px;
  top: max(6px, 12%);
  width: clamp(26px, 4vw, 34px);
  height: auto;
  pointer-events: none;
}

.how-eco__orb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 32% 28%, var(--white) 0%, var(--tint) 52%, var(--catalog-bg) 100%);
  border-radius: 50%;
  box-shadow:
    0 10px 26px rgba(var(--rgb-dark), 0.08),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  color: var(--text);
}

.how-eco__ico {
  width: clamp(34px, 5vw, 40px);
  height: clamp(34px, 5vw, 40px);
  display: block;
}

.how-eco__copy {
  padding: 0 4px;
}

.how-eco__step-title {
  margin: 0 0 8px;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.how-eco__step-text {
  margin: 0;
  font-size: clamp(12.5px, 1.25vw, 14px);
  line-height: 1.55;
  color: var(--muted);
}

.how-eco__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: calc(68px + env(safe-area-inset-top, 0px));
  }

  html:has(#demo-dkv-catalog-chrome) {
    scroll-padding-top: calc(var(--demo-dkv-chrome-h) + 68px + env(safe-area-inset-top, 0px));
  }

  .nav,
  .contact-menu,
  .header-actions__callback {
    display: none !important;
  }

  .burger {
    display: inline-flex;
  }

  .header-call {
    display: inline-flex;
  }

  .site-header__inner {
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .brand__mark {
    height: 36px;
  }

  .hero {
    min-height: max(520px, 100svh);
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.68) 100%
    );
  }

  .hero__body {
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: calc(96px + env(safe-area-inset-top, 0px)) max(var(--gutter), env(safe-area-inset-right, 0px))
      calc(140px + env(safe-area-inset-bottom, 0px)) max(var(--gutter), env(safe-area-inset-left, 0px));
    text-align: center;
  }

  .hero__content {
    margin-inline: auto;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
  }

  .hero__btn {
    width: 100%;
    max-width: 100%;
  }

  .hero__panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    height: auto;
    min-height: 0;
    padding: 16px max(var(--gutter), env(safe-area-inset-left, 0px)) calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .hero__panel-text {
    flex: none;
    text-align: center;
    font-size: 16px;
  }

  .hero__panel-btn {
    width: 100%;
    max-width: none;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-eco__rail {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    max-width: 560px;
    margin-inline: auto;
    padding: 0;
  }

  .how-eco__join {
    display: none !important;
  }

  .how-eco__step-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .how-eco__visual {
    flex-shrink: 0;
    width: clamp(104px, 28vw, 120px);
  }

  .how-eco__copy {
    flex: 1;
    min-width: 0;
    background: rgba(255, 253, 250, 0.94);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow:
      0 10px 28px rgba(44, 36, 28, 0.08),
      0 0 0 1px rgba(60, 47, 42, 0.06);
  }

  .how-eco__head {
    margin-bottom: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .how-eco__head {
    margin-bottom: 24px;
  }

  .how-eco__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .how-eco__rail {
    max-width: none;
    gap: 14px;
  }

  .how-eco__step-inner {
    gap: 12px;
  }

  .how-eco__copy {
    padding: 14px 15px;
  }

  .how-eco__step-title {
    font-size: 15px;
  }

  .how-eco__step-text {
    font-size: 13.5px;
  }

  .how-eco__cta {
    margin-top: 28px;
  }
}

.muted {
  color: var(--muted);
}

/* ----- Section titles ----- */
.section-head {
  margin-bottom: 40px;
  max-width: var(--measure);
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-section {
  background: var(--catalog-bg);
  color: var(--text);
}

.section-head--catalog {
  max-width: var(--measure);
  text-align: left;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin: 0 0 28px;
}

.catalog-toolbar__hint {
  margin: 0;
  font-size: 14px;
}

.catalog-toolbar__count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----- Story / about line (Siberia & Baikal) ----- */
.story-section {
  background: var(--tint);
  border-block: 1px solid var(--line);
}

.story-section__head {
  margin: 0 0 40px;
  text-align: center;
}

.story-section__title {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.story-section__lead {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.story-section__lead:last-of-type {
  margin-bottom: 0;
}

.story-section__acc {
  margin: 0;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-section__acc .product-modal__acc {
  margin: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--rgb-dark), 0.1);
  box-shadow: 0 2px 12px rgba(var(--rgb-dark), 0.05);
  overflow: hidden;
}

.story-section__acc .product-modal__acc > summary {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  padding-inline-end: 52px;
  transition: background 0.2s var(--ease);
}

.story-section__acc .product-modal__acc > summary:hover {
  background: rgba(var(--rgb-dark), 0.04);
}

.story-section__acc .product-modal__acc[open] > summary {
  background: rgba(var(--rgb-dark), 0.03);
}

.story-section__acc .product-modal__acc > summary::after {
  margin-inline-end: 6px;
}

.story-section__acc .product-modal__acc-body {
  padding: 6px 28px 26px;
}

.story-section__acc .product-modal__acc-body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.story-section__acc .product-modal__acc-body p:last-child {
  margin-bottom: 0;
}

.story-section__acc .product-modal__acc-body strong {
  color: var(--text);
}

.story-section__outro {
  margin: 40px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 32px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(var(--rgb-dark), 0.14);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.story-tag--link {
  text-decoration: none;
  border-color: var(--catalog-maroon);
  color: var(--catalog-maroon);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.story-tag--link:hover {
  background: rgba(var(--card-shadow-rgb), 0.08);
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
    --section: 56px;
  }

  .story-section__acc .product-modal__acc > summary {
    padding: 18px 18px;
    padding-inline-end: 46px;
  }

  .story-section__acc .product-modal__acc-body {
    padding: 4px 18px 22px;
  }

  .story-tag {
    min-height: 44px;
    font-size: 12px;
    padding: 0 14px;
  }

  .faq-q {
    padding: 18px 0;
    font-size: 16px;
    min-height: 52px;
  }

  .faq-a {
    padding: 0 0 20px;
    font-size: 15px;
  }

  .cards-grid {
    gap: 20px;
  }

  .how-eco__step {
    max-width: 100%;
  }
}

/* ----- Product cards (catalog layout) ----- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform var(--dur) var(--ease);
}

.product-card[data-product-modal] {
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e4df;
  box-shadow: 0 8px 28px rgba(var(--card-shadow-rgb), 0.08);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 14px 2px 0;
}

.product-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}

.product-card__specs {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-top: 4px;
}

.product-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.product-card__price--old {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}

.product-card__excerpt {
  margin: 0;
  padding-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 1280px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card__btn {
  flex: 1 1 calc(50% - 5px);
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 4px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 200ms var(--ease);
}

.product-card__btn--outline {
  background: transparent;
  color: var(--catalog-maroon);
  border: 1px solid var(--catalog-maroon);
}

.product-card__btn--outline:hover {
  background: rgba(var(--card-shadow-rgb), 0.06);
}

.product-card__btn--cart {
  background: var(--catalog-maroon);
  color: #fff;
  border: 1px solid var(--catalog-maroon);
}

.product-card__btn--cart:hover {
  background: var(--catalog-maroon-hover);
  border-color: var(--catalog-maroon-hover);
  color: #fff;
}

.product-card__btn:focus-visible {
  outline: 2px solid var(--catalog-maroon);
  outline-offset: 2px;
}

.btn--link {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
}

.btn--link:hover {
  background: var(--accent-hover);
}

/* ----- Product modal ----- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(24px, 4vh) 16px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-modal[hidden] {
  display: none !important;
}

.product-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
  cursor: pointer;
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(15, 18, 12, 0.2);
  border: 1px solid var(--line);
}

.product-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-modal__title {
  margin: 0;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-right: 8px;
}

.product-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: -6px -6px 0 0;
  border: none;
  border-radius: 4px;
  background: rgba(var(--rgb-dark), 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.product-modal__close:hover {
  background: rgba(var(--rgb-dark), 0.12);
}

.product-modal__hint {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
}

.product-modal__market {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--tint);
}

.product-modal__market-media {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-modal__market-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.product-modal__market-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-modal__market-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.product-modal__rating {
  color: #ff7a00;
  font-weight: 700;
}

.product-modal__reviews {
  color: #7a746c;
}

.product-modal__market-price {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: #1f1a16;
}

.product-modal__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal__fact {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ded8cf;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  color: #5d584f;
  padding: 6px 10px;
}

.product-modal__market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.product-modal__go {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.product-modal__go--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.product-modal__go--primary:hover {
  background: var(--btn-primary-hover);
}

.product-modal__go--ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.product-modal__go--ghost:hover {
  background: var(--tint);
}

.product-modal__acc-list {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding-right: 4px;
  margin-right: -4px;
}

.product-modal__acc {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
  overflow: visible;
}

.product-modal__acc:last-child {
  border-bottom: none;
}

.product-modal__acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0 16px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: color var(--dur) var(--ease);
}

.product-modal__acc > summary::-webkit-details-marker {
  display: none;
}

.product-modal__acc > summary::marker {
  content: "";
}

.product-modal__acc > summary::after {
  content: "+";
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
}

.product-modal__acc[open] > summary::after {
  content: "\00d7";
  font-size: 24px;
  font-weight: 500;
}

.product-modal__acc > summary:hover {
  color: var(--text);
}

.product-modal__acc-body {
  padding: 0 32px 22px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.product-modal__acc-body p {
  margin: 0 0 10px;
}

.product-modal__acc-body p:last-child {
  margin-bottom: 0;
}

.product-modal__acc-body .legal {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .product-modal__market {
    grid-template-columns: 1fr;
  }
}

.legal {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* ----- Callback modal ----- */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(24px, 4vh) 16px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.callback-modal[hidden] {
  display: none !important;
}

.callback-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
  cursor: pointer;
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(15, 18, 12, 0.2);
  border: 1px solid var(--line);
}

.callback-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.callback-modal__title {
  margin: 0;
  font-size: clamp(20px, 4vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-right: 8px;
}

.callback-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: -6px -6px 0 0;
  border: none;
  border-radius: 4px;
  background: rgba(var(--rgb-dark), 0.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.callback-modal__close:hover {
  background: rgba(var(--rgb-dark), 0.12);
}

.callback-modal__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
}

.callback-modal__form {
  display: grid;
  gap: 16px;
}

.callback-modal__field {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.callback-modal__label {
  font-weight: 600;
  color: var(--text);
}

.callback-modal__field input {
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 15px;
  background: #fff;
  color: var(--text);
}

.callback-modal__field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.callback-modal__submit {
  margin-top: 4px;
  width: 100%;
}

.callback-modal__thanks {
  padding: 8px 0 4px;
}

.callback-modal__thanks-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.callback-modal__thanks p {
  margin: 0;
  line-height: 1.55;
}

.callback-modal__thanks p + p {
  margin-top: 10px;
}

/* ----- Cart modal ----- */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 430;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(24px, 4vh) 16px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-modal[hidden] {
  display: none !important;
}

.cart-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
  cursor: pointer;
}

.cart-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(15, 18, 12, 0.2);
  border: 1px solid var(--line);
}

.cart-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-modal__title {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.02em;
}

.cart-modal__close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: rgba(var(--rgb-dark), 0.06);
  font-size: 24px;
  cursor: pointer;
}

.cart-modal__body {
  margin-top: 12px;
}

.cart-modal__items {
  display: grid;
  gap: 10px;
}

.cart-item {
  border: 1px solid #e8e1d7;
  border-radius: 12px;
  padding: 12px;
  background: #faf8f3;
}

.cart-item__main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cart-item__title {
  font-size: 15px;
  font-weight: 700;
  color: #2d251c;
}

.cart-item__price {
  font-size: 13px;
  color: #6a6259;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__btn {
  width: 30px;
  height: 30px;
  border: 1px solid #d8d0c4;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.cart-item__qty {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
}

.cart-item__remove {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #8a3e3e;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}

.cart-modal__empty {
  margin: 14px 0 4px;
}

.cart-modal__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #ebe3d9;
}

.cart-modal__form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.cart-modal__field {
  display: grid;
  gap: 6px;
}

.cart-modal__label {
  font-size: 13px;
  font-weight: 600;
  color: #61594e;
}

.cart-modal__field input,
.cart-modal__field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.cart-modal__field textarea[readonly] {
  background: #f6f3ee;
}

.cart-modal__submit {
  margin-top: 4px;
}

.cart-modal__thanks {
  margin-top: 14px;
  padding: 14px 12px;
  border-radius: 12px;
  background: #f3f9ea;
  border: 1px solid #d8e9bd;
}

.cart-modal__thanks-title {
  margin: 0 0 6px;
  font-weight: 700;
}

/* ----- Reviews carousel ----- */
.reviews-section {
  background: #f2f1ec;
  border-block: 1px solid rgba(var(--rgb-dark), 0.08);
}

.reviews-section__container {
  width: min(100% - var(--gutter) * 2, var(--container));
}

.reviews-section__head {
  max-width: var(--measure);
}

.reviews-section__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.reviews-section__head h2 {
  letter-spacing: -0.03em;
}

.reviews-carousel {
  max-width: 100%;
  margin-inline: auto;
}

.reviews-carousel:focus-visible {
  outline: none;
}

.reviews-carousel:focus-visible .reviews-carousel__viewport {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reviews-carousel__panel {
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(var(--rgb-dark), 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 12px 32px rgba(var(--rgb-dark), 0.05);
}

.reviews-carousel__frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: stretch;
}

.reviews-carousel__viewport {
  overflow: hidden;
  border-radius: 2px;
  min-width: 0;
  background: #fafaf8;
  border: 1px solid rgba(var(--rgb-dark), 0.08);
}

.reviews-carousel__track {
  display: flex;
  gap: var(--reviews-gap, 24px);
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reviews-carousel__track.is-instant {
  transition: none;
}

.review-card {
  flex: 0 0 auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(24px, 3.5vw, 32px);
  border-radius: 2px;
  background: #fff;
  border: 1px solid rgba(var(--rgb-dark), 0.12);
  box-shadow: 0 8px 22px rgba(var(--rgb-dark), 0.06);
  min-height: 0;
  position: relative;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: 0;
}

.review-card__stars {
  color: var(--secondary);
  letter-spacing: 0.16em;
  font-size: clamp(14px, 1.5vw, 17px);
}

.review-card__quote {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.review-card__rule {
  height: 1px;
  margin-top: auto;
  background: rgba(var(--rgb-dark), 0.1);
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  background: #eef2e8;
  border: 1px solid rgba(var(--rgb-dark), 0.12);
}

.review-card__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.review-card__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.reviews-carousel__btn {
  align-self: center;
}

.reviews-carousel__footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.reviews-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.reviews-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 1px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(var(--rgb-dark), 0.2);
  transition: background var(--dur) var(--ease), width 0.25s var(--ease), border-radius 0.2s var(--ease);
}

.reviews-carousel__dot[aria-current="true"] {
  background: var(--accent);
  width: 32px;
  border-radius: 2px;
}

.reviews-carousel .arrow {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  border: 1px solid rgba(var(--rgb-dark), 0.18);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(var(--rgb-dark), 0.06);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), transform 200ms var(--ease);
}

.reviews-carousel .arrow:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.reviews-carousel .arrow:active {
  transform: scale(0.97);
}

@media (max-width: 1023px) {
  .reviews-carousel__frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px 12px;
  }

  .reviews-carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .reviews-carousel__btn--prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .reviews-carousel__btn--next {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

}

/* ----- FAQ ----- */
#faq .section-head {
  max-width: none;
}

.faq {
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q__icon {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 40px 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* ----- CTA band ----- */
.cta-final {
  background: linear-gradient(120deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%);
  color: #fff;
  text-align: center;
}

.cta-final h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
}

.cta-final p {
  margin: 0 auto 24px;
  max-width: var(--measure);
  color: rgba(255, 255, 255, 0.78);
}

.cta-final .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ----- Responsive ----- */
@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .how-eco__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .how-eco__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}


/* ===== Language switch ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-switch__active {
  color: #fff;
  letter-spacing: .04em;
}
.lang-switch__sep {
  color: rgba(255,255,255,.35);
}
.lang-switch a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  letter-spacing: .04em;
}
.lang-switch a:hover { color: #fff; }

/* ===== Product-page shared ===== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 100px;
  padding-bottom: 8px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb__sep { opacity: .4; }

/* Product hero */
.product-hero { padding-top: 0; padding-bottom: 0; }
.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  padding-block: clamp(40px, 8vh, 90px);
}
.product-hero__eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.product-hero__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}
.product-hero__lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: #444;
  margin: 0 0 28px;
  max-width: 560px;
}
.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 2px;
  border: 1px solid rgba(40,46,37,.16);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
}
.product-hero__img-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: #eeeae5;
}
.product-hero__img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.benefit-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.benefit-card__icon {
  width: 38px;
  height: 38px;
  background: rgba(108,180,38,.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 20px;
}
.benefit-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Composition */
.composition-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.composition-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.composition-item__name { font-weight: 600; font-size: 15px; }
.composition-item__sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.composition-item__pct {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* Dosage steps */
.dosage-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 22px;
  counter-reset: step;
}
.dosage-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
  align-items: start;
}
.dosage-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dosage-step__text { padding-top: 5px; }
.dosage-step__label { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.dosage-step__note { font-size: 14px; color: var(--muted); }

/* Science references */
.science-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.science-ref {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: start;
}
.science-ref__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.science-ref__title { font-weight: 600; font-size: 15px; margin: 0 0 3px; }
.science-ref__meta { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.science-ref__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.science-ref__link:hover { color: var(--accent-hover); }

/* Warning / contraindications */
.warning-block {
  background: #fffbf4;
  border: 1px solid #e4c87a;
  border-left: 4px solid #c8a220;
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 22px;
}
.warning-block__title { font-weight: 700; font-size: 16px; margin: 0 0 10px; }
.warning-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Read-more link on catalog cards */
.product-card__read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
.product-card__read-more:hover { color: var(--text); }

/* Audience list */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
}
.audience-item__icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }

/* Two-col about layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}
.about-copy p { margin: 0 0 14px; font-size: 16px; line-height: 1.7; }
.about-copy p:last-child { margin-bottom: 0; }

/* Responsive product pages */
@media (max-width: 900px) {
  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-hero__image {
    max-width: 260px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 860px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NATURE PARALLAX & INTERACTIVE ENHANCEMENTS
   ============================================================ */

/* ----- Hero Parallax ----- */
@media (prefers-reduced-motion: no-preference) {
  .hero__picture {
    top: -15%;
    bottom: 0;
  }
  .hero__img {
    will-change: transform;
    height: 115%;
  }
}

/* ----- Floating Leaf Particles (hero) ----- */
.hero__leaves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__leaf {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  animation: leaf-drift var(--ld, 16s) var(--ldelay, 0s) ease-in-out infinite;
}

@keyframes leaf-drift {
  0%   { opacity: 0;    transform: translate(0, 0) rotate(0deg) scale(1); }
  12%  { opacity: var(--lop, 0.28); }
  88%  { opacity: calc(var(--lop, 0.28) * 0.55); }
  100% { opacity: 0;    transform: translate(var(--lx, -50px), -72vh) rotate(var(--lr, 210deg)) scale(0.55); }
}

.hero__leaf--1 { bottom: 35%; left: 10%;  --ld: 17s; --ldelay: 0s;    --lx: -55px; --lr: 195deg; --lop: 0.25; }
.hero__leaf--2 { bottom: 48%; left: 26%;  --ld: 21s; --ldelay: 5s;    --lx: -28px; --lr: 230deg; --lop: 0.20; }
.hero__leaf--3 { bottom: 22%; right: 28%; --ld: 25s; --ldelay: 9s;    --lx:  55px; --lr: 165deg; --lop: 0.22; }
.hero__leaf--4 { bottom: 58%; right: 15%; --ld: 19s; --ldelay: 13s;   --lx:  30px; --lr: 250deg; --lop: 0.18; }
.hero__leaf--5 { bottom: 18%; left: 52%;  --ld: 28s; --ldelay: 3.5s;  --lx: -18px; --lr: 180deg; --lop: 0.20; }

/* ----- Hero Scroll Hint ----- */
.hero__scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: sh-fade 4.5s 2.5s ease-in-out forwards;
}

.hero__scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.45));
  animation: sh-line 1.7s 2.5s ease-in-out infinite;
}

@keyframes sh-fade {
  0%   { opacity: 0; }
  16%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes sh-line {
  0%, 100% { transform: scaleY(0.55) translateY(0); }
  50%       { transform: scaleY(1)    translateY(5px); }
}

@media (max-width: 1024px) {
  .hero__scroll-hint { display: none; }
}

/* ----- Nature Stats Strip ----- */
.nature-strip {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nature-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--dur) var(--ease);
  min-width: 0;
}

.nature-stat:last-child { border-right: none; }
.nature-stat:hover { background: rgba(var(--rgb-accent), 0.06); }

.nature-stat__icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--accent);
  opacity: 0.7;
}

.nature-stat__num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.nature-stat__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 860px) {
  .nature-stat__icon { display: none; }
}

@media (max-width: 640px) {
  .nature-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .nature-stat:nth-child(2) { border-right: none; }
  .nature-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nature-stat:nth-child(3) { border-right: none; border-bottom: none; }
  .nature-stat { padding: 7px 10px; }
}

/* ----- Product Cards: reveal + hover ----- */
.product-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
}

.product-card.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.product-card.is-loaded:hover {
  transform: translateY(-5px);
  transition-duration: 0.24s;
}

.product-card__media {
  transition: box-shadow 0.35s var(--ease);
}

.product-card:hover .product-card__media {
  box-shadow: 0 22px 56px rgba(var(--card-shadow-rgb), 0.2);
}

.product-card__media img {
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

/* ----- FAQ: animated + icon (CSS rotation, JS keeps "+") ----- */
.faq-q__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(var(--rgb-dark), 0.07);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform 0.32s var(--ease);
}

.faq-item.is-open .faq-q__icon {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(45deg);
}

/* ----- Story Tags: icon slot + hover ----- */
.story-tag {
  gap: 7px;
  transition: background var(--dur) var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color var(--dur) var(--ease);
}

.story-tag__icon {
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease);
}

.story-tag:hover .story-tag__icon { opacity: 1; }

.story-tag:not(.story-tag--link):hover {
  background: rgba(var(--rgb-accent), 0.1);
  border-color: rgba(var(--rgb-accent), 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(var(--rgb-dark), 0.1);
}

/* ----- Benefit Cards hover ----- */
.benefit-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(var(--rgb-dark), 0.14);
}

.section--dark .benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .benefit-card:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

/* ----- CTA: subtle nature glow ----- */
.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 4% 50%,  rgba(var(--rgb-accent), 0.1)  0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 96% 30%, rgba(var(--rgb-accent), 0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* ----- Audience Item hover (product pages) ----- */
.audience-item {
  transition: background var(--dur) var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.audience-item:hover {
  background: rgba(var(--rgb-accent), 0.06);
  transform: translateX(5px);
  box-shadow: 0 2px 14px rgba(var(--rgb-dark), 0.08);
}

/* ----- Science refs hover (product pages) ----- */
.science-ref {
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.science-ref:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--rgb-dark), 0.1);
}

/* ----- Composition bar (product pages) ----- */
.composition-item {
  position: relative;
  overflow: hidden;
}

.composition-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(var(--rgb-accent), 0.35));
  border-radius: 0 3px 0 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.composition-item.bar-active::after {
  width: var(--bar-w, 50%);
}

/* ----- Generic section-head reveal ----- */
.section-head[data-reveal],
.story-section__head[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.section-head[data-reveal].is-visible,
.story-section__head[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   CONVERSION: Featured badge, price note, origin flow,
   compare table, effect timeline, trust strip,
   floating widget, scroll banner
   ============================================================= */

/* ----- Product card position (needed for badge) ----- */
.product-card {
  position: relative;
}

/* ----- Featured card ----- */
.product-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--rgb-accent), 0.12);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* ----- Price note ----- */
.product-card__price-note {
  font-size: 11.5px;
  color: var(--accent);
  margin: 2px 0 8px;
  font-style: italic;
  opacity: 0.85;
}

/* ----- Origin flow ----- */
.origin-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 32px 24px;
  background: rgba(90, 130, 70, 0.06);
  border-radius: 16px;
  flex-wrap: wrap;
  row-gap: 24px;
}

.origin-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.origin-flow__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.origin-flow__step:nth-child(3) { transition-delay: 0.15s; }
.origin-flow__step:nth-child(5) { transition-delay: 0.30s; }

.origin-flow__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--rgb-accent), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.origin-flow__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.origin-flow__sub {
  font-size: 12px;
  color: var(--text-muted);
}

.origin-flow__arrow {
  font-size: 26px;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  padding: 0 4px;
  margin-bottom: 24px;
}

@media (max-width: 580px) {
  .origin-flow {
    flex-direction: column;
    align-items: center;
  }

  .origin-flow__arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
  }
}

/* ----- Comparison table ----- */
.compare-section {
  padding-block: 64px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(var(--rgb-dark), 0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}

.compare-table thead {
  background: rgba(var(--rgb-accent), 0.1);
}

.compare-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  border-bottom: 2px solid rgba(var(--rgb-accent), 0.2);
}

.compare-table th:first-child {
  width: 40%;
  border-right: 1px solid rgba(var(--rgb-accent), 0.15);
}

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(var(--rgb-accent), 0.08);
  color: var(--text-primary);
}

.compare-table td:first-child {
  font-weight: 500;
  border-right: 1px solid rgba(var(--rgb-accent), 0.1);
}

.compare-table td:not(:first-child) {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.compare-table tr:hover td {
  background: rgba(var(--rgb-accent), 0.04);
}

/* Highlight ДКВ column */
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  background: rgba(var(--rgb-accent), 0.06);
}

.ct-primary { color: var(--accent); }
.ct-secondary { color: var(--text-primary); opacity: 0.55; }
.ct-none { color: var(--text-muted); opacity: 0.35; }

.compare-table__legend {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* ----- Effect timeline ----- */
.timeline-section {
  padding-block: 64px;
  background: rgba(90, 130, 70, 0.04);
}

.effect-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.effect-timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--rgb-accent), 0.2));
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-item:nth-child(3) { transition-delay: 0.30s; }

.timeline-item__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg, #fff);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: var(--accent);
  box-shadow: 0 2px 14px rgba(var(--rgb-accent), 0.2);
}

.timeline-item__period {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  white-space: nowrap;
}

.timeline-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.timeline-item__desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 580px) {
  .effect-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .effect-timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .timeline-item__dot {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ----- Trust strip ----- */
.trust-strip {
  padding: 48px 0;
  border-top: 1px solid rgba(var(--rgb-accent), 0.12);
  border-bottom: 1px solid rgba(var(--rgb-accent), 0.12);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.trust-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-item:nth-child(2) { transition-delay: 0.10s; }
.trust-item:nth-child(3) { transition-delay: 0.20s; }
.trust-item:nth-child(4) { transition-delay: 0.30s; }

.trust-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--rgb-accent), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.trust-item__sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Floating contact widget ----- */
.contact-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  z-index: 200;
  transition: opacity 0.3s, transform 0.3s;
}

.contact-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.contact-float__close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(50, 60, 40, 0.18);
  color: var(--text-primary, #2a3020);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0;
  align-self: flex-end;
}

.contact-float__close:hover {
  opacity: 1;
}

.contact-float__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  text-decoration: none;
}

.contact-float__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.contact-float__btn--tg { background: #229ED9; }
.contact-float__btn--wa { background: #25D366; }

/* ----- Scroll-triggered banner ----- */
.scroll-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-banner.is-visible {
  transform: translateY(0);
}

.scroll-banner__inner {
  background: #1a2318;
  border-top: 2px solid var(--accent);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-banner__text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex: 1 1 200px;
}

.scroll-banner__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scroll-banner__link {
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.2s;
}

.scroll-banner__link:hover {
  filter: brightness(1.15);
}

.scroll-banner__link--tg {
  background: #229ED9;
  color: #fff;
}

.scroll-banner__link--wa {
  background: #25D366;
  color: #fff;
}

.scroll-banner__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.scroll-banner__close:hover {
  color: #fff;
}

/* ----- Scroll banner: Написать button ----- */
.scroll-banner__contact-wrap {
  position: relative;
  flex-shrink: 0;
}

.scroll-banner__contact-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.18s;
}

.scroll-banner__contact-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.scroll-banner__contact-btn svg {
  transition: transform 0.22s;
  flex-shrink: 0;
}

.scroll-banner__contact-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* ----- Contact panel (from scroll banner) ----- */
.contact-panel {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: #1d2518;
  border: 1px solid rgba(var(--rgb-accent), 0.22);
  border-radius: 12px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  min-width: 215px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
  z-index: 10;
}

.contact-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-panel__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.contact-panel__item:hover {
  background: rgba(var(--rgb-accent), 0.15);
  color: #fff;
}

.contact-panel__item + .contact-panel__item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-panel__icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.contact-panel__icon--tg { color: #229ED9; opacity: 1; }
.contact-panel__icon--wa { color: #25D366; opacity: 1; }
.contact-panel__icon--max { color: #0077FF; opacity: 1; }

/* ----- Timeline: hover lift + dot glow ----- */
@media (hover: hover) {
  .timeline-item.is-visible:hover {
    transform: translateY(-8px);
    transition: transform 0.26s var(--ease);
  }

  .timeline-item.is-visible:hover .timeline-item__dot {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 22px rgba(var(--rgb-accent), 0.5);
    transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  }

  .timeline-item.is-visible:hover .timeline-item__period {
    letter-spacing: 0.06em;
    transition: letter-spacing 0.26s;
  }
}

/* ----- Timeline: pulse ring on reveal ----- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes dot-pulse {
    0%   { box-shadow: 0 2px 14px rgba(var(--rgb-accent), 0.2), 0 0 0 0   rgba(var(--rgb-accent), 0.45); }
    60%  { box-shadow: 0 2px 14px rgba(var(--rgb-accent), 0.2), 0 0 0 12px rgba(var(--rgb-accent), 0);   }
    100% { box-shadow: 0 2px 14px rgba(var(--rgb-accent), 0.2), 0 0 0 0   rgba(var(--rgb-accent), 0);   }
  }

  .timeline-item.is-visible .timeline-item__dot {
    animation: dot-pulse 1.8s ease-out 0.7s 2;
  }
}

/* ----- How-eco: hover lift + orb glow ----- */
.how-eco__step-inner {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.how-eco__orb {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@media (hover: hover) {
  .how-eco__step:hover .how-eco__step-inner {
    transform: translateY(-7px);
    box-shadow: 0 18px 48px rgba(var(--rgb-dark), 0.16);
  }

  .how-eco__step:hover .how-eco__orb {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(var(--rgb-accent), 0.38);
  }

  .how-eco__step:hover .how-eco__badge {
    background: var(--accent);
    color: var(--dark);
    transition: background 0.25s, color 0.25s;
  }
}

/* ----- How-eco: floating sprig animation ----- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes sprig-float {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(-5px) rotate(7deg); }
  }

  .how-eco__sprig {
    animation: sprig-float 3.8s ease-in-out infinite alternate;
    transform-origin: 50% 80%;
  }

  .how-eco__step:nth-child(1) .how-eco__sprig { animation-delay: 0s; }
  .how-eco__step:nth-child(3) .how-eco__sprig { animation-delay: 1.4s; }
  .how-eco__step:nth-child(5) .how-eco__sprig { animation-delay: 2.8s; }
  .how-eco__step:nth-child(7) .how-eco__sprig { animation-delay: 0.9s; }
}

/* =============================================================
   HEADER: nav-style contacts dropdown + compact cart icon
   ============================================================= */

/* ----- Contacts as nav item ----- */
.contact-menu--nav {
  position: relative;
}

.contact-menu--nav .contact-menu__summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 6px 0;
  min-height: auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.contact-menu--nav .contact-menu__summary::-webkit-details-marker { display: none; }
.contact-menu--nav .contact-menu__summary::marker { display: none; }

.contact-menu--nav .contact-menu__summary svg {
  transition: transform 0.22s var(--ease);
  flex-shrink: 0;
}

.contact-menu--nav .contact-menu__summary:hover {
  background: none;
  color: #fff;
  border-bottom-color: var(--accent);
}

.contact-menu--nav[open] .contact-menu__summary {
  color: #fff;
  border-bottom-color: var(--accent);
}

.contact-menu--nav[open] .contact-menu__summary svg {
  transform: rotate(180deg);
}

/* Panel positioning — drops below the nav item */
.contact-menu--nav .contact-menu__panel {
  top: calc(100% + 12px);
  right: 0;
  left: auto;
}

/* ----- Compact cart icon button ----- */
.header-actions__cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background var(--dur), color var(--dur);
  flex-shrink: 0;
}

.header-actions__cart-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Badge repositioned for icon-only button */
.header-actions__cart-btn .header-actions__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 17px;
}

/* =============================================================
   FLOAT WIDGET v2: single trigger → full contact panel
   ============================================================= */

/* Base wrapper — override old stacking layout */
.contact-float {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  transition: bottom 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s, transform 0.3s;
}

/* Panel — sits above the trigger row */
.contact-float__panel {
  background: #1d2518;
  border: 1px solid rgba(var(--rgb-accent), 0.22);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.42);
  min-width: 218px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transform-origin: bottom right;
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
}

.contact-float__panel.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Bottom row: dismiss × + trigger button */
.contact-float__row {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Small dismiss (sessionStorage hide) */
.contact-float__dismiss {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 26, 16, 0.72);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.contact-float__dismiss:hover {
  background: rgba(20, 26, 16, 0.9);
  color: #fff;
}

/* Main trigger button */
.contact-float__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(var(--rgb-accent), 0.5);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s;
  position: relative;
}

.contact-float__trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(var(--rgb-accent), 0.6);
}

/* Icon swap: chat ↔ close */
.contact-float__icon-close {
  display: none;
}

.contact-float__trigger[aria-expanded="true"] {
  background: rgba(20, 26, 16, 0.88);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-float__trigger[aria-expanded="true"] .contact-float__icon-chat {
  display: none;
}

.contact-float__trigger[aria-expanded="true"] .contact-float__icon-close {
  display: block;
}

/* ----- Ghost button on light backgrounds (product hero, cta-final) ----- */
.product-hero .btn--ghost,
.cta-final .btn--ghost {
  background: rgba(var(--rgb-dark), 0.07);
  color: var(--text);
  border: 1px solid rgba(var(--rgb-dark), 0.2);
}
.product-hero .btn--ghost:hover,
.cta-final .btn--ghost:hover {
  background: rgba(var(--rgb-dark), 0.13);
}
