/* ================================================
   AMBRA Парфюм ДНР — Премиум дизайн-система
   Тёмно-синяя палитра с золотыми акцентами
   ================================================ */

/* === Шрифты === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === CSS-переменные === */
:root {
  /* Фоны — глубокий «полуночный» navy с шёлковым оттенком
     (по референсу: насыщенный, богатый, не чёрный) */
  --bg-deep: #060b1a;
  --bg-primary: #0c1430;
  --bg-secondary: #131e44;
  --bg-tertiary: #1a2858;
  --bg-card: #1d2b5c;
  --bg-card-hover: #243668;
  --bg-glass: rgba(28, 42, 88, 0.6);

  /* Акценты — тёплое шампанское золото + королевский синий */
  --gold: #d4a86a;
  --gold-bright: #ebc888;
  --gold-deep: #b88d4d;
  --gold-soft: rgba(212, 168, 106, 0.15);
  --accent: #4c7bd9;
  --accent-light: #7aa3ed;
  --accent-glow: rgba(76, 123, 217, 0.35);

  /* Текст */
  --text-primary: #ffffff;
  --text-secondary: #ede5d3;
  --text-muted: #9ca8c0;
  --text-faint: #6b7896;

  /* Границы */
  --border: rgba(212, 168, 106, 0.2);
  --border-strong: rgba(212, 168, 106, 0.45);
  --border-blue: rgba(76, 123, 217, 0.28);

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(6, 11, 26, 0.4);
  --shadow-md: 0 8px 28px rgba(6, 11, 26, 0.55);
  --shadow-lg: 0 20px 60px rgba(6, 11, 26, 0.65);
  --shadow-xl: 0 30px 90px rgba(6, 11, 26, 0.75);
  --shadow-gold: 0 0 45px rgba(212, 168, 106, 0.3);
  --shadow-blue: 0 0 45px rgba(76, 123, 217, 0.3);

  /* Радиусы */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Анимации */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Размеры */
  --container: 1400px;
  --header-h: 84px;
  --section-pad: clamp(60px, 8vw, 110px);

  /* Шрифты */
  --f-heading: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-deep);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* === Фоновые слои — глубокий полуночный navy с шёлковой текстурой === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    /* Сияние в верхнем-левом углу — основной свет */
    radial-gradient(ellipse 90% 70% at 15% 5%, rgba(76, 123, 217, 0.22), transparent 55%),
    /* Золотистое тепло в правом-верхнем */
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(212, 168, 106, 0.10), transparent 60%),
    /* Глубокая тень по центру внизу */
    radial-gradient(ellipse 100% 80% at 50% 95%, rgba(6, 11, 26, 0.7), transparent 70%),
    /* Шёлковая складка слева */
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(28, 42, 88, 0.4), transparent 60%),
    /* Шёлковая складка справа */
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(19, 30, 68, 0.35), transparent 65%),
    /* Основной градиент — от светлого центра к тёмным краям */
    linear-gradient(160deg, #131e44 0%, #0c1430 35%, #060b1a 70%, #060b1a 100%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  /* Тонкая золотая сетка-сито — шёлковый блеск */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 168, 106, 0.08) 1px, transparent 0),
    radial-gradient(circle at 12px 12px, rgba(76, 123, 217, 0.04) 1px, transparent 0);
  background-size: 40px 40px, 80px 80px;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: screen;
}

/* === Типографика === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

p { color: var(--text-secondary); }

a { color: inherit; text-decoration: none; transition: color var(--t-base); }
img { max-width: 100%; display: block; }

/* === SVG: глобальные правила === */
svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* === Focus accessibility === */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline-offset: 4px; }

/* === Утилиты === */
.text-gold { color: var(--gold); }

/* === Контейнер === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }

/* === Section header === */
.section-header,
.section-head { text-align: center; margin-bottom: 60px; }

.section-header .eyebrow,
.section-header .section-eyebrow,
.section-head .section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding: 0 36px;
  font-weight: 600;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after,
.section-header .section-eyebrow::before,
.section-header .section-eyebrow::after,
.section-head .section-eyebrow::before,
.section-head .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-header .eyebrow::before,
.section-header .section-eyebrow::before,
.section-head .section-eyebrow::before { left: 0; }
.section-header .eyebrow::after,
.section-header .section-eyebrow::after,
.section-head .section-eyebrow::after { right: 0; transform: rotate(180deg); }

.section-header h2,
.section-header .section-title,
.section-head h2,
.section-head .section-title { margin-bottom: 14px; }
.section-header p,
.section-header .section-subtitle,
.section-head p,
.section-head .section-subtitle { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.02rem; }
.section-divider { display: block; width: 60px; height: 2px; margin: 24px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* === Кнопки === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn > svg { width: 18px; height: 18px; flex: 0 0 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(212, 168, 106, 0.3);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212, 168, 106, 0.55); }
.btn--primary:hover::before { opacity: 1; }

.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%); color: var(--bg-deep); box-shadow: 0 4px 20px rgba(212, 168, 106, 0.3); }
.btn--gold::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%); opacity: 0; transition: opacity var(--t-base); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212, 168, 106, 0.55); }
.btn--gold:hover::before { opacity: 1; }
.btn--primary > span { position: relative; z-index: 1; }

.btn--ghost {
  background: rgba(20, 40, 80, 0.4);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold-bright);
}

.btn--blue {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(76, 123, 217, 0.3);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(76, 123, 217, 0.5); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: all var(--t-base);
  background: rgba(5, 9, 19, 0.4);
  backdrop-filter: blur(0px);
}
.header.scrolled {
  background: rgba(10, 20, 40, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-gold);
  animation: logoGlow 3s ease-in-out infinite;
}
.logo__mark::before {
  content: 'A';
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-deep);
}
.logo__mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  animation: pulseRing 2s ease-out infinite;
}

.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text small {
  font-family: var(--f-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}

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

.nav__link {
  position: relative;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-base);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--t-base);
  transform: translateX(-50%);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after, .nav__link.active::after { width: 60%; }
.nav__link.active { color: var(--gold); }

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

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--t-base);
  position: relative;
}
.icon-btn > svg { width: 22px; height: 22px; }
.icon-btn:hover {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: var(--r-full);
  display: grid;
  place-items: center;
  box-shadow: 0 0 12px rgba(212, 168, 106, 0.6);
}

.burger { display: none; }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(76, 123, 217, 0.32) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 106, 0.18) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content { position: relative; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: var(--gold-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1.05; margin-bottom: 28px; }
.hero h1 .accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.benefit {
  padding: 20px 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 106, 0.08), transparent);
  transition: left var(--t-slow);
}
.benefit:hover { transform: translateY(-4px); border-color: var(--border-strong); background: rgba(20, 40, 80, 0.7); box-shadow: var(--shadow-gold); }
.benefit:hover::before { left: 100%; }

.benefit__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), transparent);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  color: var(--gold);
}
.benefit__icon > svg { width: 26px; height: 26px; }

.benefit h4 { font-family: var(--f-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.benefit p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Карточка товара месяца === */
.hero-product { position: relative; perspective: 1500px; }

.hero-product__card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.95) 0%, rgba(15, 29, 61, 0.95) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition: transform var(--t-slow);
}
.hero-product__card:hover { transform: rotateY(-3deg) rotateX(3deg) translateY(-8px); }
.hero-product__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 30%, transparent 70%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

.product-badge {
  position: absolute;
  top: -16px;
  left: 32px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.product-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  border: 6px solid transparent;
  border-top-color: var(--gold-deep);
}

.hero-product__image {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, rgba(10, 20, 40, 0.6) 0%, rgba(15, 29, 61, 0.4) 100%);
}
.hero-product__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  filter: blur(8px);
}
.hero-product__image .bottle {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  animation: floatBottle 4s ease-in-out infinite;
}

.hero-product__brand {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-product__name {
  font-family: var(--f-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.volume-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  background: rgba(5, 9, 19, 0.5);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.volume-option {
  flex: 1;
  padding: 10px 8px;
  background: transparent;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--t-base);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.volume-option small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-faint);
  margin-top: 2px;
}
.volume-option:hover { color: var(--text-secondary); background: rgba(255, 255, 255, 0.04); }
.volume-option.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 12px rgba(212, 168, 106, 0.4);
}
.volume-option.active small { color: rgba(10, 20, 40, 0.7); }

.hero-product__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.price-current {
  font-family: var(--f-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-bright);
  transition: all var(--t-spring);
  display: inline-block;
}
.price-old { font-size: 1.1rem; color: var(--text-faint); text-decoration: line-through; }
.price-discount {
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.countdown {
  padding: 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}
.countdown__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f87171;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.countdown__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #f87171;
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.countdown__timer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.countdown__item {
  flex: 1;
  text-align: center;
  background: rgba(5, 9, 19, 0.5);
  padding: 8px 4px;
  border-radius: var(--r-sm);
}
.countdown__num { font-family: var(--f-heading); font-size: 1.5rem; font-weight: 600; color: var(--text-primary); line-height: 1; }
.countdown__unit { display: block; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.countdown__sep { font-family: var(--f-heading); font-size: 1.5rem; color: var(--text-faint); align-self: center; }

/* ================================================
   КАТЕГОРИИ
   ================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--t-slow);
  cursor: pointer;
  isolation: isolate;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(76, 123, 217, 0.55) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(212, 168, 106, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
  z-index: -2;
  transition: all var(--t-slow);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 9, 19, 0.85) 100%);
  z-index: -1;
}

.category-card .cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0.15;
  color: var(--gold);
  transition: all var(--t-slow);
  pointer-events: none;
}
.category-card .cat-icon > svg { width: 120px; height: 120px; }

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.category-card:hover::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.6) 0%, transparent 70%),
    linear-gradient(135deg, #1d2b5c 0%, #1a2858 100%);
}
.category-card:hover .cat-icon { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }

.category-card__content { position: relative; z-index: 1; width: 100%; }
.category-card__title {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: block;
}
.category-card__count {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.category-card__count::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.category-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--t-base);
  backdrop-filter: blur(10px);
}
.category-card__arrow > svg { width: 16px; height: 16px; }
.category-card:hover .category-card__arrow {
  background: var(--gold);
  color: var(--bg-deep);
  transform: rotate(-45deg);
}

.cat-large { grid-column: span 2; }
.cat-tall { grid-row: span 2; }

/* ================================================
   СЛАЙДЕР ТОВАРОВ
   ================================================ */
.slider-section { position: relative; }
.slider-wrap { position: relative; }

.slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 4px 40px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }

.slider__item { flex: 0 0 290px; width: 290px; scroll-snap-align: start; }
@media (max-width: 480px) { .slider__item { flex-basis: 240px; width: 240px; } }

.section-cta { text-align: center; margin-top: 40px; }

.slider-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }

.slider-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
}
.slider-tab {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  border: none;
  background: transparent;
}
.slider-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 12px rgba(212, 168, 106, 0.3);
}
.slider-tab:hover:not(.active) { color: var(--text-primary); background: rgba(255, 255, 255, 0.04); }

.slider-controls { display: flex; gap: 8px; }

.slider-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--t-base);
  cursor: pointer;
}
.slider-btn > svg { width: 20px; height: 20px; }
.slider-btn:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.slider-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* === Карточка товара === */
.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-slow);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  background:
    radial-gradient(circle at 50% 60%, rgba(76, 123, 217, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, #1a2858 0%, #0c1430 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card__media::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  filter: blur(6px);
}
.product-card__bottle {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
  transition: transform var(--t-slow);
}
.product-card:hover .product-card__bottle { transform: scale(1.08) rotate(-3deg); }

.product-card__tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.tag {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  backdrop-filter: blur(10px);
}
.tag--hit { background: rgba(76, 123, 217, 0.9); color: white; }
.tag--new { background: rgba(34, 197, 94, 0.9); color: white; }
.tag--sale { background: rgba(239, 68, 68, 0.9); color: white; }

.product-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(5, 9, 19, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--t-base);
  z-index: 2;
  cursor: pointer;
}
.product-card__fav > svg { width: 18px; height: 18px; }
.product-card__fav:hover, .product-card__fav.active {
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  transform: scale(1.1);
}

.product-card__body { padding: 20px; }

.product-card__brand { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.product-card__name {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__notes {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__volumes { display: flex; gap: 6px; margin-bottom: 14px; }

.volume-pill {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.volume-pill:hover { color: var(--text-secondary); border-color: var(--border-strong); }
.volume-pill.active { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }

.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__prices { display: flex; align-items: baseline; gap: 8px; }
.product-card__price {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  transition: color var(--t-base);
}
.product-card__price-old { font-size: 0.85rem; color: var(--text-faint); text-decoration: line-through; }

.product-card__cart {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 168, 106, 0.3);
}
.product-card__cart > svg { width: 18px; height: 18px; }
.product-card__cart:hover { transform: scale(1.1) rotate(-8deg); box-shadow: 0 6px 20px rgba(212, 168, 106, 0.5); }

/* ================================================
   О КОМПАНИИ
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }
.about-text p + p { color: var(--text-muted); }

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border-radius: var(--r-sm);
  color: var(--gold);
}
.about-feature__icon > svg { width: 20px; height: 20px; }
.about-feature h4 { font-family: var(--f-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.about-feature p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.about-stats { display: grid; grid-template-columns: 1fr; gap: 20px; }

.stat-card {
  padding: 28px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 20, 40, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  transition: all var(--t-slow);
}
.stat-card:hover { border-color: var(--border-strong); transform: translateX(-8px); box-shadow: var(--shadow-gold); }
.stat-card:hover::before { transform: scale(1.5); }

.stat-card__num {
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label { font-size: 0.95rem; color: var(--text-secondary); }
.stat-card__sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ================================================
   ОТЗЫВЫ
   ================================================ */
.reviews-wrap {
  position: relative;
  padding: 40px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.5) 0%, rgba(15, 29, 61, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-rating { display: flex; align-items: center; gap: 16px; }

.reviews-rating__logo {
  width: 56px;
  height: 56px;
  background: #ff0000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  position: relative;
}
.reviews-rating__logo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.3);
}

.reviews-rating__num {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.reviews-rating__stars { display: flex; gap: 4px; color: var(--gold); margin-top: 4px; }
.reviews-rating__stars > svg { width: 16px; height: 16px; }
.reviews-rating__count { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  padding: 24px;
  background: rgba(5, 9, 19, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.review-card:hover { border-color: var(--border-strong); background: rgba(20, 40, 80, 0.5); transform: translateY(-4px); }

.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1.1rem;
}
.review-card__name { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.review-card__date { font-size: 0.78rem; color: var(--text-faint); }

.review-card__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 12px; }
.review-card__stars > svg { width: 16px; height: 16px; }
.review-card__text { font-size: 0.92rem; line-height: 1.6; color: var(--text-secondary); }

/* ================================================
   НОВОСТИ / БЛОГ
   ================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 20px;
}

.news-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-slow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.news-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

.news-card__media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.news-card--large .news-card__media { aspect-ratio: 4/3; }

.news-card__media-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 106, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
  transition: transform var(--t-slow);
}
.news-card:hover .news-card__media-bg { transform: scale(1.08); }

.news-card__media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 168, 106, 0.4) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.news-card__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.15);
  z-index: 1;
}
.news-card__icon > svg { width: 64px; height: 64px; }
.news-card--large .news-card__icon > svg { width: 80px; height: 80px; }

.news-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; min-width: 0; }

.news-card__meta { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.news-card__cat {
  padding: 3px 9px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.news-card__title {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--t-base);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card--large .news-card__title { font-size: 1.7rem; -webkit-line-clamp: 3; }
.news-card:hover .news-card__title { color: var(--gold-bright); }

.news-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* === КРИТИЧЕСКИЙ ФИКС: стрелка в новостях === */
.news-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: all var(--t-base);
  white-space: nowrap;
  align-self: flex-start;
  max-width: 100%;
}
.news-card__link > svg {
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px !important;
  max-width: 14px !important;
  display: inline-block !important;
  transition: transform var(--t-base);
}
.news-card:hover .news-card__link { gap: 14px; color: var(--gold-bright); }
.news-card:hover .news-card__link > svg { transform: translateX(4px); }

/* ================================================
   КОНТАКТЫ
   ================================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.stores-list { display: flex; flex-direction: column; gap: 16px; }

.store-card {
  padding: 24px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6) 0%, rgba(10, 20, 40, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  transition: all var(--t-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.store-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.store-card:hover, .store-card.active {
  border-color: var(--border-strong);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.store-card:hover::before, .store-card.active::before { opacity: 1; }

.store-card__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.store-card__name { font-family: var(--f-heading); font-size: 1.25rem; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.store-card__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 8px;
  background: var(--gold-soft);
  border-radius: var(--r-sm);
}

.store-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.store-card__row > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--gold);
  margin-top: 3px;
}
.store-card__row a:hover { color: var(--gold); }

.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 500px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.6); }

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #1a2858 0%, #0c1430 100%);
  z-index: 1;
}
.map-placeholder__pins { position: relative; width: 100%; height: 100%; }
.map-placeholder__pin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(212, 168, 106, 0.5);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--t-base);
  animation: float 3s ease-in-out infinite;
}
.map-placeholder__pin:hover { transform: rotate(-45deg) scale(1.2); z-index: 5; }
.map-placeholder__pin span { transform: rotate(45deg); font-weight: 700; color: var(--bg-deep); font-size: 0.85rem; }
.map-placeholder__pin::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: rgba(212, 168, 106, 0.2);
  border-radius: 50%;
  filter: blur(6px);
  animation: pulse 2s ease-in-out infinite;
}
.map-placeholder__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 106, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 16px 20px;
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  max-width: 280px;
  z-index: 2;
}
.map-overlay h4 { font-family: var(--f-heading); font-size: 1.1rem; margin-bottom: 4px; }
.map-overlay p { font-size: 0.82rem; color: var(--text-muted); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 80px 0 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 9, 19, 0.8) 100%);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin: 20px 0; max-width: 320px; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: all var(--t-base);
}
.social-link > svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--gold-soft); color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a > svg { width: 12px; height: 12px; flex: 0 0 12px; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-faint);
}
.footer-bottom a:hover { color: var(--gold); }

/* ================================================
   ЖИВОЙ ПОИСК
   ================================================ */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 9, 19, 0.85);
  backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 24px 40px;
  opacity: 0;
  transition: opacity var(--t-base);
}
.search-modal.open { display: flex; opacity: 1; }

.search-modal__inner {
  width: 100%;
  max-width: 800px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.95) 0%, rgba(10, 20, 40, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  transform: translateY(-20px);
  transition: transform var(--t-slow);
}
.search-modal.open .search-modal__inner { transform: translateY(0); }

.search-input-wrap { display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-bottom: 1px solid var(--border); }
.search-input-wrap > svg.search-icon { width: 24px; height: 24px; color: var(--gold); flex: 0 0 24px; }

.search-input {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
}
.search-input::placeholder { color: var(--text-faint); }

.search-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  transition: all var(--t-base);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.search-close:hover { background: rgba(239, 68, 68, 0.15); color: #f87171; }

.search-results { max-height: 60vh; overflow-y: auto; padding: 12px 0; }
.search-results::-webkit-scrollbar { width: 6px; }
.search-results::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

.search-section-title {
  padding: 12px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
  color: inherit;
}
.search-result:hover, .search-result.focused { background: var(--gold-soft); }

.search-result__img {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border: 1px solid var(--border);
}
.search-result__img > svg { width: 24px; height: 24px; color: var(--gold); opacity: 0.7; }

.search-result__body { flex: 1; min-width: 0; }
.search-result__brand { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.search-result__name {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result mark { background: transparent; color: var(--gold-bright); font-weight: 600; }
.search-result__price { font-family: var(--f-heading); font-size: 1.1rem; font-weight: 600; color: var(--gold-bright); }

.search-empty { padding: 40px 28px; text-align: center; color: var(--text-muted); }
.search-empty > svg { width: 48px; height: 48px; margin-bottom: 12px; color: var(--text-faint); }

.search-hints {
  padding: 12px 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.search-hint {
  padding: 6px 12px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.search-hint:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-soft); }

/* ================================================
   СТРАНИЦА ТОВАРА
   ================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--text-faint); }
.breadcrumbs .sep { color: var(--text-faint); }

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  align-self: start;
}

.gallery-main {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 60%, rgba(76, 123, 217, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #1a2858 0%, #0c1430 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.gallery-main::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  filter: blur(10px);
}
.gallery-main > svg { filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)); max-width: 70%; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.gallery-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(76, 123, 217, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery-thumb:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.gallery-thumb:hover::before { opacity: 1; }
.gallery-thumb.active { border-color: var(--gold); box-shadow: 0 0 16px rgba(212, 168, 106, 0.3); }
.gallery-thumb.active::before { opacity: 1; }
.gallery-thumb > svg { max-width: 60%; }

.product-info { padding-top: 16px; }

.product-info__brand { font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.product-info__name {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.product-info__stars { display: flex; gap: 3px; color: var(--gold); }
.product-info__stars > svg { width: 18px; height: 18px; }
.product-info__rating-text { font-size: 0.9rem; color: var(--text-muted); }
.product-info__rating-text strong { color: var(--text-primary); }

.product-info__desc { font-size: 1.02rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 32px; }

.product-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.product-note { text-align: center; }
.product-note__title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.product-note__list { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

.product-volume-block { margin-bottom: 24px; }
.product-volume-block__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-volume-block__label small { color: var(--text-muted); font-weight: 400; }

.product-volume-list { display: flex; gap: 12px; }

.product-volume-card {
  flex: 1;
  padding: 16px 12px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
}
.product-volume-card:hover { border-color: var(--border-strong); background: var(--bg-card-hover); transform: translateY(-2px); }
.product-volume-card.active {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--gold-soft), transparent);
  box-shadow: var(--shadow-gold);
}
.product-volume-card.active::after {
  content: '✓';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-volume-card__ml { font-family: var(--f-heading); font-size: 1.4rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.product-volume-card__ml small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.product-volume-card__price { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.product-volume-card.active .product-volume-card__price { color: var(--gold-bright); }

.product-buy {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6), rgba(10, 20, 40, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.product-buy__prices { display: flex; align-items: baseline; gap: 12px; flex: 1; }
.product-buy__price {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  transition: all var(--t-spring);
  line-height: 1;
}
.product-buy__price-old { font-size: 1.1rem; color: var(--text-faint); text-decoration: line-through; }

.product-buy__qty { display: flex; align-items: center; background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--r-md); }
.qty-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  cursor: pointer;
}
.qty-btn > svg { width: 16px; height: 16px; }
.qty-btn:hover { color: var(--gold); }
.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: none;
}

.product-buy__actions { display: flex; gap: 12px; flex: 1; }
.product-buy__actions .btn { flex: 1; }

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.product-feature { display: flex; align-items: center; gap: 12px; }
.product-feature__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-sm);
  flex: 0 0 40px;
}
.product-feature__icon > svg { width: 20px; height: 20px; }
.product-feature__title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.product-feature__sub { font-size: 0.78rem; color: var(--text-muted); }

/* === Tabs === */
.product-tabs { border-top: 1px solid var(--border); padding-top: 60px; }
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  transition: color var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  border: none;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--t-base);
  transform: translateX(-50%);
}
.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active { color: var(--gold); }
.tab-btn.active::after { width: 80%; }

.tab-panel { display: none; animation: fadeIn var(--t-slow); }
.tab-panel.active { display: block; }
.tab-panel p { margin-bottom: 16px; }
.tab-panel h4 { margin: 24px 0 12px; }

/* ================================================
   СТРАНИЦА КАТЕГОРИИ
   ================================================ */
.category-hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(76, 123, 217, 0.2) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}
.category-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 16px; }
.category-hero p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; color: var(--text-muted); }

.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

/* === Премиум-фильтры === */
.filters {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  align-self: start;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.5) 0%, rgba(10, 20, 40, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  max-height: calc(100vh - var(--header-h) - 64px);
  overflow-y: auto;
  backdrop-filter: blur(20px);
}
.filters::-webkit-scrollbar { width: 6px; }
.filters::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }

.filter-group__title {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-group__title span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--t-fast);
}
.filter-group__title span:hover { color: var(--gold); }

.filter-checks { display: flex; flex-direction: column; gap: 4px; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  position: relative;
}
.filter-check:hover { background: rgba(255, 255, 255, 0.03); }
.filter-check input { position: absolute; opacity: 0; pointer-events: none; }

.filter-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
  flex: 0 0 18px;
  background: transparent;
}
.filter-check__box > svg { width: 11px; height: 11px; color: var(--bg-deep); opacity: 0; transition: opacity var(--t-fast); }
.filter-check input:checked + .filter-check__box { background: var(--gold); border-color: var(--gold); }
.filter-check input:checked + .filter-check__box > svg { opacity: 1; }

.filter-check__label { font-size: 0.88rem; color: var(--text-secondary); flex: 1; transition: color var(--t-fast); }
.filter-check:hover .filter-check__label { color: var(--text-primary); }
.filter-check input:checked ~ .filter-check__label { color: var(--gold); font-weight: 500; }

.filter-check__count { font-size: 0.75rem; color: var(--text-faint); }

.filter-price { padding: 4px 0; }

.filter-price__values {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.filter-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--bg-deep) 50%, var(--bg-deep) 100%);
  border-radius: var(--r-full);
  outline: none;
  margin-bottom: 16px;
}

.filter-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 3px solid var(--bg-deep);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212, 168, 106, 0.5);
  transition: transform var(--t-fast);
}
.filter-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.filter-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 3px solid var(--bg-deep);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212, 168, 106, 0.5);
}

.filter-price__inputs { display: flex; gap: 8px; }
.filter-price__input {
  flex: 1;
  min-width: 0;
  max-width: 50%;
  padding: 9px 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--text-primary);
  text-align: center;
  font-weight: 500;
  transition: all var(--t-fast);
}
.filter-price__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 106, 0.15); }

.filter-actions { display: flex; gap: 8px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.filter-actions .btn { flex: 1; padding: 11px; font-size: 0.85rem; }

/* === Catalog toolbar === */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-count { font-size: 0.95rem; color: var(--text-muted); }
.catalog-count strong { color: var(--text-primary); font-weight: 700; }

.catalog-sort { display: flex; align-items: center; gap: 8px; }
.catalog-sort label { font-size: 0.85rem; color: var(--text-muted); }

.sort-select-wrap {
  position: relative;
  display: inline-block;
}
.sort-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.sort-select {
  padding: 10px 36px 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
}
.sort-select:hover { border-color: var(--border-strong); }
.sort-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 106, 0.15); }
.sort-select option { background: var(--bg-primary); color: var(--text-primary); }

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

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 60px;
}

.pagination__btn {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  transition: all var(--t-base);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}
.pagination__btn > svg { width: 16px; height: 16px; }
.pagination__btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.pagination__btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 168, 106, 0.4);
}
.pagination__btn--more {
  background: transparent;
  border: none;
  pointer-events: none;
  color: var(--text-faint);
}

/* ================================================
   СТРАНИЦА КОНТАКТОВ
   ================================================ */
.contacts-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-form-card {
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6), rgba(10, 20, 40, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 32px; }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--t-fast);
}
.form-input:hover, .form-textarea:hover { border-color: var(--border-strong); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 106, 0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contacts-info { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  padding: 22px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6), rgba(10, 20, 40, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--t-base);
}
.contact-info-card:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-md);
  flex: 0 0 48px;
  transition: all var(--t-base);
}
.contact-info-card__icon > svg { width: 22px; height: 22px; }
.contact-info-card:hover .contact-info-card__icon {
  background: var(--gold);
  color: var(--bg-deep);
}

.contact-info-card__title {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-card__value { font-family: var(--f-heading); font-size: 1.2rem; color: var(--text-primary); margin-bottom: 4px; }
.contact-info-card__sub { font-size: 0.85rem; color: var(--text-muted); }

.full-map {
  height: 500px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  position: relative;
}
.full-map iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.6); }

/* ================================================
   АНИМАЦИИ
   ================================================ */
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(10px); } }
@keyframes floatBottle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
@keyframes logoGlow { 0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 106, 0.3); } 50% { box-shadow: 0 0 35px rgba(212, 168, 106, 0.6); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ================================================
   АДАПТИВ
   ================================================ */
@media (max-width: 1200px) {
  .hero__grid { grid-template-columns: 1fr; gap: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 240px 1fr; gap: 24px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--large { grid-column: span 2; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__media { min-height: 280px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr 280px; gap: 40px; }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .nav { display: none; }
  .burger { display: grid; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-large { grid-column: span 2; }
  .hero__benefits { grid-template-columns: 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .category-layout { grid-template-columns: 1fr; }
  .filters { position: static; max-height: none; }
  .contacts-page-grid { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
  .product-buy { flex-direction: column; align-items: stretch; }
  .product-volume-list { flex-wrap: wrap; }
  .product-volume-card { min-width: 80px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .reviews-wrap { padding: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 60px; }
  .sidebar-block { position: static; }
  .related-posts__grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .mission-values { grid-template-columns: 1fr; }
  .timeline-line { left: 16px; }
  .timeline-item { width: 100%; padding-left: 50px !important; padding-right: 0 !important; margin-left: 0 !important; text-align: left !important; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 6px; right: auto; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-large { grid-column: span 1; }
  .catalog-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { display: block; grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .section-header { margin-bottom: 40px; }
  .hero-product__image { height: 240px; }
  .countdown__num { font-size: 1.2rem; }
  .product-notes { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .product-buy { padding: 16px; }
  .product-buy__price { font-size: 2rem; }
  .featured-post__body { padding: 28px 24px; }
  .blog-categories { gap: 6px; }
  .blog-cat { padding: 8px 16px; font-size: 0.82rem; }
  .newsletter { padding: 40px 24px; }
  .newsletter__form { flex-direction: column; }
  .article-header__title { font-size: 2rem; }
  .article-content h2 { font-size: 1.5rem; }
  .article-content blockquote { padding: 20px 22px; font-size: 1.05rem; }
  .article-pull-quote { padding: 28px 24px; }
  .article-pull-quote p { font-size: 1.25rem; }
  .author-box { flex-direction: column; gap: 16px; padding: 20px; }
  .about-hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-card { padding: 48px 24px; }
  .about-cta-card__buttons { flex-direction: column; }
  .about-cta-card__buttons .btn { width: 100%; }
}

/* ================================================
   МОБИЛЬНАЯ АДАПТАЦИЯ (v2 — исправления UX)
   ================================================ */

/* Header: оптимизация для мобильных */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header__inner { gap: 8px; }
  .header__actions { gap: 4px; }
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
  }
  .icon-btn > svg { width: 18px; height: 18px; }
  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }
  .logo__mark {
    width: 38px;
    height: 38px;
  }
  .logo__mark::before { font-size: 1.2rem; }
  .logo__text small { font-size: 0.58rem; letter-spacing: 0.22em; }
  .cart-badge {
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }
}

@media (max-width: 380px) {
  .logo__text small { display: none; }
}

/* Mobile menu: правильная ширина */
.mobile-menu {
  width: min(360px, 100vw);
  max-width: 100vw;
}

/* Bestseller tabs: горизонтальный скролл на мобильных */
@media (max-width: 768px) {
  .slider-nav { flex-direction: column; align-items: stretch; }
  .slider-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
  }
  .slider-tabs::-webkit-scrollbar { display: none; }
  .slider-tab {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .slider-controls {
    align-self: flex-end;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

/* Product card slider: адаптивная ширина карточек */
@media (max-width: 768px) {
  .product-card { flex: 0 0 240px; }
  .review-card { flex: 0 0 280px; }
  .blog-card__media { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 220px; }
  .product-card__body { padding: 16px; }
  .product-card__name { font-size: 1.05rem; }
  .product-card__price { font-size: 1.3rem; }
}

/* Hero на мобильных */
@media (max-width: 768px) {
  .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 48px; }
  .hero__grid { gap: 48px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 20px; }
  .hero__lead { font-size: 1rem; margin-bottom: 32px; }
  .hero-product__card { padding: 24px 20px; }
  .hero-product__image { height: 280px; margin-bottom: 20px; }
  .countdown__num { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .hero-product__image { height: 220px; }
  .price-current { font-size: 2rem; }
}

/* Touch targets (минимум 44×44) на мобильных */
@media (max-width: 768px) {
  .slider-btn,
  .pagination__btn,
  .filter-actions .btn,
  .product-volume-card,
  .volume-option,
  .volume-pill,
  .blog-cat,
  .slider-tab {
    min-height: 44px;
  }
  .slider-btn { width: 44px; height: 44px; }
  .pagination__btn { min-width: 44px; height: 44px; }
  /* Табы bestseller — увеличиваем до 40px для удобного тапа */
  .slider-tab { min-height: 40px; padding: 10px 16px; }
}

/* Запрет горизонтального скролла на body */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* === Cart icon wrap === */
.cart-icon-wrap {
  display: inline-block;
  position: relative;
}

/* ================================================
   ФИКС: Badge «Товар месяца» не клипается
   ================================================ */
.hero, .hero-product, .hero-product__card { overflow: visible; }
.hero-product__card { position: relative; z-index: 1; padding-top: 52px; }
.hero-product__card::before { z-index: -1; }
.product-badge {
  top: 16px;
  left: 32px;
  z-index: 10;
}
.product-badge::after { display: none; }

.hero-product { padding-top: 16px; }

@media (max-width: 768px) {
  .hero-product__card { padding-top: 48px; }
  .product-badge {
    top: 14px;
    left: 20px;
    padding: 7px 14px;
    font-size: 0.7rem;
  }
}

/* ================================================
   QUICK VIEW — иконка на карточке товара
   ================================================ */
.product-card { position: relative; }
.product-card__quickview {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(5, 9, 19, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-base);
  z-index: 3;
}
.product-card__quickview > svg { width: 18px; height: 18px; }
.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translateY(0);
}
.product-card__quickview:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* ================================================
   CART DRAWER — выезжающая панель корзины справа
   ================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(5, 9, 19, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: linear-gradient(160deg, rgba(20, 30, 60, 0.98) 0%, rgba(8, 14, 34, 0.99) 100%);
  border-left: 1px solid var(--border-strong);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  z-index: 260;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  visibility: hidden;
}
.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.cart-drawer__count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg-deep);
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 700;
}
.cart-drawer__count.is-hidden { display: none; }
.cart-drawer__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--t-fast);
  cursor: pointer;
}
.cart-drawer__close svg { width: 18px; height: 18px; }
.cart-drawer__close:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  transform: rotate(90deg);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  scrollbar-width: thin;
}
.cart-drawer__body::-webkit-scrollbar { width: 6px; }
.cart-drawer__body::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

.cart-drawer__items { display: flex; flex-direction: column; gap: 4px; }

.cart-drawer__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-drawer__item:last-child { border-bottom: none; }

.cart-drawer__thumb {
  width: 64px;
  height: 80px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-drawer__thumb svg { width: 36px; height: 52px; }

.cart-drawer__info { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.cart-drawer__name {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer__name:hover { color: var(--gold-bright); }
.cart-drawer__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cart-drawer__price { color: var(--gold-bright); font-weight: 700; }

.cart-drawer__qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
  margin-top: 4px;
}
.cart-drawer__qty-btn {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cart-drawer__qty-btn:hover { background: var(--gold-soft); color: var(--gold-bright); }
.cart-drawer__qty-value {
  min-width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-drawer__remove {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text-faint);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-fast);
  align-self: start;
}
.cart-drawer__remove svg { width: 16px; height: 16px; }
.cart-drawer__remove:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px;
  text-align: center;
}
.cart-drawer__empty-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-faint);
}
.cart-drawer__empty-icon svg { width: 36px; height: 36px; }
.cart-drawer__empty-text {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: rgba(5, 9, 19, 0.4);
  flex-shrink: 0;
}
.cart-drawer__sum {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.cart-drawer__sum-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-drawer__sum-value {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; border-left: none; }
  .cart-drawer__head { padding: 16px 18px; }
  .cart-drawer__body { padding: 12px 18px; }
  .cart-drawer__foot { padding: 16px 18px; }
  .cart-drawer__actions { grid-template-columns: 1fr; }
}

body.cart-open { overflow: hidden; }

/* ================================================
   TOAST NOTIFICATIONS
   ================================================ */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  padding: 14px 20px;
  background: linear-gradient(145deg, rgba(20, 30, 60, 0.98), rgba(8, 14, 34, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  min-width: 240px;
  max-width: 380px;
  opacity: 0;
  transform: translateX(40px);
  transition: all var(--t-base);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast--success { border-left: 3px solid #22c55e; }
.toast--error { border-left: 3px solid #ef4444; }
.toast--info { border-left: 3px solid var(--gold); }

@media (max-width: 480px) {
  .toast-container { top: 76px; right: 12px; left: 12px; }
  .toast { max-width: none; }
}

/* ================================================
   QUICK VIEW MODAL — детальный просмотр
   ================================================ */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(5, 9, 19, 0.85);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity var(--t-base);
}

.quick-view-modal.open {
  display: flex;
  opacity: 1;
}

.quick-view-modal__inner {
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.98) 0%, rgba(12, 20, 48, 0.98) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--t-slow);
}

.quick-view-modal.open .quick-view-modal__inner { transform: scale(1); }

.quick-view-modal__media {
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #1a2858 0%, #0c1430 100%);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 400px;
}

.quick-view-modal__bottle {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}

.quick-view-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(5, 9, 19, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-base);
  z-index: 2;
}

.quick-view-modal__close svg { width: 20px; height: 20px; }
.quick-view-modal__close:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.quick-view-modal__body {
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.quick-view-modal__brand {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.quick-view-modal__name {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.1;
}

.quick-view-modal__notes {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.quick-view-modal__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.quick-view-modal__price {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-bright);
}

.quick-view-modal__price-old {
  font-size: 1.1rem;
  color: var(--text-faint);
  text-decoration: line-through;
}

.quick-view-modal__volumes {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.quick-view-modal__volume {
  flex: 1;
  padding: 10px 8px;
  background: rgba(5, 9, 19, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
}

.quick-view-modal__volume small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-faint);
  margin-top: 2px;
}

.quick-view-modal__volume:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
}

.quick-view-modal__volume.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.quick-view-modal__volume.active small { color: rgba(10, 20, 40, 0.7); }

.quick-view-modal__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.quick-view-modal__actions .btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .quick-view-modal { padding: 20px 16px; }
  .quick-view-modal__inner {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .quick-view-modal__media { min-height: 240px; }
  .quick-view-modal__body { padding: 24px 20px; }
}

/* ================================================
   АНИМАЦИЯ: пульсация при добавлении в корзину
   ================================================ */
@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.icon-btn.cart-pulse { animation: cartPulse 0.5s ease; }

/* ================================================
   AUTOPLAY-индикатор (опционально)
   ================================================ */
.slider { scroll-snap-type: x mandatory; }
.slider > * { scroll-snap-align: start; }
.slider-btn { touch-action: manipulation; }

/* Cursor при drag на десктопе */
.slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.slider.dragging * { pointer-events: none; }

/* === Tag pills на мобильных === */
@media (max-width: 480px) {
  .article-tag { padding: 6px 10px; font-size: 0.72rem; }
}

/* === Form inputs на мобильных — больше размер для тапа === */
@media (max-width: 768px) {
  .form-input, .form-textarea {
    padding: 14px 16px;
    font-size: 16px;
  }
  .newsletter__input {
    padding: 14px 20px;
    font-size: 16px;
  }
}

/* === Улучшенная видимость focus на мобильных === */
@media (max-width: 768px) {
  :focus-visible {
    outline-width: 3px;
    outline-offset: 4px;
  }
}

/* === Принт-стили === */
@media print {
  .header, .footer, .mobile-menu, .search-modal, .page-loader,
  .slider-controls, .slider-tabs, .pagination { display: none !important; }
  body { background: white; color: black; }
  body::before, body::after { display: none; }
}

.hero, .hero-product, .featured-post, .about-hero,
.newsletter, .about-cta-card, .timeline {
  max-width: 100vw;
  overflow: hidden;
}

/* Article на мобильных */
@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { margin-top: 40px; }
  .sidebar-block { position: static; }
  .article-toc { max-height: none; }
  .article-content h2 { font-size: 1.5rem; margin-top: 32px; }
  .article-content h3 { font-size: 1.25rem; }
  .article-pull-quote { padding: 28px 20px; margin: 32px 0; }
  .article-pull-quote p { font-size: 1.2rem; }
  .article-pull-quote__mark { font-size: 4rem; margin-bottom: -10px; }
  .article-share { gap: 10px; }
  .article-tags { gap: 6px; }
  .article-tag { padding: 5px 10px; font-size: 0.78rem; }
  .author-box { padding: 20px; }
}

/* Filter и Catalog на мобильных */
@media (max-width: 768px) {
  .filters { padding: 20px; }
  .filter-group { margin-bottom: 20px; padding-bottom: 20px; }
  .filter-group__title { font-size: 0.78rem; }
  .filter-price__input { padding: 11px 10px; }
  .sort-select { padding: 11px 32px 11px 14px; }
}

@media (max-width: 480px) {
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .catalog-sort { justify-content: space-between; }
  .pagination__btn { min-width: 38px; height: 38px; padding: 0 8px; }
  .pagination { gap: 4px; }
}

/* Footer на мобильных */
@media (max-width: 768px) {
  .footer { padding: 60px 0 24px; margin-top: 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-col h4 { font-size: 0.78rem; margin-bottom: 16px; }
  .footer-col a { font-size: 0.88rem; }
  .footer-bottom { font-size: 0.75rem; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: span 1; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { text-align: center; }
}

/* Blog на мобильных */
@media (max-width: 768px) {
  .blog-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .blog-categories {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    margin: 24px -16px 0;
    padding: 24px 16px 8px;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
  }
  .blog-categories::-webkit-scrollbar { display: none; }
  .blog-cat { flex-shrink: 0; padding: 10px 18px; font-size: 0.82rem; min-height: 40px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post__media { min-height: 220px; }
  .featured-post__body { padding: 28px 24px; }
  .featured-post__title { font-size: 1.4rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 40px 20px; }
  .newsletter__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .featured-post__author { flex-direction: column; align-items: flex-start; }
  .featured-post__link { margin-left: 0; }
  .blog-card__body { padding: 20px; }
  .blog-card__title { font-size: 1.15rem; }
}

/* Forms на мобильных */
@media (max-width: 768px) {
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .product-buy { flex-direction: column; align-items: stretch; padding: 20px; gap: 16px; }
  .product-buy__price { font-size: 2.2rem; }
  .product-volume-list { flex-wrap: wrap; }
  .product-volume-card { min-width: 90px; flex: 1; padding: 14px 10px; }
}

@media (max-width: 480px) {
  .product-volume-list { gap: 8px; }
  .product-volume-card { min-width: 0; padding: 12px 8px; }
  .product-volume-card__ml { font-size: 1.2rem; }
  .product-buy__prices { flex-wrap: wrap; gap: 8px; }
  .product-buy__actions { flex-direction: column; width: 100%; }
  .product-buy__actions .btn { width: 100%; }
}

/* Breadcrumbs на мобильных */
@media (max-width: 480px) {
  .breadcrumbs { font-size: 0.78rem; gap: 6px; }
}

/* Улучшение читаемости */
@media (max-width: 480px) {
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.92rem; }
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; padding: 0 28px; }
  .eyebrow::before, .eyebrow::after { width: 20px; }
}

/* Скрытие части иконок на очень маленьких экранах */
@media (max-width: 380px) {
  .header__actions .icon-btn:not(.burger):not(.cart-icon-wrap) { display: none; }
  .header__actions .cart-icon-wrap { display: grid; }
}

/* === Mobile menu === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 90vw);
  height: 100vh;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-left: 1px solid var(--border);
  z-index: 150;
  padding: 100px 32px 32px;
  transition: right var(--t-slow);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.mobile-menu.open { right: 0; }

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-base);
}
.mobile-menu__close > svg { width: 20px; height: 20px; }
.mobile-menu__close:hover { background: var(--gold-soft); color: var(--gold); border-color: var(--gold); }

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-base);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 12px; }

/* ================================================
   BLOG — листинг статей
   ================================================ */
.blog-hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 40px;
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(76, 123, 217, 0.2) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.blog-hero__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 0 40px;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
}

.blog-hero h1 .accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 620px;
}

.blog-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.blog-cat {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
}

.blog-cat:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.blog-cat.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212, 168, 106, 0.3);
}

/* Featured post */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.5) 0%, rgba(12, 20, 48, 0.5) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 60px;
  transition: all var(--t-slow);
}

.featured-post:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.featured-post__media {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.featured-post__media-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(76, 123, 217, 0.55) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 106, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
  transition: transform var(--t-slow);
}

.featured-post:hover .featured-post__media-bg { transform: scale(1.05); }

.featured-post__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 168, 106, 0.4) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.featured-post__icon {
  position: relative;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.featured-post__icon svg { width: 120px; height: 120px; }

.featured-post__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.featured-post__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.featured-post__cat {
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.featured-post__title {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.featured-post__title a {
  transition: color var(--t-base);
}

.featured-post:hover .featured-post__title a { color: var(--gold-bright); }

.featured-post__excerpt {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.featured-post__author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1rem;
  flex: 0 0 48px;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.featured-post__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t-base);
}

.featured-post__link svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  stroke-width: 2.5;
}

.featured-post:hover .featured-post__link { gap: 14px; }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.blog-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 106, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card__bg { transform: scale(1.08); }

.blog-card__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 168, 106, 0.4) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.blog-card__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.blog-card__icon svg { width: 56px; height: 56px; }

.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card__cat {
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.blog-card__title {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--t-base);
}

.blog-card:hover .blog-card__title { color: var(--gold-bright); }

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--t-base);
  white-space: nowrap;
}

.blog-card__link svg {
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px !important;
  stroke-width: 2.5;
}

.blog-card:hover .blog-card__link { gap: 12px; color: var(--gold-bright); }

/* Newsletter */
.newsletter {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 60px 40px;
  margin-bottom: 60px;
  text-align: center;
}

.newsletter__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(76, 123, 217, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212, 168, 106, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
}

.newsletter__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.newsletter__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: var(--r-md);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.newsletter__icon svg { width: 32px; height: 32px; }

.newsletter__title {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--text-primary);
}

.newsletter__lead {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 12px;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(5, 9, 19, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--t-fast);
  backdrop-filter: blur(10px);
}

.newsletter__input:focus { border-color: var(--gold); }

.newsletter__hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ================================================
   BLOG — отдельная статья
   ================================================ */
.article-header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px;
}

.article-header__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.article-header__cat {
  padding: 5px 12px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-full);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.article-header__title {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.article-header__title .accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.article-header__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.article-header__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  backdrop-filter: blur(20px);
}

.article-header__author .author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.article-header__author .author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero image */
.article-hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 60px;
  display: grid;
  place-items: center;
}

.article-hero-image__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(76, 123, 217, 0.55) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(212, 168, 106, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
}

.article-hero-image__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 168, 106, 0.4) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.article-hero-image__icon {
  position: relative;
  color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.article-hero-image__icon svg { width: 160px; height: 160px; }

.article-hero-image figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 8px 16px;
  background: rgba(5, 9, 19, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  z-index: 2;
}

/* Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  margin-bottom: 80px;
}

.article-content { min-width: 0; }

.article-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--f-heading);
  font-style: italic;
}

.article-content h2 {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-content h3 {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.article-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.article-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.article-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.article-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: linear-gradient(145deg, rgba(76, 123, 217, 0.15) 0%, rgba(212, 168, 106, 0.08) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
}

.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--gold);
}

/* Pull quote */
.article-pull-quote {
  position: relative;
  margin: 48px 0;
  padding: 40px 32px;
  text-align: center;
  background: linear-gradient(145deg, rgba(76, 123, 217, 0.12) 0%, rgba(212, 168, 106, 0.08) 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.article-pull-quote__mark {
  font-family: var(--f-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -20px;
}

.article-pull-quote p {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.article-pull-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Inline image */
.article-inline-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin: 32px 0;
  display: grid;
  place-items: center;
}

.article-inline-image__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1d2b5c 0%, #0c1430 100%);
}

.article-inline-image__bg--alt {
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 168, 106, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #0c1430 100%);
}

.article-inline-image__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.3) 0%, transparent 60%);
  mix-blend-mode: screen;
}

/* Share */
.article-share {
  margin: 48px 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.article-share__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.article-share__buttons {
  display: flex;
  gap: 8px;
}

.article-share__btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--t-base);
}

.article-share__btn svg { width: 18px; height: 18px; }

.article-share__btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.article-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--t-fast);
  text-decoration: none;
}

.article-tag:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}

/* Author box */
.author-box {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.5) 0%, rgba(12, 20, 48, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 32px;
}

.author-avatar--lg {
  width: 72px;
  height: 72px;
  font-size: 1.4rem;
  flex: 0 0 72px;
}

.author-box__name {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-box__role {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.author-box__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.author-box__links {
  display: flex;
  gap: 20px;
  font-size: 0.88rem;
}

.author-box__links a {
  color: var(--gold);
  font-weight: 600;
}

.author-box__links a:hover { color: var(--gold-bright); }

.author-box__photo {
  width: 72px; height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  border: 2px solid var(--border-strong);
  display: grid; place-items: center;
}
.author-box__photo img { width: 100%; height: 100%; object-fit: cover; }
.author-box__placeholder {
  font-family: var(--f-heading);
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold);
}
.author-box__body { flex: 1; min-width: 0; }
.author-box__label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 4px;
}

/* Sidebar */
.article-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-block {
  padding: 24px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.4) 0%, rgba(12, 20, 48, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.sidebar-block__title {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.article-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 320px;
  overflow-y: auto;
}

.article-toc__item {
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
  text-decoration: none;
}

.article-toc__item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-left-color: var(--gold);
  padding-left: 16px;
}

.article-toc__item.active {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 600;
}

.sidebar-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  text-decoration: none;
}

.sidebar-product:hover { background: rgba(255, 255, 255, 0.04); }

.sidebar-product__img {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  position: relative;
  overflow: hidden;
}

.mini-bottle {
  width: 20px;
  height: 28px;
  border-radius: 3px 3px 5px 5px;
  position: relative;
}
.mini-bottle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1px;
}
.mini-bottle--blue { background: linear-gradient(180deg, #7aa3ed, #1d2b5c); }
.mini-bottle--gold { background: linear-gradient(180deg, #ebc888, #b88d4d); }
.mini-bottle--red { background: linear-gradient(180deg, #d4a86a, #4c7bd9); }

.sidebar-product__brand {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.sidebar-product__name {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.sidebar-product__price {
  font-size: 0.85rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.sidebar-cta {
  padding: 24px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.6) 0%, rgba(12, 20, 48, 0.4) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  text-align: center;
  backdrop-filter: blur(20px);
}

.sidebar-cta__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
}

.sidebar-cta__icon svg { width: 26px; height: 26px; }

.sidebar-cta__title {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sidebar-cta__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Related posts */
.related-posts { margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--border); }

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ================================================
   О КОМПАНИИ — страница about.html
   ================================================ */
.about-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(76, 123, 217, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(212, 168, 106, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #131e44 50%, #0c1430 100%);
  z-index: -2;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(76, 123, 217, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(212, 168, 106, 0.2) 0%, transparent 60%);
  mix-blend-mode: screen;
  z-index: -1;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--text-primary);
}

.about-hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 700px;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
}

.about-hero-stat {
  text-align: center;
  padding: 12px;
}

.about-hero-stat__num {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.about-hero-stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}

.mission-text h2 .accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.mission-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mission-text p:last-child { color: var(--text-muted); }

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  padding: 24px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.5) 0%, rgba(12, 20, 48, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
  backdrop-filter: blur(20px);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-md);
  margin-bottom: 14px;
}

/* ============================================================
   CTA-блок (call-to-action) — .cta-section / .cta-card
   ============================================================ */
.cta-section { padding: 64px 0; }

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(29, 43, 92, 0.6) 0%, rgba(12, 20, 48, 0.85) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 75%, rgba(212, 168, 106, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(76, 123, 217, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.cta-card__body { position: relative; z-index: 1; }

.cta-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-card__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cta-card__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 540px;
}

.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-card__media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.cta-card__media .bottle-svg,
.cta-card__media svg {
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .cta-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .cta-card__media { display: none; }
  .cta-card__subtitle { margin-left: auto; margin-right: auto; }
  .cta-card__actions { justify-content: center; }
}

/* ============================================================
   Stores-section — заголовок секции магазинов
   ============================================================ */
.stores-section { padding: 80px 0; }

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: rgba(29, 43, 92, 0.35);
  border-radius: var(--r-lg);
  border: 1px dashed var(--border-strong);
}

.value-card__icon svg { width: 24px; height: 24px; }

.value-card h4 {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Timeline */
.history-section { background: rgba(5, 9, 19, 0.3); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 60px;
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 60px;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--bg-deep);
  border: 3px solid var(--gold);
  border-radius: 50%;
  top: 8px;
  box-shadow: 0 0 16px rgba(212, 168, 106, 0.5);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-dot--current {
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  width: 24px;
  height: 24px;
}

.timeline-item:nth-child(odd) .timeline-dot--current { right: -12px; }
.timeline-item:nth-child(even) .timeline-dot--current { left: -12px; }

.timeline-year {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.timeline-card {
  padding: 20px 24px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.5) 0%, rgba(12, 20, 48, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  transition: all var(--t-base);
}

.timeline-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-card--current {
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.7) 0%, rgba(12, 20, 48, 0.4) 100%);
}

.timeline-card h4 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-slow);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.team-card__photo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(212, 168, 106, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
}

.team-card__avatar {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
  border: 4px solid rgba(5, 9, 19, 0.5);
}

.team-card__body { padding: 24px; }

.team-card__role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card__name {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-card__tags span {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Stats section */
.stats-section { background: rgba(5, 9, 19, 0.2); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-large {
  padding: 36px 28px;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.5) 0%, rgba(12, 20, 48, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all var(--t-base);
}

.stat-large:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stat-large__num {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-large__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.stat-large__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.partner-item {
  padding: 36px 20px;
  background: var(--bg-card);
  display: grid;
  place-items: center;
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-align: center;
  transition: all var(--t-base);
  cursor: pointer;
  min-height: 100px;
}

.partner-item:hover {
  background: var(--gold-soft);
  color: var(--gold);
  transform: scale(1.05);
}

/* About CTA */
.about-cta-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
}

.about-cta-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(76, 123, 217, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212, 168, 106, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #243668 0%, #1a2858 50%, #0c1430 100%);
  z-index: -1;
}

.about-cta-card__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.about-cta-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 50%;
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.about-cta-card__icon svg { width: 36px; height: 36px; }

.about-cta-card h2 {
  font-family: var(--f-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.about-cta-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.about-cta-card__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Loader === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity var(--t-slow);
}
.page-loader.hide { opacity: 0; pointer-events: none; }

.page-loader__inner { text-align: center; }
.page-loader__logo {
  font-family: var(--f-heading);
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  animation: pulse 1.5s ease-in-out infinite;
}

.page-loader__bar {
  width: 200px;
  height: 2px;
  background: var(--bg-card);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto;
}
.page-loader__bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

/* === Overlays для search/cart/mobile-menu (WP-дополнение) === */
.search-overlay,
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 19, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.search-overlay.is-open,
.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body:has(.search-modal.open) .search-overlay,
body:has(.mobile-menu.open) .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Прелоадер — убедимся что hide сработает корректно */
.page-loader.hide {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

/* Логотип-марка — должен быть видимым даже без inline-стилей */
.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--bg-deep);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo__mark::before {
  content: 'A';
}

/* === Заглушки для WP-блоков, не совпадающих с CSS ===
   Эти стили дают минимальную разметку, чтобы контент был видим
   даже если классы WP-шаблона отличаются от оригинальных. */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

.category-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.category-hero__title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.category-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs__link {
  color: var(--text-secondary);
  transition: color var(--t-base);
}

.breadcrumbs__link:hover { color: var(--gold); }
.breadcrumbs__current { color: var(--text-muted); }
.breadcrumbs__sep { color: var(--text-muted); opacity: 0.5; }

/* ============================================================
   ARTICLE (single news) — full-bleed hero + body grid
   ============================================================ */
.article { padding: 0 0 80px; }

.article-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 48px;
}

.article-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
  transform: scale(1.02);
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 48, 0.35) 0%, rgba(12, 20, 48, 0.85) 70%, rgba(12, 20, 48, 0.95) 100%);
}

.article-hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 48px;
  width: 100%;
}

.article-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(212, 168, 106, 0.18);
  border: 1px solid rgba(212, 168, 106, 0.4);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all var(--t-base);
}

.category-pill:hover {
  background: rgba(212, 168, 106, 0.3);
  color: var(--gold-bright);
}

.article-hero__title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  max-width: 860px;
}

.article-hero__lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin-bottom: 24px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.article-hero__meta-sep { opacity: 0.5; }

.breadcrumbs--light .breadcrumbs__link,
.breadcrumbs--light .breadcrumbs__current,
.breadcrumbs--light .breadcrumbs__sep {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs--light .breadcrumbs__link:hover { color: var(--gold); }

.article-head {
  padding: 64px 0 32px;
  text-align: center;
}

.article-head__title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.article-head__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.article-body { padding: 0 0 64px; }

.article-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-body__content {
  min-width: 0;
}

.article-body__content > * + * { margin-top: 1.25em; }
.article-body__content h2 { font-size: 1.8rem; margin-top: 1.8em; }
.article-body__content h3 { font-size: 1.4rem; margin-top: 1.6em; }
.article-body__content p { line-height: 1.75; color: var(--text-secondary); }
.article-body__content img { border-radius: var(--r-lg); }
.article-body__content ul,
.article-body__content ol { padding-left: 24px; line-height: 1.7; color: var(--text-secondary); }
.article-body__content li + li { margin-top: 6px; }
.article-body__content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 24px;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body__sidebar {
  position: sticky;
  top: 96px;
}

.article-pullquote {
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(29, 43, 92, 0.4) 0%, rgba(12, 20, 48, 0.6) 100%);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-primary);
}

.article-pullquote p { margin: 0; }

.article-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.blog-grid--related { margin-top: 24px; }

.section-title--sm { font-size: 1.6rem; text-align: left; }

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 40px;
}

.article-author__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.article-author__photo img { width: 100%; height: 100%; object-fit: cover; }

.article-author__name { font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.article-author__role { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 992px) {
  .article-body__grid { grid-template-columns: 1fr; }
  .article-body__sidebar { display: none; }
}

@media (max-width: 640px) {
  .article-hero { min-height: 360px; }
  .article-hero__inner { padding: 60px 0 32px; }
  .article-author { flex-direction: column; text-align: center; }
}

/* ============================================================
   404 page
   ============================================================ */
.error-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.error-404__inner { max-width: 560px; }

.error-404__code {
  display: block;
  font-family: var(--f-heading);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.error-404__title {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.error-404__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.error-404__search { max-width: 480px; margin: 0 auto; }

.search-form--page {
  display: flex;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 6px 6px 18px;
  align-items: center;
}

.search-form--page:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 106, 0.15); }

.search-form__icon { color: var(--text-muted); display: grid; place-items: center; }
.search-form__icon svg { width: 18px; height: 18px; }

.search-form__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  padding: 10px 0;
}

.search-form__submit { white-space: nowrap; }

/* ============================================================
   HERO fallback (когда нет ACF-блоков) — выравниваем как вёрстку
   ============================================================ */
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero__media { display: grid; place-items: center; }

@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 48px 0; }
  .hero__actions { justify-content: center; }
}

/* Features fallback */
.features-section { padding: 64px 0; }

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

.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.feature-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-md);
}

.feature-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

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

/* ============================================================
   Pagination (wp paginate_links list)
   ============================================================ */
.pagination ul,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li { list-style: none; }

.pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--t-base);
}

.pagination .page-numbers:hover {
  border-color: var(--border-strong);
  color: var(--gold);
  transform: translateY(-2px);
}

.pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: transparent;
  color: var(--bg-deep);
  font-weight: 700;
}

.pagination .page-numbers.dots { border: none; background: transparent; }

.blog-pagination { margin-top: 48px; }
.blog-empty,
.no-posts,
.no-products,
.no-categories,
.reviews-empty,
.stores-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== Blog archive ===== */
.blog-archive { padding: 60px 0; }

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-card__img { transform: scale(1.08); }
.blog-card--no-thumb .blog-card__media { display: none; }

.blog-card__dot { color: var(--text-faint); }
.blog-card__read,
.blog-card__views { display: inline-flex; align-items: center; gap: 4px; }
.blog-card__views svg { width: 14px; height: 14px; }

.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card__author { font-size: 0.82rem; color: var(--text-muted); }

/* ===== Blog featured (large card) ===== */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  transition: all var(--t-slow);
}
.blog-featured:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

.blog-featured__media { position: relative; overflow: hidden; min-height: 320px; }
.blog-featured__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-featured:hover .blog-featured__img { transform: scale(1.05); }

.blog-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.blog-featured__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-featured__title { font-family: var(--f-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; line-height: 1.25; }
.blog-featured__title a { color: var(--text-primary); }
.blog-featured__title a:hover { color: var(--gold-bright); }
.blog-featured__lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }
.blog-featured__meta { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 240px; }
  .blog-featured__body { padding: 28px; }
}

/* ===== Search results page ===== */
.search-form-wrap { margin-top: 24px; max-width: 560px; }
.search-results { padding: 60px 0; }

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.search-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-slow);
}
.search-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.search-card__link { display: block; height: 100%; }
.search-card__body { padding: 24px; }

.search-card__type {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: var(--r-sm);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 12px;
}

.search-card__title { font-family: var(--f-heading); font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; color: var(--text-primary); }
.search-card:hover .search-card__title { color: var(--gold-bright); }
.search-card__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.search-card__more { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

.search-empty { text-align: center; padding: 80px 24px; }
.search-empty__icon {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-faint);
}
.search-empty__icon svg { width: 32px; height: 32px; }
.search-empty__title { font-family: var(--f-heading); font-size: 1.6rem; margin-bottom: 8px; }
.search-empty__text { color: var(--text-muted); margin-bottom: 24px; }

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

/* ===== Generic page content ===== */
.ambra-page-content { padding: 60px 0; }
.ambra-page-content > * { max-width: 820px; margin-left: auto; margin-right: auto; }
.ambra-page-content h2,
.ambra-page-content h3 { font-family: var(--f-heading); margin-top: 1.8em; margin-bottom: 0.8em; }
.ambra-page-content p { line-height: 1.7; color: var(--text-secondary); }
.ambra-page-content img { border-radius: var(--r-md); }

/* ===== Section wrappers (about page blocks) ===== */
.mission-section,
.partners-section,
.team-section,
.timeline-section,
.categories,
.bestsellers,
.about,
.reviews,
.news-section { padding: var(--section-pad, 80px) 0; }

.contacts-page { padding: 0 0 60px; }

/* ===== About hero split layout ===== */
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero__body { text-align: left; }
.about-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.about-hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-hero__img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-hero__body { text-align: center; }
  .about-hero__media { aspect-ratio: 16/10; max-width: 480px; margin: 0 auto; }
}

/* ===== About page fallback ===== */
.category-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.about-text-section { padding: 80px 0; }

/* ===== Partner cards ===== */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: linear-gradient(145deg, rgba(26, 40, 71, 0.6), rgba(10, 20, 40, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-slow);
}
.partner-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.partner-card__logo {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
}
.partner-card__logo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.partner-card__name {
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== Team placeholder ===== */
.team-card__placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--f-heading);
  font-size: 2.5rem; font-weight: 600;
  color: var(--gold);
  background: linear-gradient(145deg, var(--bg-card), var(--bg-deep));
}

/* ===== Stat card sub-elements ===== */
.stat-card__prefix,
.stat-card__suffix { font-size: 0.6em; vertical-align: super; }
.stat-card__suffix { vertical-align: baseline; font-size: 0.5em; }

/* ===== Form disclaimer ===== */
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== WordPress стандартные классы ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-main { min-height: 60vh; }
.nav__list { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; align-items: center; }

/* ===== Utility: is-hidden ===== */
.is-hidden { display: none !important; }

/* ===== Page loader bottle ===== */
.page-loader__bottle { animation: loader-float 2s ease-in-out infinite; }
@keyframes loader-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* ===== Hero default variant ===== */
.hero--default { padding-top: calc(var(--header-h) + 60px); }

/* ===== Hero product prices ===== */
.hero-product__price {
  display: flex; align-items: baseline; gap: 12px;
  margin-top: 16px; flex-wrap: wrap;
}
.hero-product__price-old {
  font-size: 1.05rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.hero-product__price-now {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.hero-product__price-discount {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(212, 168, 106, 0.15);
  color: var(--gold-bright);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== Category hero blog variant ===== */
.category-hero--blog { min-height: 420px; }

/* ===== Section link (в заголовках секций) ===== */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t-base), color var(--t-base);
}
.section-link:hover { gap: 10px; color: var(--gold-bright); }

/* ===== Categories grid feature (первая карточка крупная) ===== */
@media (min-width: 769px) {
  .categories-grid--feature .category-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .categories-grid--feature .category-card:first-child .category-card__icon { width: 80px; height: 80px; }
  .categories-grid--feature .category-card:first-child .category-card__name { font-size: 1.5rem; }
}

/* ===== Slider buttons direction ===== */
.slider-btn--prev { left: -20px; }
.slider-btn--next { right: -20px; }
@media (max-width: 1024px) {
  .slider-btn--prev { left: 8px; }
  .slider-btn--next { right: 8px; }
}

/* ===== About text content ===== */
.about-text__content { max-width: 720px; }
.about-text__content p { line-height: 1.75; color: var(--text-secondary); margin-bottom: 18px; }
.about-text__content p:last-child { margin-bottom: 0; }

/* ===== Stat card number (animated counter) ===== */
.stat-card__number { display: inline; }

/* ===== Review card avatar placeholder ===== */
.review-card__avatar--placeholder {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: var(--bg-deep);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

/* ===== Store card badge variants ===== */
.store-card__badge--flagship { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); color: var(--bg-deep); }
.store-card__badge--new { background: linear-gradient(135deg, #4c7bd9, #6a98e6); color: #fff; }
.store-card__badge--soon { background: rgba(255, 255, 255, 0.08); color: var(--text-muted); border: 1px solid var(--border-strong); }
.store-card__row--muted { color: var(--text-muted); }

/* ===== Article TOC (содержание статьи) ===== */
.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 32px 0;
}
.article-toc__title {
  font-family: var(--f-heading);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.article-toc__list { list-style: none; padding: 0; margin: 0; }
.article-toc__list li { margin-bottom: 8px; }
.article-toc__list a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--t-base); }
.article-toc__list a:hover { color: var(--gold-bright); }
.article-toc__item--h3 { padding-left: 16px; }
.article-toc__item--h4 { padding-left: 32px; font-size: 0.85rem; }

/* ===== Article hero meta items ===== */
.article-hero__meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-hero__meta-item svg { width: 16px; height: 16px; opacity: 0.7; }

/* ===== Page links (wp_link_pages) ===== */
.page-links {
  margin: 32px 0;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.page-links a,
.page-links > span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--t-base);
}
.page-links a:hover { border-color: var(--gold); color: var(--gold-bright); }
.page-links > span { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }

/* ================================================
   МОДАЛКА ПОИСКА — BEM-классы (search-modal__*)
   ================================================ */
.search-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
}
.search-modal__close > svg { width: 18px; height: 18px; }
.search-modal__close:hover { background: rgba(239, 68, 68, 0.15); color: #f87171; border-color: transparent; }

.search-modal__form {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.search-modal__icon {
  flex: 0 0 24px;
  display: inline-flex;
  color: var(--gold);
}
.search-modal__icon > svg { width: 24px; height: 24px; }

.search-modal__input {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
  padding: 4px 0;
}
.search-modal__input::placeholder { color: var(--text-faint); }

.search-modal__clear {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.search-modal__clear > svg { width: 16px; height: 16px; }
.search-modal__clear:hover { background: rgba(239, 68, 68, 0.15); color: #f87171; }

.search-modal__results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}
.search-modal__results::-webkit-scrollbar { width: 6px; }
.search-modal__results::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

.search-modal__list { padding: 0; }

.search-modal__hints {
  padding: 20px 28px 8px;
}
.search-modal__hints.is-hidden { display: none; }
.search-modal__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.search-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-modal__state {
  padding: 28px;
  text-align: center;
  color: var(--text-muted);
}
.search-modal__state.is-hidden { display: none; }
.search-modal__state--loading { display: flex; align-items: center; justify-content: center; gap: 12px; }
.search-modal__state--loading .spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ambra-spin 0.7s linear infinite;
}
@keyframes ambra-spin { to { transform: rotate(360deg); } }
.search-modal__state--empty { font-size: 0.95rem; }

.search-modal__footer {
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.search-modal__hint {
  font-size: 0.78rem;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-modal__hint kbd {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.7rem;
  font-family: var(--f-heading);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
}

/* Модалка поиска на мобильных */
@media (max-width: 600px) {
  .search-modal { padding: 70px 12px 12px; }
  .search-modal__inner { max-width: 100%; border-radius: var(--r-lg); }
  .search-modal__form { padding: 18px 18px; gap: 12px; }
  .search-modal__input { font-size: 1.05rem; }
  .search-modal__icon { flex-basis: 20px; }
  .search-modal__icon > svg { width: 20px; height: 20px; }
  .search-modal__results { max-height: calc(80vh - 140px); }
  .search-modal__hints,
  .search-modal__footer { padding-left: 18px; padding-right: 18px; }
  .search-result { padding: 10px 18px; gap: 12px; }
  .search-result__img { width: 40px; height: 40px; flex-basis: 40px; }
  .search-result__img > svg { width: 20px; height: 20px; }
  .search-result__name { font-size: 0.98rem; }
  .search-result__price { font-size: 0.98rem; }
  .search-section-title { padding: 10px 18px; }
}

/* ================================================
   АДАПТИВ: Магазины (stores-list / store-card)
   ================================================ */
@media (max-width: 768px) {
  .stores-list { gap: 12px; }
  .store-card { padding: 18px; }
  .store-card:hover, .store-card.active { transform: none; }
  .store-card__name { font-size: 1.1rem; }
  .store-card__head { margin-bottom: 12px; gap: 10px; }
  .store-card__row { font-size: 0.86rem; gap: 10px; }
  .store-card__row > svg { width: 15px; height: 15px; flex-basis: 15px; }
  .map-wrap { min-height: 340px; }
}

@media (max-width: 480px) {
  .store-card { padding: 16px; }
  .store-card__name { font-size: 1.02rem; }
  .store-card__badge { font-size: 0.62rem; padding: 2px 7px; }
  .store-card__row { font-size: 0.82rem; }
  .map-wrap { min-height: 260px; }
}

/* ================================================
   АДАПТИВ: Каталог-тулбар (промежуточный брейкпоинт)
   ================================================ */
@media (max-width: 768px) {
  .catalog-toolbar { gap: 12px; padding-bottom: 14px; margin-bottom: 20px; }
  .catalog-count { font-size: 0.88rem; }
  .catalog-sort label { display: none; }
  .sort-select { padding: 9px 32px 9px 14px; font-size: 0.85rem; }
}

@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .catalog-grid .product-card__body { padding: 14px; }
  .catalog-grid .product-card__name { font-size: 1rem; }
  .catalog-grid .product-card__brand { font-size: 0.62rem; }
  .catalog-grid .product-card__price { font-size: 1.15rem; }
  .catalog-grid .product-card__cart { width: 40px; height: 40px; }
}

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

/* ================================================
   АДАПТИВ: Слайдеры — точки навигации на мобильных
   ================================================ */
@media (max-width: 768px) {
  .slider { gap: 16px; padding: 16px 2px 32px; }
  .slider__item { flex-basis: 260px; width: 260px; }
  .slider-nav { gap: 12px; }
  .slider-tabs { padding: 5px; }
  .slider-tab { padding: 7px 14px; font-size: 0.82rem; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn > svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
  .slider__item { flex-basis: 220px; width: 220px; }
  .slider-nav { flex-direction: column; align-items: stretch; }
  .slider-tabs { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; }
  .slider-tabs::-webkit-scrollbar { display: none; }
  .slider-tab { flex-shrink: 0; }
}

/* ================================================
   АДАПТИВ: Карточка товара в слайдере/каталоге
   ================================================ */
@media (max-width: 380px) {
  .product-card__body { padding: 14px; }
  .product-card__name { font-size: 1rem; }
  .product-card__price { font-size: 1.2rem; }
  .product-card__cart { width: 38px; height: 38px; }
  .product-card__cart > svg { width: 16px; height: 16px; }
}

/* ================================================
   АДАПТИВ: Hero-продукт (правка мелких косяков)
   ================================================ */
@media (max-width: 480px) {
  .hero-product__price-now { font-size: 1.8rem; }
  .hero-product__title { font-size: 1.5rem; }
  .hero-product__cta { flex-direction: column; align-items: stretch; }
  .hero-product__cta .btn { width: 100%; }
}

/* ================================================
   QUICK VIEW MODAL — новая AJAX-структура
   (.quick-view-modal__overlay/dialog/loader/content + .qv)
   ================================================ */
.quick-view-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 19, 0.85);
  backdrop-filter: blur(20px);
  z-index: 1;
}
.quick-view-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: linear-gradient(145deg, rgba(29, 43, 92, 0.98) 0%, rgba(12, 20, 48, 0.98) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--t-slow);
}
.quick-view-modal.open .quick-view-modal__dialog { transform: scale(1); }
.quick-view-modal__loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 20, 48, 0.6);
}
.quick-view-modal__loader .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ambra-spin 0.7s linear infinite;
}
.quick-view-modal__content { min-height: 300px; }

/* ===== Контент Quick View (.qv) ===== */
.qv { position: relative; }
.qv__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(5, 9, 19, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-base);
}
.qv__close > svg { width: 18px; height: 18px; }
.qv__close:hover { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }

.qv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.qv__media {
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 123, 217, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #1a2858 0%, #0c1430 100%);
  display: grid;
  place-items: center;
  padding: 40px;
}
.qv__media .bottle-svg { filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)); max-height: 360px; width: auto; height: auto; }
.qv__media img { max-width: 100%; max-height: 360px; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)); }

.qv__body {
  padding: 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.qv__brand {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.qv__title {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.qv__desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.qv__desc p { margin-bottom: 10px; }
.qv__desc p:last-child { margin-bottom: 0; }
.qv__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.qv__price-now {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.qv__price-old {
  font-size: 1.05rem;
  color: var(--text-faint);
  text-decoration: line-through;
}
.qv__notes { margin-bottom: 24px; }
.qv__note {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.qv__note:last-child { border-bottom: none; }
.qv__note-label {
  flex: 0 0 110px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.qv__note-text { color: var(--text-secondary); flex: 1; }
.qv__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.qv__actions .btn { flex: 1; justify-content: center; }
.qv__actions .btn:first-child { flex: 1.4; }

.qv-error {
  padding: 60px 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Quick View на мобильных */
@media (max-width: 768px) {
  .quick-view-modal { padding: 20px 12px; }
  .quick-view-modal__dialog { max-height: 94vh; }
  .qv__grid { grid-template-columns: 1fr; min-height: auto; }
  .qv__media { min-height: 240px; padding: 30px; }
  .qv__media .bottle-svg,
  .qv__media img { max-height: 260px; }
  .qv__body { padding: 24px 20px; }
  .qv__title { font-size: 1.35rem; }
  .qv__price-now { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .qv__actions { flex-direction: column; }
  .qv__actions .btn { width: 100%; flex: none; }
}

