/* Бленд71 — сдержанный современный редизайн */
:root {
  --tobacco: #5c3d2e;
  --tobacco-mid: #7a5238;
  --tobacco-light: #a67c52;
  --amber: #c9a227;
  --amber-dark: #a6851f;
  --rust: #8b4513;
  --dark: #1a1410;
  --dark-soft: #2c231c;
  --cream: #f7f3ec;
  --cream-dark: #ebe4d8;
  --white: #ffffff;
  --text: #2c2419;
  --text-muted: #6b5d4f;
  --border: #d9cfc0;
  --shadow: 0 4px 24px rgba(44, 36, 25, 0.08);
  --shadow-hover: 0 12px 40px rgba(44, 36, 25, 0.14);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --glow: 0 0 40px rgba(201, 162, 39, 0.22);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-h: 72px;
  --header-bar-h: 1.85rem;
  --mobile-menu-top: calc(var(--safe-top) + var(--header-bar-h) + var(--header-h));
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; border: none; outline: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, .btn, .header__burger, .catalog-filter, .about-tabs__btn {
  touch-action: manipulation;
}

.container {
  width: min(1280px, 100% - 32px);
  margin-inline: auto;
}

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26, 20, 16, 0.94);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate.hidden { display: none; }
.age-gate__box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}
.age-gate__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tobacco);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.age-gate__text { color: var(--text-muted); margin-bottom: 28px; }
.age-gate__warn {
  font-size: 0.85rem;
  color: var(--rust);
  margin-top: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}
.btn--primary:hover { background: var(--amber-dark); }
.btn--glow:hover { box-shadow: 0 6px 28px rgba(201, 162, 39, 0.5), var(--glow); }
.btn--secondary {
  background: var(--tobacco);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92, 61, 46, 0.25);
}
.btn--secondary:hover { background: var(--tobacco-mid); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--tobacco);
  color: var(--tobacco);
}
.btn--outline:hover { background: var(--tobacco); color: var(--white); }
.btn--accent {
  background: var(--cream-dark);
  color: var(--tobacco);
  border: 1px solid var(--border);
}
.btn--accent:hover { background: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--with-icon { gap: 8px; }
.btn__icon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.btn__icon--round { border-radius: 50%; }
.btn--light {
  background: var(--white);
  color: var(--tobacco);
}
.btn--light:hover { background: var(--cream); }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 1100;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__top {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 6px 0;
  text-align: center;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tobacco);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  text-decoration: none;
}
.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  background: var(--dark);
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  letter-spacing: 0;
}
.header__nav { display: flex; gap: 2px; align-items: center; }
.header__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.header__link:hover { background: var(--cream-dark); color: var(--tobacco); }
.header__link.is-active {
  background: rgba(201, 162, 39, 0.12);
  color: var(--tobacco);
  font-weight: 600;
}
.header__dropdown { position: relative; }
.header__dropdown-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  background: none;
  display: flex; align-items: center; gap: 4px;
  color: var(--text);
}
.header__dropdown-menu {
  position: absolute; top: 100%; right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  padding: 6px;
  min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.header__dropdown:hover .header__dropdown-menu,
.header__dropdown.open .header__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(4px);
}
.header__dropdown-menu a {
  display: block; padding: 10px 14px;
  border-radius: 6px; font-size: 0.9rem;
  transition: background 0.15s;
}
.header__dropdown-menu a:hover { background: var(--cream); }
.header__dropdown-menu a.is-active {
  background: var(--cream-dark);
  color: var(--tobacco);
  font-weight: 600;
}
.header__contacts { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__phone {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--tobacco);
}
.header__messengers { display: flex; gap: 8px; align-items: center; }
.header__msg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  line-height: 0;
}
.header__msg-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.header__msg:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.header__msg--max,
.header__msg--tg,
.header__msg--vk {
  background: none;
}
.header__burger {
  display: none;
  width: 40px; height: 40px;
  background: var(--tobacco);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.header__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Channel banner */
.channel-banner {
  background: var(--dark-soft);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  border-bottom: 2px solid var(--amber);
  position: relative;
  overflow: hidden;
}
.channel-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(201, 162, 39, 0.08) 50%, transparent 60%);
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.channel-banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.channel-banner p { font-size: 0.88rem; font-weight: 500; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(166, 124, 82, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #1a1410 0%, #2c231c 45%, #3d2e22 100%);
  z-index: 0;
  transform: translateY(var(--hero-shift, 0));
  will-change: transform;
}
.hero__leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.hero__leaf--1 {
  width: 90px;
  top: 12%;
  right: 8%;
  animation: leaf-float 8s ease-in-out infinite;
}
.hero__leaf--2 {
  width: 70px;
  bottom: 18%;
  left: 6%;
  animation: leaf-float 11s ease-in-out infinite reverse;
}
@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(4deg); }
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__deco {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  animation: spin-slow 40s linear infinite;
}
.hero__deco--2 {
  width: 300px; height: 300px;
  bottom: -120px; left: 5%;
  border-color: rgba(166, 124, 82, 0.2);
  animation: spin-slow 55s linear infinite reverse;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero__title-line {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}
.hero__title-accent {
  display: block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--amber);
  font-size: 0.92em;
}
.hero__text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  margin-bottom: 12px;
  max-width: 540px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero__chip {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__visual {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}
.hero__visual-ring::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(166, 124, 82, 0.25);
  animation: spin-slow 20s linear infinite reverse;
}
.hero__visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  width: 140px; height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hero__visual-icon { font-size: 2rem; margin-bottom: 4px; }
.hero__visual-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
}
.hero__visual-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}
.hero__form-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--text);
}
.hero__form-glow {
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 2px;
}
.hero__form-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--tobacco);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero__form-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus {
  border-color: var(--amber);
  background: var(--white);
}
.form-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.4;
}
.form-legal a { color: var(--tobacco-mid); text-decoration: underline; }

/* Stats bar */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--white); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}
.stat-item:hover::after { width: 40px; }
.stat-item__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--tobacco);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; position: relative; }
.section--alt {
  background: var(--cream-dark);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(92, 61, 46, 0.05) 0%, transparent 40%);
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section__header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section__label {
  display: block;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  color: var(--amber-dark);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow);
}
.section__label--coral,
.section__label--purple,
.section__label--lime,
.section__label--cyan,
.section__label--orange {
  background: var(--cream-dark);
  color: var(--tobacco-mid);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
}
.section__desc {
  color: var(--text-muted);
  max-width: 720px;
  margin-inline: auto;
  width: 100%;
}
.section--dark .section__desc { color: rgba(255,255,255,0.65); }

.section__title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--tobacco-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--amber), var(--tobacco-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-hover);
}
.benefit:hover::before { opacity: 1; }
.benefit__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.benefit__check {
  display: block;
  width: 8px; height: 5px;
  border-left: 2px solid var(--amber-dark);
  border-bottom: 2px solid var(--amber-dark);
  transform: rotate(-45deg) translateY(-1px);
}
.benefit__text { font-weight: 500; font-size: 0.93rem; padding-top: 3px; }
.benefits-cta {
  text-align: center;
  margin-top: 36px;
  padding: 20px 28px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--tobacco);
  background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(166,124,82,0.06));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
  max-width: 640px;
  margin-inline: auto;
}

/* Product cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), transparent);
  border-radius: 0 0 0 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), var(--glow);
  border-color: rgba(201, 162, 39, 0.45);
}
.product-card:hover::after { opacity: 1; }
.product-card__img {
  height: 220px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: #1a1410;
  padding: 0;
}
.product-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}
.product-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 20, 16, 0.35) 100%);
}
.product-card__img::after {
  display: none;
}
.product-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.product-card__blend {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-card__short { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.product-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
}
.strength {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
}
.strength__bar {
  width: 72px; height: 5px;
  background: var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
}
.strength__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--tobacco-light), var(--amber));
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tobacco);
}
.product-card__details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: none;
}
.product-card.expanded .product-card__details { display: block; }
.product-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.product-card__actions .btn { flex: 1; min-width: 0; }
.product-card__weights {
  margin: 0 0 14px;
}
.product-card__weights-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.product-card__weight-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card__weight-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.product-card__weight-btn:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
}
.product-card__weight-btn.is-active {
  background: var(--green-soft);
  border-color: rgba(64, 145, 108, 0.45);
  color: var(--green-dark);
}
.header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-dark);
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.header__cart:hover {
  border-color: rgba(64, 145, 108, 0.45);
  background: var(--green-soft);
  color: var(--green-mid);
}
.header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.header__cart-count:empty,
.header__cart-count[data-empty="true"] {
  display: none;
}
.mobile-menu__cart {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.mobile-menu__cta {
  width: 100%;
  min-height: 48px;
}
.hit-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.hit-card__actions .btn {
  flex: 1;
  min-width: 0;
}
.product-card__letter {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}
.product-card__emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.product-card--featured {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 162, 39, 0.15);
}
.product-card__per100 {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.product-card__price-wrap { text-align: right; }

/* Catalog toolbar */
.catalog-toolbar {
  margin-bottom: 16px;
}
.catalog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.catalog-search:focus-within {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.catalog-search__input {
  flex: 1;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}
.catalog-search__input::placeholder { color: var(--text-muted); }

/* About tabs */
.about-tabs {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.about-tabs__btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.2s;
}
.about-tabs__btn:hover {
  border-color: rgba(201, 162, 39, 0.4);
  color: var(--tobacco);
}
.about-tabs__btn.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--amber);
}
.about-tabs__panel { display: none; }
.about-tabs__panel.is-active { display: block; }
.about-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-mini__item {
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.about-mini__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--tobacco);
  margin-bottom: 6px;
}
.about-mini__item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1100;
  background: rgba(26, 20, 16, 0.08);
  pointer-events: none;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tobacco-light), var(--amber));
  transition: width 0.08s linear;
}

/* Product modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.72);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  padding: 28px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s;
}
.modal.open .modal__dialog {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: 0.2s;
}
.modal__close:hover {
  background: var(--cream-dark);
  color: var(--tobacco);
}
.modal__visual {
  height: 240px;
  border-radius: var(--radius-sm);
  background: #1a1410;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.modal__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.modal__emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}
.modal__letter {
  position: absolute;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  bottom: -8px;
  right: 16px;
}
.modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--dark);
}
.modal__blend {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.modal__text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.modal__meta span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--tobacco);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 890;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--tobacco);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
}

/* Тёплые вариации фона карточек */
.product-card--coral .product-card__img { background: linear-gradient(145deg, #3d2a1f, #5c3d2e); }
.product-card--cyan .product-card__img { background: linear-gradient(145deg, #2e2618, #4a3828); }
.product-card--purple .product-card__img { background: linear-gradient(145deg, #352818, #5a4030); }
.product-card--lime .product-card__img { background: linear-gradient(145deg, #2a3020, #454830); }
.product-card--orange .product-card__img { background: linear-gradient(145deg, #3d2e18, #6b4e28); }
.product-card--pink .product-card__img { background: linear-gradient(145deg, #3a2820, #5c4035); }
.product-card--yellow .product-card__img { background: linear-gradient(145deg, #3d3218, #6b5a30); }
.product-card--indigo .product-card__img { background: linear-gradient(145deg, #282018, #443528); }

/* Packaging block */
.packaging {
  background: var(--dark-soft);
  border-radius: var(--radius);
  padding: 44px 40px;
  color: var(--white);
  text-align: center;
  margin-top: 44px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  position: relative;
  overflow: hidden;
}
.packaging::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(201,162,39,0.03) 20px, rgba(201,162,39,0.03) 21px);
  pointer-events: none;
}
.packaging::after {
  content: '◆';
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  color: var(--amber);
  font-size: 0.6rem;
  opacity: 0.5;
}
.packaging h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber);
  position: relative;
  z-index: 1;
}
.packaging p { opacity: 0.85; max-width: 700px; margin-inline: auto; font-size: 0.95rem; position: relative; z-index: 1; }

/* Sets */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.set-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.set-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tobacco), var(--amber), var(--tobacco-light));
}
.set-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.set-card__img {
  margin: -28px -26px 16px;
  height: 200px;
  background: #1a1410;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.set-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.set-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -0.02em;
}
.set-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.set-card__text { font-size: 0.88rem; color: var(--text-muted); flex: 1; margin-bottom: 18px; }
.set-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tobacco);
  margin-bottom: 14px;
}
.set-card__price del {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 8px;
}

/* Accessories */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.accessory-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.accessory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.35);
}
.accessory-card__img {
  height: 180px;
  margin: -26px -26px 16px;
  background: #1a1410;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.accessory-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.accessory-card__title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.accessory-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.accessory-card__title a:hover { color: var(--amber-dark); }
a.accessory-card__img {
  display: block;
  color: inherit;
  text-decoration: none;
}
.accessory-card__text { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.accessory-card__price { font-weight: 700; color: var(--tobacco); margin-bottom: 14px; }

/* Media mentions */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.media-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.media-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.media-card__name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  padding: 12px 10px;
}
.media-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Reviews gallery */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.review-card {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.review-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,162,39,0.08), transparent 55%);
  pointer-events: none;
}
.review-card::before {
  content: attr(data-label);
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26, 20, 16, 0.85);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  padding: 7px;
  text-align: center;
}
.review-card:hover {
  border-color: var(--amber);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* CTA block */
.cta-block {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 48px 44px;
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.25);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  top: -200px; right: -100px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.1);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  bottom: -150px; left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08), transparent 70%);
  pointer-events: none;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber);
}
.cta-block p { opacity: 0.8; margin-bottom: 24px; }
.cta-block .form-group input {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.cta-block .form-group input:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.1);
}
.cta-block .form-group input::placeholder { color: rgba(255,255,255,0.45); }
.cta-form { max-width: 400px; margin-inline: auto; }
.cta-block .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.cta-block .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--amber);
  color: var(--amber);
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.advantage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--tobacco-light));
}
.advantage-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.advantage-card--1, .advantage-card--2, .advantage-card--3,
.advantage-card--4, .advantage-card--5 { }
.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.advantage-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Guide accordion */
.guide-list { max-width: 900px; margin-inline: auto; }
.guide-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.guide-item__head {
  width: 100%;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  background: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  gap: 16px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.guide-item__head::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: var(--font-body);
}
.guide-item.open .guide-item__head {
  background: rgba(201, 162, 39, 0.06);
  color: var(--tobacco);
}
.guide-item.open .guide-item__head::after { transform: rotate(45deg); }
.guide-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.guide-item.open .guide-item__body { max-height: 600px; }
.guide-item__content {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.guide-item__content ul { margin-top: 8px; }
.guide-item__content li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.guide-item__content li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--amber);
}

/* FAQ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.93rem;
  gap: 16px;
  color: var(--dark);
}
.faq-item__q::after {
  content: '▼';
  font-size: 0.65rem;
  color: var(--amber);
  transition: transform 0.3s;
}

.faq-item.open .faq-item__q {
  background: rgba(201, 162, 39, 0.06);
  color: var(--tobacco);
}
.faq-item.open .faq-item__q::after { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p {
  padding: 0 22px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 22px;
  border-top: 3px solid var(--amber);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand .footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.footer__brand .footer__logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0;
  padding: 0;
  background: var(--amber);
  color: var(--dark);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 10px;
  line-height: 1.5;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 14px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--amber); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer__logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: var(--amber);
  color: var(--dark);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.footer__phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__legal {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.65;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--amber); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
  opacity: 0.5;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: var(--mobile-menu-top);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 850;
  background: rgba(13, 20, 16, 0.45);
  backdrop-filter: blur(2px);
  animation: menu-backdrop-in 0.3s ease;
}

@keyframes menu-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--mobile-menu-top);
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 380px);
  z-index: 900;
  background: var(--dark);
  padding: 20px 20px calc(24px + var(--safe-bottom));
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.22);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close,
.mobile-menu__brand {
  display: none !important;
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.mobile-menu__nav > a {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__label {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 0 8px;
}
.mobile-menu__sub { padding-left: 0; margin-bottom: 4px; }
.mobile-menu__sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu__messengers {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.mobile-menu__messengers .header__msg {
  flex: 1;
  width: auto;
  height: 44px;
  min-height: 44px;
}
.mobile-menu__messengers .header__msg-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.mobile-menu__phone {
  color: var(--amber);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu__note {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits .reveal:nth-child(2) { transition-delay: 0.05s; }
.benefits .reveal:nth-child(3) { transition-delay: 0.1s; }
.benefits .reveal:nth-child(4) { transition-delay: 0.15s; }
.benefits .reveal:nth-child(5) { transition-delay: 0.2s; }
.catalog-grid .product-card.reveal:nth-child(3n+2) { transition-delay: 0.08s; }
.catalog-grid .product-card.reveal:nth-child(3n+3) { transition-delay: 0.16s; }

/* ===== ENHANCED UI ===== */
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--amber);
  color: var(--amber);
}
.section--hits {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--hits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.1), transparent 55%);
  pointer-events: none;
}
.section--hits .section__title { color: var(--white); }
.section--hits .section__title::after { background: linear-gradient(90deg, var(--amber), transparent); }
.section--hits .section__label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: none;
}

.header--scrolled {
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.12);
  background: rgba(247, 243, 236, 0.98);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: bounce-scroll 2s ease infinite;
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px;
}
.trust-item__icon { font-size: 1.1rem; }

.about-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}
.about-content .section__header {
  text-align: left;
  align-items: flex-start;
}
.about-content .section__title {
  max-width: none;
}
.about-content .section__title::after { margin: 14px 0 0; }
.about-content .section__desc { margin-inline: 0; max-width: none; }
.about-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.about-showcase__card {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.about-showcase__card--main {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, var(--dark-soft), var(--tobacco));
  color: var(--white);
  border-color: rgba(201, 162, 39, 0.3);
  padding: 28px;
}
.about-showcase__card--main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin: 8px 0;
}
.about-showcase__card--main p { font-size: 0.88rem; opacity: 0.8; }
.about-showcase__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.about-showcase__card--sm {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-showcase__card--sm strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--tobacco);
  line-height: 1;
}
.about-showcase__card--dark {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  border-color: rgba(201,162,39,0.2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  justify-content: center;
}

.hits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.hit-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.hit-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}
.hit-card__visual {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  border-right: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: #1a1410;
}
.hit-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hit-card.product-card--coral .hit-card__visual { background: linear-gradient(145deg, #3d2a1f, #5c3d2e); }
.hit-card.product-card--cyan .hit-card__visual { background: linear-gradient(145deg, #2e2618, #4a3828); }
.hit-card.product-card--purple .hit-card__visual { background: linear-gradient(145deg, #352818, #5a4030); }
.hit-card.product-card--lime .hit-card__visual { background: linear-gradient(145deg, #2a3020, #454830); }
.hit-card.product-card--orange .hit-card__visual { background: linear-gradient(145deg, #3d2e18, #6b4e28); }
.hit-card.product-card--pink .hit-card__visual { background: linear-gradient(145deg, #3a2820, #5c4035); }
.hit-card.product-card--yellow .hit-card__visual { background: linear-gradient(145deg, #3d3218, #6b5a30); }
.hit-card.product-card--indigo .hit-card__visual { background: linear-gradient(145deg, #282018, #443528); }
.hit-card__emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.hit-card__body { padding: 20px; }
.hit-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber);
  margin: 0 0 4px;
  text-transform: uppercase;
  line-height: 1.3;
  padding-right: 0;
}
.hit-card__blend { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.hit-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
  gap: 8px;
}
.hit-card__price { display: block; font-weight: 700; color: var(--white); font-size: 0.95rem; }
.hit-card__per { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.hit-card__str { font-size: 0.72rem; color: var(--amber); white-space: nowrap; }

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.catalog-filter {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: 0.2s;
}
.catalog-filter:hover { border-color: var(--amber); color: var(--tobacco); }
.catalog-filter.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--amber);
}

.product-card { position: relative; }
.product-card__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
}
.product-card__tag--hit { background: var(--amber); color: var(--dark); }
.product-card__tag--new { background: var(--tobacco); color: var(--white); }
.product-card__tag--value { background: #2d5a3d; color: #b8e0c8; }

.marquee {
  overflow: hidden;
  margin-bottom: 28px;
  padding: 14px 0;
  border-block: 1px solid var(--border);
  background: var(--white);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tobacco-mid);
}
.marquee__track span:nth-child(odd) { color: var(--amber-dark); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.review-quote {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 32px 36px;
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
  position: relative;
}
.review-quote::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(201, 162, 39, 0.25);
  line-height: 1;
}
.review-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  padding-left: 24px;
}
.review-quote cite {
  display: block;
  margin-top: 14px;
  padding-left: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__visual { max-height: 140px; }
  .hero__side { gap: 16px; }
  .about-split { grid-template-columns: 1fr; gap: 28px; }
  .about-showcase { position: static; }
  .hits-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .header__nav,
  .header__contacts .header__phone { display: none; }
  .header__burger { display: flex; }
  .header__contacts { gap: 8px; }
  .header__msg,
  .header__msg-icon { width: 36px; height: 36px; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
    --header-bar-h: 1.65rem;
  }

  .container { width: min(1280px, 100% - 24px); }

  .header__top {
    font-size: 0.68rem;
    padding: 5px 0;
    line-height: 1.35;
  }
  .header__inner { height: var(--header-h); gap: 10px; }
  .header__logo { font-size: 1.15rem; }

  .channel-banner { padding: 10px 0; }
  .channel-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .channel-banner p { font-size: 0.82rem; line-height: 1.45; }
  .channel-banner .btn { width: 100%; max-width: 220px; }

  .hero { padding: 32px 0 48px; }
  .hero__deco,
  .hero__leaf { display: none; }
  .hero__title { font-size: clamp(1.35rem, 6vw, 1.75rem); margin-bottom: 16px; }
  .hero__text { font-size: 0.92rem; }
  .hero__chips { margin-top: 16px; }
  .hero__visual { display: none; }
  .hero__form-card { padding: 22px 18px; }
  .hero__form-title { font-size: 1rem; }
  .hero__form-sub { font-size: 0.82rem; }
  .hero__actions { margin-top: 20px; }
  .form-legal { font-size: 0.68rem; }

  .section { padding: 48px 0; }
  .section__header { margin-bottom: 32px; }

  .about-content .section__header {
    text-align: center;
    align-items: center;
  }
  .about-content .section__title::after { margin: 14px auto 0; }
  .about-content .section__desc { text-align: center; }
  .about-showcase__card--main { padding: 22px; }
  .about-showcase__card--main strong { font-size: 1.5rem; }

  .benefits { grid-template-columns: 1fr; }
  .benefit { padding: 16px 18px; }

  .about-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -4px;
    padding-inline: 4px 12px;
    gap: 6px;
  }
  .about-tabs__nav::-webkit-scrollbar { display: none; }
  .about-tabs__btn { flex-shrink: 0; padding: 10px 16px; font-size: 0.8rem; }

  .catalog-toolbar { margin-bottom: 12px; }
  .catalog-search { max-width: none; padding: 12px 14px; }
  .catalog-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -12px;
    padding: 4px 12px 8px;
    margin-bottom: 24px;
    gap: 6px;
  }
  .catalog-filters::-webkit-scrollbar { display: none; }
  .catalog-filter { flex-shrink: 0; padding: 10px 16px; font-size: 0.8rem; }

  .product-card__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-card__price-wrap { text-align: left; }
  .strength { flex-wrap: wrap; }
  .product-card__actions .btn { width: 100%; min-height: 44px; }

  .hit-card__footer { flex-wrap: wrap; }
  .hit-card__body .btn { width: 100%; min-height: 44px; }

  .sets-grid,
  .accessories-grid,
  .advantages-grid { grid-template-columns: 1fr; }

  .media-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .review-quote {
    padding: 24px 20px;
    margin-bottom: 24px;
  }
  .review-quote p { font-size: 0.95rem; padding-left: 16px; }
  .review-quote cite { padding-left: 16px; }

  .marquee__track { font-size: 0.78rem; gap: 20px; }

  .guide-item__head,
  .faq-item__q {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .cta-block { padding: 32px 20px; }
  .cta-block h3 { font-size: 1.1rem; }

  .footer { padding: 40px 0 calc(18px + var(--safe-bottom)); }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.78rem;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }
  .modal__dialog {
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 24px 20px calc(20px + var(--safe-bottom));
    transform: translateY(100%);
  }
  .modal.open .modal__dialog { transform: translateY(0); }
  .modal__close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }
  .modal__content .btn { width: 100%; min-height: 48px; }

  .back-top {
    bottom: calc(16px + var(--safe-bottom));
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .age-gate__box { padding: 32px 22px; }
  .age-gate__logo { font-size: 1.65rem; }
}

@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .hero { padding: 28px 0 40px; }
  .hero__scroll { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; min-height: 48px; }
  .hero__chip { font-size: 0.72rem; }

  .hit-card { grid-template-columns: 1fr; }
  .hit-card__visual {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 0.72rem;
    padding: 10px 6px;
  }

  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 10px; }
  .stat-item__num { font-size: 1.2rem; }
  .stat-item__label { font-size: 0.7rem; }

  .packaging { padding: 24px 16px; margin-top: 28px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-card__img { height: 200px; }
  .product-card__body { padding: 18px; }

  .footer__grid { grid-template-columns: 1fr; }
  .about-mini { grid-template-columns: 1fr; }

  .btn { min-height: 44px; }
  .btn--sm { min-height: 40px; }
}

@media (max-width: 380px) {
  .container { width: min(1280px, 100% - 20px); }
  .header__contacts { display: none; }
  .header__logo { font-size: 1.05rem; }
  .header__burger { width: 44px; height: 44px; }

  .media-grid,
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card { font-size: 1.6rem; }

  .trust-bar__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .product-card:hover,
  .set-card:hover,
  .accessory-card:hover,
  .advantage-card:hover,
  .media-card:hover,
  .review-card:hover,
  .benefit:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
}

/* ── Inner pages ── */
.page-inner main { padding-bottom: 0; }

.page-hero {
  padding: 28px 0 36px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--tobacco-dark);
  margin: 0;
  line-height: 1.15;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--tobacco);
  text-decoration: none;
}

.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs__sep { opacity: 0.45; }

.page-prose {
  max-width: 820px;
  color: var(--text);
  line-height: 1.75;
}

.page-prose h2,
.page-prose h3 {
  font-family: var(--font-display);
  color: var(--tobacco-dark);
  margin: 28px 0 12px;
  line-height: 1.25;
}

.page-prose h2 { font-size: 1.35rem; }
.page-prose h3 { font-size: 1.1rem; }
.page-prose p { margin-bottom: 16px; }
.page-prose a { color: var(--tobacco); font-weight: 600; }
.page-prose a:hover { text-decoration: underline; }

.page-list {
  margin: 0 0 20px 1.1rem;
  padding: 0;
}

.page-list li { margin-bottom: 10px; }

.page-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

.page-trust {
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
  border: 1px solid var(--border);
}

.page-trust h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section__title--left {
  text-align: left;
  margin-bottom: 24px;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.steps-list__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.steps-list__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-dark);
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1px solid rgba(139, 90, 43, 0.15);
}

.steps-list__item p { margin: 0; line-height: 1.65; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: var(--tobacco-dark);
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.accessory-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: -6px 0 10px;
  line-height: 1.45;
}

.accessory-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.accessory-card__old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 6px;
}

.accessory-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(30, 20, 12, 0.72);
}

.accessory-card--out {
  opacity: 0.88;
}

.accessory-card--out .accessory-card__img {
  filter: grayscale(0.35);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.archive-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.archive-card__body { padding: 22px; }

.archive-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--tobacco-dark);
}

.archive-card__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.archive-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.archive-card__price {
  font-weight: 700;
  color: var(--tobacco);
  margin-bottom: 14px;
}

.archive-card__old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 8px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.promo-card__img {
  height: 180px;
  background: #1a1410;
  position: relative;
  overflow: hidden;
}

.promo-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.promo-card__title,
.promo-card__meta,
.promo-card__text,
.promo-card__price,
.promo-card .btn {
  margin-left: 20px;
  margin-right: 20px;
}

.promo-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--tobacco-dark);
}

.promo-card__meta {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.promo-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}

.promo-card__price {
  font-weight: 700;
  color: var(--tobacco);
  margin-bottom: 16px;
}

.promo-card__old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 8px;
}

.promo-card .btn {
  margin-bottom: 20px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .contact-grid,
  .archive-grid,
  .promo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-hero { padding: 22px 0 28px; }
  .steps-list__item { grid-template-columns: 1fr; }
  .steps-list__num { width: 36px; height: 36px; font-size: 0.95rem; }
  .page-actions { flex-direction: column; }
  .page-actions .btn { width: 100%; }
}
