/* =============================================
   СУШИ С ЛЮБОВЬЮ — РЕДИЗАЙН ВИТРИНЫ
   Поверх brand.css. Премиум-вид: гибрид
   тёмный hero + светлый молочный фон ниже.
   ============================================= */

:root {
  --hero-bg-1: #1a0d0f;        /* почти чёрный с бордовым подтоном */
  --hero-bg-2: #2a1518;        /* тёплый бордовый-уголь */
  --ink:       #14090a;
  --milk:      #FBF6EE;        /* фон страницы — тёплый молочный */
  --milk-2:    #F5ECDD;        /* секция, чуть темнее */
  --paper:     #FFFCF6;        /* карточки */
  --line:      rgba(20, 9, 10, 0.08);
  --line-gold: rgba(212, 175, 55, 0.28);
  --shadow-1:  0 1px 2px rgba(20,9,10,.04), 0 4px 16px rgba(20,9,10,.06);
  --shadow-2:  0 6px 24px rgba(20,9,10,.10), 0 20px 50px rgba(139,38,53,.10);
  --shadow-gold: 0 0 24px rgba(212,175,55,.18);
}

/* ----- Базовый ресет и шрифты ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--milk);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.script {
  font-family: 'Marck Script', 'Cormorant Garamond', cursive;
  font-style: italic;
  font-weight: 400;
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ----- Тонкие золотые линии-разделители ----- */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.55), transparent);
  border: 0;
  margin: 0;
}

/* =============================================
   1. ТОНКАЯ ИНФО-СТРОКА (слева — гарантия, справа — перезвонить)
   ============================================= */
.topbar {
  background: #0d0707;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 16px;
}
.topbar-item {
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.topbar-item .ic {
  width: 14px; height: 14px;
  fill: none; stroke: #FFE566; stroke-width: 1.6;
}
.topbar-item:hover { color: #FFE566; }
@media (max-width: 720px) {
  .topbar-inner { font-size: 11px; height: 34px; }
  .topbar-item.hide-sm { display: none; }
}

/* =============================================
   2. ШАПКА (sticky, премиум, тёмная)
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--hero-bg-2), var(--hero-bg-1));
  box-shadow: var(--shadow-1);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 88px;
  padding: 0 0 0 24px;
}
.brand-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  padding: 0 16px;
}
.calligraphy-xl {
  display: block;
  width: 100%;
  max-width: 760px;
  height: 72px;
  position: relative;
}
.calligraphy-xl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
body.theme-light .calligraphy-xl img {
  filter: drop-shadow(0 1px 3px rgba(212,150,12,.25));
}
.brand-lockup { display: flex; align-items: center; gap: 16px; }
.burger {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.28);
  background: transparent;
  color: #FFE566;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.burger:hover { background: rgba(212,175,55,.08); border-color: rgba(212,175,55,.55); }
.burger svg { width: 18px; height: 18px; stroke: #FFE566; stroke-width: 1.6; fill: none; }

.logo-mark {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,.45);
  box-shadow: 0 0 0 3px rgba(255,255,255,.04), 0 8px 18px rgba(0,0,0,.4);
  padding: 3px;
  background: #1a0d0f;
  box-sizing: border-box;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-words .calligraphy {
  height: 44px;
  display: block;
}
.brand-words .calligraphy img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
body.theme-light .brand-words .calligraphy img {
  filter: drop-shadow(0 1px 2px rgba(212,150,12,.2));
}
.brand-words .tagline {
  font-size: 10px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
}

.header-meta-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  flex-wrap: wrap;
  min-width: 0;
}
.header-meta-inline .hm-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(212,175,55,.85); margin-right: 4px; font-weight: 600;
}
.header-meta-inline .hm-sep {
  width: 1px; height: 20px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.4), transparent);
  flex-shrink: 0;
}
.header-meta-inline .hm-item {
  white-space: nowrap;
  font-weight: 600;
}
.header-meta-inline .hm-item.phones a {
  color: #fff; transition: color .2s;
}
.header-meta-inline .hm-item.phones a:hover { color: #FFE566; }
.header-meta-inline .hm-dot { color: rgba(212,175,55,.5); margin: 0 4px; }
.header-meta-inline .hm-item.guarantee {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.7); font-weight: 500;
  font-size: 12px; letter-spacing: .03em;
}
.header-meta-inline .hm-item.guarantee .ic {
  width: 14px; height: 14px; stroke: rgba(212,175,55,.85); stroke-width: 1.6;
  fill: none; flex-shrink: 0;
}
body.theme-light .header-meta-inline { color: #444; }
body.theme-light .header-meta-inline .hm-label { color: #7A5200; }
body.theme-light .header-meta-inline .hm-item.phones a { color: var(--ink, #1a1a1a); }
body.theme-light .header-meta-inline .hm-item.guarantee { color: #666; }
@media (max-width: 1280px) {
  .header-meta-inline .guarantee, .header-meta-inline .guarantee-sep { display: none; }
}
@media (max-width: 980px) {
  .header-meta-inline { display: none; }
}
.topbar-meta {
  display: flex; align-items: center; gap: 14px;
  margin-left: auto; margin-right: auto;
  font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.78);
}
.topbar-meta .tm-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(212,175,55,.85); margin-right: 4px; font-weight: 600;
}
.topbar-meta .tm-sep {
  width: 1px; height: 14px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.4), transparent);
}
.topbar-meta .tm-item.phones a {
  font-weight: 600; color: #fff; transition: color .2s;
}
.topbar-meta .tm-item.phones a:hover { color: #FFE566; }
.topbar-meta .tm-dot { color: rgba(212,175,55,.5); margin: 0 4px; }
body.theme-light .topbar-meta { color: #555; }
body.theme-light .topbar-meta .tm-label { color: #7A5200; }
body.theme-light .topbar-meta .tm-item.phones a { color: var(--ink, #1a1a1a); }
body.theme-light .topbar-meta .tm-sep {
  background: linear-gradient(180deg, transparent, rgba(212,175,55,.5), transparent);
}
.hide-md { display: flex; }
@media (max-width: 980px) { .hide-md { display: none !important; } }

.header-cta { display: flex; align-items: center; gap: 12px; }
.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 26px;
  background: transparent;
  border: 1px solid rgba(212,175,55,.45);
  color: #FFE566;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
}
.btn-ghost-gold:hover { background: rgba(212,175,55,.08); border-color: #FFE566; }
.btn-gold-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(105deg, #C8960C 0%, #FFE566 30%, #FFF8CC 50%, #FFE566 70%, #C8960C 100%);
  background-size: 200% auto;
  color: #1a0d0f;
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 18px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  animation: ssl-gold-flow 6s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(212,175,55,.25);
  transition: transform .15s, filter .2s;
}
.btn-gold-pill:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-gold-pill .count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px;
  padding: 0 7px;
  border-radius: 11px;
  background: #1a0d0f; color: #FFE566;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .header-inner { gap: 16px; height: 92px; }
  .calligraphy-xl { height: 64px; max-width: 520px; }
  .btn-ghost-gold { display: none; }
}
@media (max-width: 560px) {
  .header-inner { height: 64px; gap: 6px; padding: 0 0 0 8px; }
  .logo-mark { width: 38px; height: 38px; }
  .brand-lockup { gap: 8px; }
  .calligraphy-xl { height: 44px; }
  .btn-gold-pill { padding: 10px 14px; font-size: 12px; }
}

/* =============================================
   3. HERO — тёмный, золотое сияние, слайдер
   ============================================= */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(212,175,55,.18), transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(139,38,53,.45), transparent 60%),
    linear-gradient(180deg, var(--hero-bg-1) 0%, #0d0707 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,229,102,.08) 0, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(255,229,102,.06) 0, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(255,229,102,.05) 0, transparent 1.5px);
  background-size: 90px 90px, 130px 130px, 180px 180px;
  opacity: .9;
  pointer-events: none;
  animation: hero-stars 60s linear infinite;
}
@keyframes hero-stars {
  from { background-position: 0 0, 0 0, 0 0; }
  to   { background-position: 90px 90px, -130px 130px, 180px -180px; }
}

/* Плавающие декоративные элементы (параллакс-намёк) */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-deco span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE566 0%, transparent 70%);
  opacity: .6;
  animation: float 9s ease-in-out infinite;
}
.hero-deco span:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s;   }
.hero-deco span:nth-child(2) { top: 70%; left: 14%; animation-delay: 1.5s; width: 4px; height: 4px; }
.hero-deco span:nth-child(3) { top: 30%; right: 10%; animation-delay: 3s;  width: 8px; height: 8px; }
.hero-deco span:nth-child(4) { top: 80%; right: 18%; animation-delay: 4.5s; }
.hero-deco span:nth-child(5) { top: 50%; left: 50%;  animation-delay: 2s; width: 3px; height: 3px; }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); opacity: .35; }
  50%     { transform: translateY(-22px) translateX(8px); opacity: .85; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 24px;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #FFE566;
  margin-bottom: 28px;
  background: rgba(212,175,55,.06);
  font-weight: 600;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FFE566; box-shadow: 0 0 10px #FFE566;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: .9; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.7); }
}

.hero h1 {
  margin: 0 0 24px;
}
.hero-h1-banner .line-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  margin-left: 4px;
}
.hero-calligraphy {
  display: block;
  width: 100%;
  max-width: 640px;
  height: clamp(120px, 14vw, 200px);
}
.hero-calligraphy img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)) drop-shadow(0 0 30px rgba(212,175,55,.15));
}
body.theme-light .hero-h1-banner .line-eyebrow { color: var(--ink, #1a1a1a); }
body.theme-light .hero-calligraphy img {
  filter: drop-shadow(0 2px 6px rgba(212,150,12,.25));
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin: 0 0 36px;
  max-width: 540px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 34px;
  border-radius: 30px;
  background: linear-gradient(105deg, #C8960C 0%, #FFE566 30%, #FFF8CC 50%, #FFE566 70%, #C8960C 100%);
  background-size: 200% auto;
  color: #1a0d0f;
  font-size: 15px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  animation: ssl-gold-flow 6s ease-in-out infinite;
  box-shadow: 0 12px 30px rgba(212,175,55,.3), 0 0 0 1px rgba(212,175,55,.4);
  transition: transform .15s, filter .2s;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.btn-line:hover { border-color: #FFE566; color: #FFE566; }

/* Слайдер с акциями справа в hero */
.hero-slider {
  position: relative;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
  box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(212,175,55,.15);
}
.hs-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex; align-items: flex-end;
  padding: 32px;
}
.hs-slide.active { opacity: 1; }
.hs-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.05) 40%, rgba(20,9,10,.92) 100%);
  z-index: 1;
}
.hs-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
  transition: transform 8s ease;
}
.hs-slide.active img { transform: scale(1.08); }
.hs-content {
  position: relative; z-index: 2;
  color: #fff;
  width: 100%;
}
.hs-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 14px;
  background: var(--ssl-bordeau, #8B2635);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hs-tag.gold {
  background: linear-gradient(105deg, #C8960C, #FFE566 50%, #C8960C);
  background-size: 200% auto;
  color: #1a0d0f;
  animation: ssl-gold-flow 5s ease-in-out infinite;
}
.hs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 8px;
}
.hs-sub { font-size: 15px; color: rgba(255,255,255,.75); margin: 0 0 16px; }
.hs-meta { display: flex; gap: 16px; align-items: center; }
.hs-meta .price-old { text-decoration: line-through; color: rgba(255,255,255,.45); font-size: 14px; }
.hs-meta .price-new {
  font-size: 28px; font-weight: 800;
  background: linear-gradient(105deg, #C8960C 0%, #FFE566 50%, #C8960C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(.5px .5px 0 #7A5200);
  animation: ssl-gold-flow 6s ease-in-out infinite;
}

/* dots */
.hs-dots {
  position: absolute; bottom: 18px; right: 24px;
  z-index: 3;
  display: flex; gap: 8px;
}
.hs-dots button {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: background .3s, width .3s;
}
.hs-dots button.active {
  background: #FFE566;
  width: 44px;
  box-shadow: 0 0 8px rgba(255,229,102,.6);
}

@media (max-width: 980px) {
  .hero { padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 56px; }
  .hero-slider { height: 320px; }
  .hs-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .hero-slider { height: 280px; }
  .hs-slide { padding: 22px; }
  .hs-title { font-size: 22px; }
  .btn-primary { padding: 14px 22px; font-size: 13px; }
}

/* =============================================
   4. ПОКАЗАТЕЛИ — 4 карточки
   ============================================= */
.stats {
  position: relative;
  margin: -36px auto 0;
  z-index: 5;
  padding: 0 0 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20,9,10,.12), 0 0 0 1px rgba(212,175,55,.5);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8960C, #FFE566, #C8960C, transparent);
  background-size: 200% auto;
  animation: ssl-gold-flow 6s ease-in-out infinite;
  opacity: .55;
}
.stat-card .icon { display: none; }
.stat-card .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #7A5500, #C8960C, #FFE566, #C8960C, #7A5500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(.5px .5px 0 #7A5200);
}
.stat-card .label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ssl-text-muted, #999);
  font-weight: 600;
  margin-top: 6px;
}
.stat-card .sub {
  font-size: 13px;
  color: var(--ssl-text-secondary, #444);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  .stat-card { padding: 18px 16px; }
  .stat-card .value { font-size: 32px; }
}

/* =============================================
   5. ПЛАШКА АКЦИИ + СОЦСЕТИ
   ============================================= */
.promo-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
.promo-card {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212,175,55,.2), transparent 50%),
    linear-gradient(135deg, #8B2635 0%, #6B1B28 100%);
  border-radius: 20px;
  padding: 28px 32px;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.25);
}
.promo-card::before {
  content: '❤';
  position: absolute;
  right: -10px; bottom: -28px;
  font-size: 180px;
  color: rgba(212,175,55,.08);
  pointer-events: none;
}
.promo-card .eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #FFE566; font-weight: 700; margin-bottom: 8px;
}
.promo-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.15;
}
.promo-card p { font-size: 14px; color: rgba(255,255,255,.78); margin: 0; max-width: 460px; }
.social-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-content: center;
  box-shadow: var(--shadow-1);
}
.social-card .so {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 6px;
  border-radius: 14px;
  font-size: 11px; font-weight: 600;
  color: var(--ssl-text-secondary, #444);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.social-card .so:hover { background: rgba(212,175,55,.08); color: var(--ink); }
.social-card .so .ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFF, #F5ECDD);
  border: 1px solid var(--line);
  font-weight: 800; font-size: 14px;
  color: var(--ssl-bordeau, #8B2635);
}
.social-card .so .ic.gold { background: linear-gradient(135deg, #FFE566, #C8960C); color: #1a0d0f; }
@media (max-width: 880px) {
  .promo-row { grid-template-columns: 1fr; }
  .promo-card h3 { font-size: 22px; }
}

/* =============================================
   6. STICKY-НАВИГАЦИЯ КАТЕГОРИЙ
   ============================================= */
.cat-nav {
  position: sticky;
  top: 92px;
  z-index: 40;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: 36px;
}
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-tools { display: inline-flex; gap: 6px; }
.cat-tools button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cat-tools button:hover { border-color: rgba(212,175,55,.6); color: #7A5200; }
.cat-tools svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; }

.cat-chips {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  padding: 2px;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px; font-weight: 600;
  color: var(--ssl-text-secondary, #444);
  white-space: nowrap;
  cursor: pointer;
  transition: all .25s;
  position: relative;
}
.cat-chip:hover { border-color: rgba(212,175,55,.4); color: var(--ink); }
.cat-chip.active {
  background: var(--ink);
  color: #FFE566;
  border-color: var(--ink);
  box-shadow: 0 6px 18px rgba(20,9,10,.18);
}
.cat-chip.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, #FFE566, transparent);
  border-radius: 2px;
}

.search-box {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 220px;
}
.search-box input {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 13px; color: var(--ink);
  flex: 1; padding: 0;
}
.search-box svg { width: 16px; height: 16px; stroke: var(--ssl-text-muted, #999); stroke-width: 1.8; fill: none; }
@media (max-width: 760px) {
  .cat-nav { top: 64px; }
  .search-box { display: none; }
}

/* =============================================
   7. СЕКЦИЯ + СЕТКА КАРТОЧЕК
   ============================================= */
.section { padding: 18px 0 56px; }
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}
.sec-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #7A5500, #C8960C, #FFE566, #C8960C, #7A5500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(.5px .5px 0 #7A5200);
}
.sec-head .count {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ssl-text-muted, #999); font-weight: 600;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 380px)  { .cards-grid { grid-template-columns: 1fr; } }

/* Премиум карточка */
.p-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 14px 18px;
  cursor: pointer;
  transition: transform .25s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(20,9,10,.10), 0 0 0 1px rgba(212,175,55,.45);
  border-color: rgba(212,175,55,.4);
}
.p-card-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #F5ECDD, #FBF6EE);
}
.p-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.p-card:hover .p-card-img img { transform: scale(1.08); }
.p-card-img .badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .04em;
}
.badge-sale { background: var(--ssl-bordeau, #8B2635); color: #FFE566; }
.badge-new  { background: #2d5b3a; color: #fff; }
.badge-hit  {
  background: linear-gradient(105deg, #C8960C, #FFE566, #C8960C);
  background-size: 200% auto;
  color: #1a0d0f;
  animation: ssl-gold-flow 4s ease-in-out infinite;
}

.p-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.p-card-comp {
  font-size: 13px;
  color: var(--ssl-text-secondary, #444);
  line-height: 1.45;
  margin: 0 0 8px;
  flex: 1;
  font-weight: 500;
}
.p-card-weight {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ssl-text-muted, #999);
  font-weight: 600;
  margin: 0 0 12px;
}
.p-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.p-card-price-wrap { display: flex; flex-direction: column; line-height: 1; }
.p-card-price-old {
  font-size: 13px;
  color: var(--ssl-text-muted, #999);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.p-card-price {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #7A5500, #C8960C, #FFE566, #C8960C, #7A5500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(.5px .5px 0 #7A5200);
  transition: filter .3s;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
}
.p-card:hover .p-card-price {
  background: linear-gradient(105deg, #C8960C 0%, #FFE566 30%, #FFF8CC 50%, #FFE566 70%, #C8960C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ssl-gold-flow 6s ease-in-out infinite;
  filter: drop-shadow(.5px .5px 0 #7A5200) drop-shadow(0 0 8px rgba(212,150,12,.35));
}
.p-card-add {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFE566;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s, background .2s;
}
.p-card-add:hover { background: var(--ssl-bordeau, #8B2635); transform: rotate(90deg); }
.p-card-add svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* =============================================
   8. AUTHORITY-БЛОК (отзыв + гарантия)
   ============================================= */
.authority {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin: 0 0 56px;
}
.review-card {
  position: relative;
  background: linear-gradient(135deg, #14090a, #2a1518);
  color: #fff;
  border-radius: 18px;
  padding: 24px 28px 20px;
  border: 1px solid rgba(212,175,55,.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,175,55,.20) 0%, transparent 65%);
  pointer-events: none;
}
.review-card .quote-mark {
  position: absolute;
  top: 4px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 1;
  background: linear-gradient(135deg, #C8960C, #FFE566 50%, #C8960C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .55;
  pointer-events: none;
}
.review-card blockquote {
  position: relative;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
  color: #f6efe2;
  padding-top: 24px;
  text-wrap: pretty;
}
.review-card .reviewer {
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.review-card .r-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a0d0f;
  background: linear-gradient(135deg, #FFE566, #C8960C);
  flex-shrink: 0;
}
.review-card .r-meta { flex: 1; min-width: 0; }
.review-card .r-name { font-weight: 600; font-size: 15px; color: #fff; }
.review-card .r-src {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-top: 2px;
}
.review-card .r-stars {
  font-size: 16px;
  letter-spacing: 3px;
  background: linear-gradient(105deg, #C8960C, #FFE566 50%, #C8960C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-card .r-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFE566;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,175,55,.4);
  transition: gap .2s, color .2s;
}
.review-card .r-link:hover { gap: 12px; color: #fff; }
.review-card .r-link svg { transition: transform .2s; }
.review-card .r-link:hover svg { transform: translateX(2px); }

.guarantee-card {
  background: var(--paper);
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-1);
}
.guarantee-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -50% auto;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(212,175,55,.10), transparent 65%);
  pointer-events: none;
}
.guarantee-card .seal {
  width: 44px; height: 44px;
  color: #C8960C;
  filter: drop-shadow(0 4px 12px rgba(200,150,12,.25));
  animation: ssl-seal-pulse 6s ease-in-out infinite;
}
.guarantee-card .seal svg { width: 100%; height: 100%; }
@keyframes ssl-seal-pulse {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(8deg); }
}
.guarantee-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  margin: 0; line-height: 1.1;
  color: var(--ink);
}
.guarantee-card p {
  margin: 0; font-size: 14px;
  color: var(--ssl-text-secondary, #444);
  line-height: 1.55;
  text-wrap: pretty;
}
@media (max-width: 920px) {
  .authority { grid-template-columns: 1fr; }
  .review-card { padding: 20px 18px 16px; }
  .review-card blockquote { font-size: 16px; padding-top: 20px; }
  .review-card .quote-mark { font-size: 72px; }
}

/* =============================================
   9. ACTION-BAR ВНИЗУ (премиум, акция дня)
   ============================================= */
.action-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  width: calc(100% - 32px);
  max-width: 1080px;
  background: linear-gradient(135deg, #14090a 0%, #2a1518 60%, #14090a 100%);
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 22px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(212,175,55,.18);
  color: #fff;
}
.action-bar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(105deg, transparent, rgba(212,175,55,.5), transparent);
  background-size: 200% auto;
  animation: ssl-gold-flow 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  opacity: .6;
}
.ab-deal {
  display: flex; align-items: center; gap: 16px;
}
.ab-deal img {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,.3);
  flex-shrink: 0;
}
.ab-deal .info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ab-deal .label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: #FFE566; font-weight: 700;
}
.ab-deal .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  line-height: 1; margin-bottom: 2px;
}
.ab-deal .row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
}
.ab-deal .price-old { color: rgba(255,255,255,.5); text-decoration: line-through; }
.ab-deal .price-new {
  font-size: 20px; font-weight: 800;
  background: linear-gradient(105deg, #C8960C, #FFE566 50%, #C8960C);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(.5px .5px 0 #7A5200);
  animation: ssl-gold-flow 6s ease-in-out infinite;
}
.ab-deal .timer {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: #FFE566;
  font-weight: 700;
  letter-spacing: .04em;
}
.ab-cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 760px) {
  .action-bar { padding: 10px 12px; gap: 8px; bottom: 12px; }
  .ab-deal img { width: 48px; height: 48px; border-radius: 10px; }
  .ab-deal .name { font-size: 16px; }
  .ab-deal .row { font-size: 12px; gap: 8px; }
  .ab-deal .price-new { font-size: 16px; }
  .ab-cta .btn-line { display: none; }
  .ab-cta .btn-primary { padding: 12px 16px; font-size: 11px; }
}

/* =============================================
   10. СВЕТЛАЯ ВЕРСИЯ HERO (через body.theme-light)
   ============================================= */
body.theme-light .topbar {
  background: var(--paper);
  color: var(--ssl-text-secondary, #444);
  border-bottom: 1px solid var(--line);
}
body.theme-light .topbar-item .ic { stroke: #7A5200; }
body.theme-light .site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line-gold);
}
body.theme-light .meta-block { color: var(--ink); }
body.theme-light .meta-block .label { color: var(--ssl-text-muted, #999); }
body.theme-light .meta-block.phones .value a:hover { color: var(--ssl-bordeau, #8B2635); }
body.theme-light .btn-ghost-gold { color: #7A5200; border-color: rgba(212,175,55,.55); }
body.theme-light .btn-ghost-gold:hover { background: rgba(212,175,55,.1); border-color: #C8960C; }
body.theme-light .burger { color: #7A5200; border-color: rgba(212,175,55,.4); }
body.theme-light .burger svg { stroke: #7A5200; }
body.theme-light .brand-words .tagline { color: var(--ssl-text-muted, #999); }

body.theme-light .hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,.16), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(139,38,53,.08), transparent 60%),
    linear-gradient(180deg, #FFFCF6 0%, #F5ECDD 100%);
  color: var(--ink);
}
body.theme-light .hero h1 .line-1 { color: var(--ink); }
body.theme-light .hero-sub { color: var(--ssl-text-secondary, #444); }
body.theme-light .btn-line { color: var(--ink); border-color: rgba(20,9,10,.2); }
body.theme-light .btn-line:hover { border-color: #7A5200; color: #7A5200; }
body.theme-light .hero-eyebrow {
  color: #7A5200;
  background: rgba(212,175,55,.1);
  border-color: rgba(212,175,55,.4);
}
body.theme-light .hero-deco span { background: radial-gradient(circle, rgba(212,175,55,.7) 0%, transparent 70%); }

/* =============================================
   11. УТИЛИТЫ
   ============================================= */
.spacer-bottom { height: 120px; } /* отступ под action-bar */

@media (max-width: 760px) { .spacer-bottom { height: 140px; } }

/* =============================================
   CRM-LOVE OVERRIDES
   Адаптирует классы menu.html к новому дизайну
   ============================================= */

/* ── Шапка: новые элементы ── */
.burger-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.28);
  background: transparent;
  color: #FFE566;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.burger-btn:hover { background: rgba(212,175,55,.08); border-color: rgba(212,175,55,.55); }
.burger-btn span {
  display: block;
  width: 18px; height: 1.6px;
  background: #FFE566;
  margin: 2.5px auto;
  border-radius: 1px;
}
.header-brand-name { font-size: 14px; white-space: nowrap; }
@media (max-width: 640px) { .header-brand-name { display: none; } }

.header-meta-inline {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
  min-width: 0;
}
.hmi-item { white-space: nowrap; }
.hmi-sep { color: rgba(212,175,55,.45); }
.hmi-phone {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.hmi-phone:hover { color: #FFE566; }
@media (max-width: 880px) { .header-meta-inline { display: none; } }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  margin-left: auto;
}

/* Переопределяем кнопки шапки под тёмный фон */
.site-header .callback-header-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,.35);
  color: rgba(255,255,255,.75);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.site-header .callback-header-btn:hover {
  background: rgba(212,175,55,.08);
  border-color: rgba(212,175,55,.6);
  color: #FFE566;
}
@media (max-width: 600px) {
  .site-header .callback-header-label { display: none; }
  .site-header .callback-header-btn { padding: 7px 9px; }
  /* Hide text labels — keep only icons */
  .site-header .login-header-btn .login-txt,
  .site-header .chat-header-btn .btn-txt,
  .site-header .idea-header-btn .btn-txt,
  .site-header .cart-label { display: none; }
  .site-header .login-header-btn { padding: 7px 9px; }
  .site-header .cart-header-btn { padding: 7px 9px; }
  .site-header .chat-header-btn { padding: 7px 9px; }
  .site-header .idea-header-btn { padding: 7px 9px; }
  .header-cta { gap: 6px; padding-right: 6px; }
}
@media (max-width: 480px) {
  .site-header .callback-header-btn { display: none; }
  .site-header .login-header-btn,
  .site-header .cart-header-btn,
  .site-header .chat-header-btn,
  .site-header .idea-header-btn { padding: 6px 8px; }
  .header-cta { gap: 5px; padding-right: 4px; }
}
.site-header .login-header-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,.35);
  color: rgba(255,255,255,.85);
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  position: relative;
  white-space: nowrap;
}
.site-header .login-header-btn:hover {
  background: rgba(212,175,55,.08);
  border-color: rgba(212,175,55,.6);
  color: #FFE566;
}
.site-header .cart-header-btn {
  background: var(--ssl-bordeau, #8B2635);
  border: 1px solid transparent;
  color: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.site-header .cart-header-btn:hover {
  background: var(--ssl-bordeau-dark, #6B1B28);
  transform: translateY(-1px);
}
.site-header .cart-count {
  display: inline-block;
  background: #FFE566;
  color: #1a0d0f;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  min-width: 18px;
  text-align: center;
}
.site-header .phone-badge {
  display: inline-block;
  background: #FFE566;
  color: #1a0d0f;
  border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 10px; font-weight: 700;
  text-align: center; line-height: 16px;
  margin-left: 4px;
}

/* ── Hero: новые элементы ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { color: #fff; }
.hero-logo-img {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.55));
  margin: 8px 0 16px;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta-main { font-size: 15px; padding: 13px 28px; }
.hero-cta-sec {
  background: transparent;
  border: 1px solid rgba(212,175,55,.4);
  color: rgba(255,255,255,.85);
  font-size: 15px;
  padding: 13px 28px;
}
.hero-cta-sec:hover {
  background: rgba(212,175,55,.08);
  border-color: rgba(212,175,55,.65);
  color: #FFE566;
  transform: translateY(-1px);
}

/* Hero slider */
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease;
  display: flex; align-items: flex-end;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.05) 40%, rgba(20,9,10,.88) 100%);
  z-index: 1;
  border-radius: 24px;
}
.hero-slide-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--hero-bg-2), var(--hero-bg-1));
}
.hero-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-img { transform: scale(1.08); }
.hero-slide-caption { position: relative; z-index: 2; width: 100%; }
.hero-slide-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 4px;
}
.hero-slide-price { font-size: 22px; font-weight: 800; }
.hero-slide-old {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  -webkit-text-fill-color: rgba(255,255,255,.45);
  background: none; filter: none;
  margin-right: 4px;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
  user-select: none; -webkit-user-select: none;
}
.hero-arrow:hover { background: rgba(0,0,0,.7); transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: 12px; }
.hero-arrow-next { right: 12px; }
@media (max-width: 480px) {
  .hero-arrow { width: 30px; height: 30px; font-size: 14px; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
}
.hero-dots {
  position: absolute; bottom: 14px; right: 18px;
  z-index: 3;
  display: flex; gap: 6px;
}
.hero-dot {
  width: 26px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active {
  background: #FFE566;
  width: 40px;
  box-shadow: 0 0 8px rgba(255,229,102,.55);
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-logo-img { max-width: 240px; }
}
@media (max-width: 600px) {
  .hero-text { text-align: center; }
  .hero-eyebrow { margin: 0 auto 16px; }
  /* Logo full width between margins */
  .hero-logo-img { max-width: 100%; width: 100%; display: block; }
  /* Both CTA buttons on one row */
  .hero-actions { flex-wrap: nowrap; }
  .hero-cta-main, .hero-cta-sec { flex: 1; justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero-slider { height: 280px; }
  .hero-cta-main, .hero-cta-sec { font-size: 14px; padding: 11px 14px; }
}

/* ── Stats ── */
.stat-card .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ssl-text-muted, #999);
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-card .stat-hint { font-size: 12px; color: var(--ssl-text-secondary, #444); }
@media (max-width: 480px) { .stat-card .stat-num { font-size: 32px; } }

/* ── Authority ── */
.authority-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin: 0 0 56px;
}
@media (max-width: 920px) { .authority-grid { grid-template-columns: 1fr; } }
.review-stars {
  font-size: 18px;
  letter-spacing: 3px;
  background: linear-gradient(105deg, #C8960C, #FFE566 50%, #C8960C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-author { font-size: 13px; color: rgba(255,255,255,.6); }
.review-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.review-link-btn {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,.3);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.review-link-btn:hover {
  border-color: rgba(212,175,55,.65);
  color: #FFE566;
  background: rgba(212,175,55,.08);
}
.guarantee-icon { font-size: 40px; line-height: 1; }
.guarantee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.guarantee-text { font-size: 14px; color: var(--ssl-text-secondary, #444); line-height: 1.55; }
.guarantee-btn { align-self: flex-start; margin-top: 8px; }

/* ── Action bar: мои классы ── */
.action-bar.hidden { display: none; }
.action-bar-inner { display: flex; align-items: center; gap: 14px; }
.action-bar-content { flex: 1; min-width: 0; }
.action-bar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.action-bar-timer { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; }
.action-bar-time {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  color: #FFE566;
  font-weight: 700;
}
.action-bar-cta { flex-shrink: 0; font-size: 13px; padding: 10px 18px; }
.action-bar-close {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: none;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.action-bar-close:hover { background: rgba(255,255,255,.15); color: #fff; }
@media (max-width: 600px) {
  .action-bar-title { font-size: 15px; }
  .action-bar-cta { font-size: 12px; padding: 9px 14px; }
}

/* ── Nav strip: sticky top ── */
#nav-strip { top: 88px; }
@media (max-width: 767px) {
  #nav-strip { top: 72px; }
  .header-inner { height: 72px; }
}

/* ── Карточки блюд (из JS) ── */
.item-card {
  background: var(--paper, #FFFCF6) !important;
  border-radius: 18px !important;
  border: 1px solid var(--line-gold, rgba(212,175,55,.2)) !important;
  box-shadow: var(--shadow-1) !important;
  transition: box-shadow .3s, transform .3s, border-color .3s !important;
}
.item-card:hover {
  box-shadow: var(--shadow-2) !important;
  transform: translateY(-4px) !important;
  border-color: rgba(212,175,55,.45) !important;
}
.item-img-wrap { border-radius: 14px 14px 0 0 !important; overflow: hidden; }
.item-name {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.item-price {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
}
.category-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
}
.items-grid { gap: 22px !important; }

/* ── Категории (из JS) ── */
.cat-link {
  display: inline-block !important;
  padding: 9px 18px !important;
  border-radius: 22px !important;
  border: 1px solid var(--line, rgba(20,9,10,.08)) !important;
  background: transparent !important;
  color: var(--ssl-text-secondary, #444) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: border-color .2s, color .2s, background .2s !important;
  cursor: pointer !important;
}
.cat-link:hover {
  border-color: rgba(212,175,55,.4) !important;
  color: var(--ink, #14090a) !important;
}
.cat-link.active {
  background: var(--ink, #14090a) !important;
  border-color: var(--ink, #14090a) !important;
  color: #FFE566 !important;
}

/* ── Fix cat-nav inside #nav-strip (not a standalone sticky) ── */
#nav-strip .cat-nav {
  position: static !important;
  top: auto !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  z-index: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* ── Active chip on mobile: no dark background (too dominant on small screen) ── */
@media (max-width: 767px) {
  #nav-strip .cat-link.active {
    background: transparent !important;
    border-color: var(--gold, #D4AF37) !important;
    color: var(--gold, #D4AF37) !important;
    box-shadow: none !important;
  }
  #nav-strip .cat-link.active::after { display: none !important; }
}
/* ── Nav-strip nav-icon-btn consistent with redesign ── */
.nav-icon-btn {
  border-color: var(--line, rgba(20,9,10,.1)) !important;
  background: transparent !important;
  color: var(--ssl-text-secondary, #555) !important;
  font-family: inherit !important;
}
.nav-icon-btn svg { pointer-events: none; }
.nav-icon-btn:hover:not(.active) {
  border-color: rgba(212,175,55,.4) !important;
  color: var(--ink, #14090a) !important;
}
.nav-icon-btn.active {
  border-color: var(--ink, #14090a) !important;
  background: var(--ink, #14090a) !important;
  color: #FFE566 !important;
}
