/* ========= Роза ДВ Int. — дизайн-система ========= */
:root {
  --bg: #fbfaf7;
  --fg: #14322a;
  --card: #ffffff;
  --muted: #6b7d75;
  --border: #e6eae5;
  --forest: #14382c;
  --pine: #1d5544;
  --emerald: #1f8a63;
  --leaf: #8fd8a8;
  --plum: #8a2f7c;
  --plum-soft: #b761ab;
  --sand: #f6f2e8;
  --radius: 14px;
  --shadow-soft: 0 1px 2px rgba(20, 50, 42, .04), 0 14px 36px -16px rgba(20, 50, 42, .14);
  --shadow-lift: 0 28px 66px -28px rgba(20, 50, 42, .3);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
p { margin: 0; }
button { font: inherit; }

.container-x { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container-x { padding: 0 28px; } }

.section { padding: 44px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
.section-tint { background: linear-gradient(180deg, #fff, var(--sand)); }

.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--plum); }
.h-title { margin-top: 10px; font-size: clamp(26px, 4.6vw, 42px); }
.h-text { margin-top: 12px; color: var(--muted); font-size: 16px; max-width: 640px; }
.center { text-align: center; }
.center .h-text { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--plum), #6d2463); color: #fff; box-shadow: 0 18px 44px -18px rgba(138, 47, 124, .55); }
.btn-forest { background: var(--forest); color: #f2fbf6; }
.btn-emerald { background: var(--emerald); color: #fff; }
.btn-ghost { background: #fff; color: var(--forest); border-color: var(--border); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; color: var(--forest); border-color: rgba(20, 56, 44, .28); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Карточки ---------- */
.surface-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.pad { padding: 20px; }
@media (min-width: 768px) { .pad { padding: 26px; } }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 250, 247, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-row { display: flex; align-items: center; gap: 14px; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 46px; width: auto; }
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }
@media (min-width: 1280px) { .logo-note { display: block; } }
.logo-name { display: block; font-size: 17px; font-weight: 800; color: var(--forest); line-height: 1.15; }
.logo-note { display: none; white-space: nowrap; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav { display: none; margin-left: auto; gap: 20px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { white-space: nowrap; font-size: 14.5px; font-weight: 600; color: var(--forest); opacity: .86; }
.nav a:hover, .nav a.is-active { opacity: 1; color: var(--emerald); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (min-width: 1024px) { .header-actions { margin-left: 20px; } }
.header-phone { display: none; font-weight: 800; font-size: 16px; color: var(--forest); white-space: nowrap; }
.header-phone span { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 768px) { .header-phone { display: block; } }
.burger { display: inline-flex; flex-direction: column; gap: 4px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: #fff; cursor: pointer; }
.burger i { width: 18px; height: 2px; background: var(--forest); display: block; }
@media (min-width: 1024px) { .burger { display: none; } }
.mobile-menu { display: none; border-top: 1px solid var(--border); background: #fff; padding: 14px 0 20px; }
.mobile-menu.is-open { display: block; }
.mobile-menu a.m-link { display: block; padding: 11px 0; font-weight: 700; color: var(--forest); border-bottom: 1px solid var(--border); }
.mobile-menu .m-actions { display: grid; gap: 10px; margin-top: 16px; }

/* ---------- Главный экран ---------- */
.hero { position: relative; overflow: hidden; background: var(--forest); color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9, 32, 25, .93) 0%, rgba(9, 32, 25, .72) 42%, rgba(9, 32, 25, .28) 72%, rgba(9, 32, 25, .12) 100%); }
@media (max-width: 767px) { .hero-shade { background: linear-gradient(180deg, rgba(8, 28, 22, .72), rgba(8, 28, 22, .86)); } }
.hero-inner { position: relative; padding: 54px 16px 46px; }
@media (min-width: 768px) { .hero-inner { padding: 92px 28px 88px; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22); font-size: 12.5px; font-weight: 700; }
.hero h1 { margin-top: 18px; font-size: clamp(30px, 6vw, 56px); max-width: 680px; }
.hero-sub { margin-top: 14px; max-width: 560px; color: rgba(255, 255, 255, .84); font-size: 15.5px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-plate { display: inline-flex; align-items: baseline; gap: 7px; margin-top: 22px; padding: 10px 16px; border-radius: 999px; background: rgba(38, 38, 38, .85); color: #fff; font-weight: 800; }
.hero-plate small { font-weight: 600; font-size: 11.5px; color: rgba(255, 255, 255, .78); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 28px; max-width: 560px; }
.hero-stat { padding: 12px 14px; border-radius: 16px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18); }
.hero-stat b { display: block; font-size: 19px; }
.hero-stat span { font-size: 11.5px; color: rgba(255, 255, 255, .76); }
@media (max-width: 767px) {
  .hero-inner { text-align: center; }
  .hero h1, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-stats { max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 22px; }
  .hero-stat { padding: 10px 10px; border-radius: 14px; }
  .hero-stat b { font-size: 16px; }
  .hero-stat span { font-size: 10.5px; }
}

/* ---------- Товары ---------- */
.product-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); height: 100%; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s var(--ease), transform .6s var(--ease); }
.product-media img.alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-media img.alt { opacity: 1; }
.product-tags { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; background: rgba(255, 255, 255, .93); color: var(--forest); }
.tag-hit { background: var(--plum); color: #fff; }
.tag-new { background: var(--emerald); color: #fff; }
.product-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-title { font-size: 15.5px; font-weight: 800; }
.product-meta { font-size: 12.5px; color: var(--muted); }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.product-price b { font-size: 19px; }
.product-price span { font-size: 12px; color: var(--muted); }

/* ---------- Слайдер ---------- */
.slider-wrap { position: relative; }
.slider { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.slider::-webkit-scrollbar { display: none; }
.slider > * { scroll-snap-align: start; }
@media (min-width: 640px) { .slider { grid-auto-columns: 46%; } }
@media (min-width: 1000px) { .slider { grid-auto-columns: calc((100% - 3 * 14px) / 4); } }
.slider-arrow {
  position: absolute; top: 42%; z-index: 5; width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255, 255, 255, .95); color: var(--pine);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-soft);
}
.slider-arrow.prev { left: -6px; }
.slider-arrow.next { right: -6px; }

/* ---------- Калькулятор ---------- */
.calc { display: grid; gap: 20px; }
@media (min-width: 900px) { .calc { grid-template-columns: 1.35fr .8fr; } }
.calc-block + .calc-block { margin-top: 18px; }
.calc-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.opt-row { display: grid; gap: 8px; margin-top: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .opt-row { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.opt {
  padding: 11px 8px; border-radius: 14px; border: 1px solid var(--border); background: #fff;
  font-size: 13.5px; font-weight: 700; cursor: pointer; text-align: center; color: var(--forest);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.opt small { display: block; font-weight: 600; font-size: 11px; color: var(--muted); }
.opt[aria-pressed="true"] { border-color: var(--emerald); background: #f2fbf6; box-shadow: 0 0 0 2px rgba(31, 138, 99, .16); }
.qty-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.qty-field { position: relative; display: inline-flex; align-items: center; }
.qty-field em { position: absolute; right: 12px; font-style: normal; font-size: 12px; font-weight: 700; color: var(--muted); pointer-events: none; }
.qty-input { width: 118px; padding: 11px 32px 11px 14px; border-radius: 12px; border: 1px solid var(--border); font-weight: 800; text-align: center; }
.qty-chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 700; font-size: 13px; cursor: pointer; }
.qty-chip[aria-pressed="true"] { border-color: var(--emerald); background: #f2fbf6; }
.colors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.color-btn { display: grid; gap: 6px; justify-items: center; padding: 6px; border-radius: 14px; border: 1px solid transparent; background: none; cursor: pointer; width: 74px; }
.color-btn[aria-pressed="true"] { border-color: var(--emerald); background: #f2fbf6; }
.color-btn span { font-size: 11.5px; font-weight: 700; color: var(--forest); }
.color-btn svg { width: 38px; height: 38px; border-radius: 999px; box-shadow: 0 2px 8px rgba(20, 50, 42, .18); }
.addons { display: grid; gap: 8px; margin-top: 10px; }
.addon { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 14px; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.addon input { width: 18px; height: 18px; accent-color: var(--emerald); }
.addon b { font-size: 14px; }
.addon .addon-price { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--emerald); white-space: nowrap; }
.summary { position: sticky; top: 96px; border-radius: 20px; background: linear-gradient(150deg, #14382c, #0d2620); color: #fff; padding: 22px; }
.summary-row { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, .8); padding: 6px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .18); }
.summary-total b { font-size: 30px; }
.summary .btn { margin-top: 16px; }
.summary-note { margin-top: 10px; font-size: 12px; color: rgba(255, 255, 255, .66); }

/* ---------- Прочее ---------- */
.feature { display: grid; gap: 8px; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.feature b { font-size: 16px; }
.feature p { color: var(--muted); font-size: 13.5px; }
.feature { padding: 26px; transition: transform .5s var(--ease-silk), box-shadow .5s var(--ease-silk); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift, 0 18px 40px -18px rgba(20,40,30,.25)); }
.feature__ico { width: 56px; height: 56px; border-radius: 16px; background: color-mix(in oklab, var(--emerald) 12%, #fff); color: var(--emerald); display: grid; place-items: center; transition: transform .5s var(--ease-silk); }
.feature:hover .feature__ico { transform: scale(1.1); }
.feature__ico .svg-ico { width: 28px; height: 28px; stroke-width: 1.6; }
.feature b { margin-top: 6px; font-size: 17px; }

.review { display: grid; gap: 10px; padding: 20px; border-radius: 18px; background: #fff; border: 1px solid var(--border); }
.stars { color: #e8a33d; letter-spacing: 2px; }
.review-name { font-weight: 800; }
.review-date { font-size: 12px; color: var(--muted); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 14px; padding: 16px 0; background: none; border: 0; text-align: left; font-weight: 800; font-size: 15.5px; color: var(--forest); cursor: pointer; }
.faq-a { display: none; padding: 0 0 16px; color: var(--muted); font-size: 14.5px; }
.faq-item.is-open .faq-a { display: block; }
.faq-item.is-open .faq-q i { transform: rotate(45deg); }
.faq-q i { font-style: normal; transition: transform .2s var(--ease); }

.city-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.city-tab { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.city-tab[aria-pressed="true"] { background: var(--forest); color: #fff; border-color: var(--forest); }
.shop { display: grid; gap: 6px; padding: 16px; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.shop b { font-size: 15px; }
.shop small { color: var(--muted); }
.shop-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.map-frame { margin-top: 18px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); min-height: 340px; }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

.exclusive { background: linear-gradient(150deg, #14382c, #0c231d); color: #fff; }
.exclusive .h-text { color: rgba(255, 255, 255, .78); }
.exclusive-grid { display: grid; gap: 22px; align-items: center; }
@media (min-width: 900px) { .exclusive-grid { grid-template-columns: .85fr 1.15fr; } }
.exclusive-photo { border-radius: 22px; overflow: hidden; max-width: 380px; margin: 0 auto; box-shadow: var(--shadow-lift); }
.price-pill { display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 18px; border-radius: 999px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); font-weight: 800; }

/* ---------- Формы ---------- */
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--forest); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border);
  background: #fff; font: inherit; color: var(--fg);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid rgba(31, 138, 99, .35); outline-offset: 1px; }
.field .hint { font-size: 11.5px; color: var(--muted); }
.form-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.switch-row { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--sand); border: 1px solid var(--border); }
.switch-row button { padding: 9px 18px; border-radius: 999px; border: 0; background: none; font-weight: 700; font-size: 13.5px; cursor: pointer; color: var(--forest); }
.switch-row button[aria-pressed="true"] { background: #fff; box-shadow: var(--shadow-soft); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--emerald); }
.alert { padding: 12px 16px; border-radius: 14px; background: #eef8f2; color: #14523c; font-weight: 700; font-size: 14px; }
.alert-error { background: #fdeced; color: #8e1d28; }

/* ---------- Модальное окно ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 28, 22, .55); backdrop-filter: blur(3px); }
.modal-body {
  position: relative; z-index: 2; width: min(560px, calc(100% - 24px)); margin: 5vh auto;
  max-height: 90vh; overflow-y: auto; background: #fff; border-radius: 22px; padding: 22px;
  box-shadow: var(--shadow-lift);
}
.modal-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; }

/* ---------- Подвал ---------- */
.footer { margin-top: 20px; background: var(--forest); color: rgba(255, 255, 255, .8); padding: 44px 0 26px; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 26px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .16); font-size: 12px; display: grid; gap: 8px; }
.footer-logo img { height: 54px; }

/* ---------- Кнопка «вверх» ---------- */
.scroll-top {
  position: fixed; right: 18px; bottom: 104px; z-index: 70; width: 56px; height: 56px; border-radius: 999px;
  border: 0; background: var(--emerald); color: #fff; font-size: 22px; cursor: pointer;
  box-shadow: 0 14px 32px -10px rgba(31, 138, 99, .7); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---------- Анимация появления ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.breadcrumbs { font-size: 12.5px; color: var(--muted); padding-top: 18px; }
.breadcrumbs a:hover { color: var(--emerald); }
.legal-content h2 { font-size: 18px; margin-top: 22px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14.5px; }
.legal-content ul { padding-left: 20px; }
.legal-intro { font-size: 15.5px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.gallery-thumbs img { width: 78px; height: 96px; object-fit: cover; border-radius: 12px; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img.is-active { border-color: var(--emerald); }
.gallery-main { position: relative; border-radius: 22px; overflow: hidden; background: var(--sand); }
.gallery-main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 999px; border: 0; background: rgba(255, 255, 255, .92); color: var(--pine); font-size: 18px; cursor: pointer; }
.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }

/* Разные видео на главном экране: горизонтальное для десктопа, вертикальное для телефона */
.hero-media .hero-video--mob { display: none; }
@media (max-width: 1023px) {
  .hero-media .hero-video--desk { display: none; }
  .hero-media .hero-video--mob { display: block; }
}

/* ============================================================
   Приведение к утверждённому превью (макет Lovable)
   ============================================================ */
:root {
  --ease-silk: cubic-bezier(.22, 1, .36, 1);
  --shadow-plum: 0 18px 44px -18px rgba(138, 47, 124, .4);
}
body { line-height: 1.5; }
h1, h2, h3 { letter-spacing: -.025em; }
.container-x { max-width: 84rem; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(2.5rem, 4.5vw, 4.5rem); }
.ico { width: 16px; height: 16px; flex: 0 0 auto; }
.ico-fill { fill: currentColor; }
.ico-plum { color: var(--plum); }
.ico-emerald { color: var(--emerald); }

/* ---------- Шапка как в превью ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .93); backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(226, 232, 226, .9);
  box-shadow: var(--shadow-soft);
  transition: background .5s var(--ease-silk), box-shadow .5s var(--ease-silk), border-color .5s var(--ease-silk);
}
body { padding-top: 0; }
main { padding-top: 0; }
.header-row { height: auto; padding-block: 12px; gap: 16px; }
.logo img { height: 64px; }
@media (min-width: 768px) { .logo img { height: 80px; } }
.logo-light { display: none; }
.logo-text { display: none !important; }
.nav { margin-left: auto; gap: 20px; }
@media (min-width: 1280px) { .nav { display: flex; } }
@media (max-width: 1279px) { .nav { display: none; } }
.nav a { font-size: 14px; font-weight: 700; color: var(--forest); position: relative; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--plum); transition: width .3s var(--ease-silk);
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a:hover, .nav a.is-active { color: var(--plum); opacity: 1; }
.header-phone {
  display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: var(--forest);
  white-space: nowrap; margin-left: 18px;
}
@media (min-width: 1280px) { .header-phone { display: inline-flex; margin-left: 28px; } }
@media (min-width: 1536px) { .header-phone { margin-left: 44px; } }
.header-phone span { display: none; }
.header-actions { gap: 8px; }
.burger {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card);
}
.burger .ico { width: 20px; height: 20px; }
@media (min-width: 1280px) { .burger { display: none; } }
.header-actions .btn-sm { border-radius: 999px; padding: 9px 20px; }
@media (max-width: 639px) { .header-actions .btn-primary { display: none; } }

/* Прозрачная шапка поверх героя (только главная, до прокрутки) */
.header--hero.is-top {
  background: transparent; backdrop-filter: none; border-color: transparent; box-shadow: none;
}
.header--hero.is-top .logo-dark { display: none; }
.header--hero.is-top .logo-light { display: block; }
.header--hero.is-top .logo img { height: 80px; }
@media (min-width: 768px) { .header--hero.is-top .logo img { height: 96px; } }
.header--hero.is-top .nav a,
.header--hero.is-top .header-phone { color: #fff; text-shadow: 0 1px 6px rgba(0, 0, 0, .45); }
.header--hero.is-top .header-phone .ico { color: #fff; }
.header--hero.is-top .burger { border-color: rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .15); color: #fff; }

.mobile-menu { background: rgba(251, 250, 247, .96); backdrop-filter: blur(18px); border-top-color: rgba(230, 234, 229, .6); }
.mobile-menu a.m-link { font-weight: 500; font-size: 16px; }
.m-phone { display: block; padding: 12px 0; font-weight: 800; color: var(--plum); }
.m-socials { display: flex; gap: 12px; padding: 4px 0 16px; }
.m-socials a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card); color: var(--plum);
  transition: background .3s var(--ease-silk), color .3s var(--ease-silk);
}
.m-socials a:hover { background: var(--plum); color: #fff; }
.m-socials b { font-size: 11px; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Кнопки как в превью ---------- */
.btn { transition: transform .3s var(--ease-silk), box-shadow .3s var(--ease-silk), background .3s var(--ease-silk), color .3s var(--ease-silk); }
.btn:hover { transform: scale(1.03); }
.btn-primary { background: var(--plum); box-shadow: var(--shadow-plum); }
.btn-primary:hover { background: #7c2a70; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
@media (min-width: 1024px) { .btn-lg { padding: 12px 40px; font-size: 16px; } }
.btn-glass {
  background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .2); color: #fff; }

/* ---------- Главный экран как в превью ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; }
@media (min-width: 768px) { .hero { min-height: 92vh; } }
.hero-shade {
  background: linear-gradient(180deg, rgba(10, 34, 27, .74), rgba(10, 34, 27, .5) 52%, rgba(9, 32, 25, .9));
}
@media (min-width: 768px) {
  .hero-shade {
    background: linear-gradient(100deg, rgba(9, 32, 25, .93) 0%, rgba(9, 32, 25, .72) 42%, rgba(9, 32, 25, .3) 72%, rgba(9, 32, 25, .12) 100%);
  }
}
.hero-shade--top { background: linear-gradient(0deg, rgba(12, 40, 31, .65), transparent); }
.hero-veil { position: absolute; inset-inline: 0; bottom: 0; height: 160px; background: linear-gradient(0deg, var(--bg), transparent); }
.hero-inner { position: relative; padding-block: 112px 64px; text-align: center; }
@media (min-width: 1024px) { .hero-inner { text-align: left; padding-block: 128px 64px; } }
.hero-inner > * { max-width: 42rem; margin-inline: auto; }
@media (min-width: 1024px) { .hero-inner > * { margin-inline: 0; } }
.hero-badge {
  background: rgba(0, 0, 0, .34); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px) saturate(140%);
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 16px;
}
.hero h1 {
  margin-top: 24px; font-size: 2.6rem; line-height: 1.02; font-weight: 800; letter-spacing: -.025em;
  text-wrap: balance;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-title-accent { display: block; margin-top: 12px; }
.hero-title-accent > span {
  display: inline-block; border-radius: 16px; background: rgba(38, 38, 38, .85); color: #fff;
  padding: 4px 10px; font-size: 1.7rem; line-height: 1.15; backdrop-filter: blur(12px);
}
@media (min-width: 640px) {
  .hero-title-accent > span {
    background: transparent; padding: 0; color: var(--plum-soft); font-size: 3.75rem; backdrop-filter: none;
  }
}
@media (min-width: 1024px) { .hero-title-accent > span { font-size: 4.5rem; } }
.hero-sub { margin-top: 20px; max-width: 32rem; font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, .85); }
@media (min-width: 640px) { .hero-sub { font-size: 18px; } }
.hero-cta { margin-top: 32px; gap: 12px; justify-content: center; flex-direction: column; align-items: stretch; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; align-items: center; justify-content: center; } }
@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }
.hero-stats {
  margin: 40px auto 0; max-width: 32rem; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
  padding: 24px; border-radius: 24px;
  background: rgba(0, 0, 0, .34); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px) saturate(140%);
}
@media (min-width: 640px) { .hero-stats { margin-top: 56px; gap: 24px; } }
@media (min-width: 1024px) {
  .hero-stats { margin-left: 0; margin-top: 80px; padding: 0 0 16px; background: none; border: 0; backdrop-filter: none; }
}
@media (min-width: 1280px) { .hero-stats { margin-top: 96px; } }
.hero-stat { padding: 0; background: none; border: 0; }
.hero-stat dt { font-size: 24px; font-weight: 800; }
@media (min-width: 640px) { .hero-stat dt { font-size: 30px; } }
.hero-stat dt small { margin-right: 4px; font-size: 14px; font-weight: 300; color: rgba(255, 255, 255, .75); }
.hero-stat dd { margin: 4px 0 0; font-size: 10.4px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
@media (min-width: 640px) { .hero-stat dd { font-size: 12px; } }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .7); animation: bounce-down 1.8s ease-in-out infinite;
}
.hero-scroll .ico { width: 24px; height: 24px; }
@keyframes bounce-down { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Футер как в превью ---------- */
.footer { margin-top: 64px; background: var(--forest); color: #eefaf3; }
.footer-grid {
  display: grid; gap: 32px; padding-block: 48px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-logo { height: 80px; width: auto; }
@media (min-width: 768px) { .footer-logo { height: 96px; } }
.footer-lead { margin-top: 20px; max-width: 24rem; font-size: 14px; line-height: 1.6; color: rgba(238, 250, 243, .7); }
.footer-socials { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.footer-socials a {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  font-size: 14px; background: rgba(0, 0, 0, .34); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px); transition: transform .3s var(--ease-silk);
}
.footer-socials a:hover { transform: scale(1.05); }
.footer h3 {
  font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(238, 250, 243, .6);
}
.footer ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 14px; }
.footer ul a { color: rgba(238, 250, 243, .75); transition: color .3s var(--ease-silk); }
.footer ul a:hover { color: #fff; }
.footer-phone { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; }
.footer-muted { margin-top: 8px; font-size: 14px; color: rgba(238, 250, 243, .7); }
.footer-mail { margin-top: 8px; display: block; font-size: 14px; color: rgba(238, 250, 243, .7); }
.footer-mail:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-shops { margin-top: 16px; }
.footer-line { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-legal { display: grid; gap: 12px; padding-block: 24px; font-size: 12px; color: rgba(238, 250, 243, .7); }
@media (min-width: 640px) { .footer-legal { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.footer-legal ul { margin: 0; display: grid; gap: 8px; font-size: 12px; }
.footer-legal a { text-decoration: underline; text-underline-offset: 2px; }
.footer-legal-right { display: grid; gap: 4px; }
@media (min-width: 640px) { .footer-legal-right { text-align: right; } }
.footer-copy { display: grid; gap: 8px; padding-block: 24px; font-size: 12px; color: rgba(238, 250, 243, .55); }
.footer-bottom { display: none; }

/* ---------- Контакты и карта ---------- */
.contact-pills { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 20px;
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-soft);
  font-size: 14px; font-weight: 700; transition: transform .3s var(--ease-silk);
}
.contact-pill:hover { transform: translateY(-2px); }
.shop-grid { margin-top: 32px; }
.shop {
  height: 100%; padding: 24px; border-radius: 20px; background: var(--card);
  border: 1px solid var(--border); box-shadow: var(--shadow-soft); cursor: pointer;
  transition: transform .5s var(--ease-silk), box-shadow .5s var(--ease-silk), border-color .5s var(--ease-silk);
}
.shop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.shop.is-active { border-color: rgba(138, 47, 124, .6); box-shadow: var(--shadow-lift); }
.shop-address { display: flex; align-items: flex-start; gap: 8px; font-weight: 700; }
.shop-address .ico { margin-top: 2px; }
.shop-note { margin-top: 4px; font-size: 14px; color: var(--muted); }
.shop-meta { margin-top: 12px; font-size: 14px; }
.shop-link { margin-top: 12px; display: inline-block; font-size: 14px; font-weight: 500; color: var(--plum); }
.shop-link + .shop-link { margin-top: 8px; display: block; }
.shop-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.map-frame { margin-top: 40px; overflow: hidden; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.map-frame iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Чипы фильтров ---------- */
.city-tab {
  border-radius: 999px; border: 1px solid var(--border); background: var(--card);
  padding: 8px 16px; font-size: 14px; cursor: pointer;
  transition: transform .3s var(--ease-silk), border-color .3s var(--ease-silk), background .3s var(--ease-silk), color .3s var(--ease-silk);
}
.city-tab:hover { transform: translateY(-2px); border-color: rgba(138, 47, 124, .4); }
.city-tab[aria-pressed="true"] { background: var(--plum); border-color: var(--plum); color: #fff; box-shadow: var(--shadow-plum); }

/* Отступ под фиксированную шапку на внутренних страницах */
.breadcrumbs { padding-top: 112px; }
@media (min-width: 768px) { .breadcrumbs { padding-top: 128px; } }
main > section:first-child:not(.hero) { padding-top: 112px; }
@media (min-width: 768px) { main > section:first-child:not(.hero) { padding-top: 128px; } }
main > .breadcrumbs + section { padding-top: 18px; }
@media (min-width: 768px) { main > .breadcrumbs + section { padding-top: 18px; } }

/* Кнопка «наверх» */
.scroll-top { box-shadow: var(--shadow-plum); }
.hero-stat dt { white-space: nowrap; }
@media (max-width: 420px) { .hero-stat dt { font-size: 20px; } .hero-stat dt small { font-size: 12px; } }


/* ---------- Блок доставки на главной (как в превью) ---------- */
.delivery-card {
  position: relative; overflow: hidden; border-radius: 32px;
  background: var(--forest); color: #fff;
  display: grid; align-items: stretch;
}
@media (min-width: 1024px) { .delivery-card { grid-template-columns: 1fr 1fr; } }
.delivery-card__body { padding: 32px; }
@media (min-width: 768px) { .delivery-card__body { padding: 56px; } }
.delivery-card__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.delivery-card__title { margin-top: 16px; font-size: 30px; line-height: 1.08; font-weight: 800; letter-spacing: -.01em; }
@media (min-width: 640px) { .delivery-card__title { font-size: 38px; } }
@media (min-width: 768px) { .delivery-card__title { font-size: 46px; } }
.delivery-card__text { margin-top: 16px; max-width: 30rem; color: rgba(255,255,255,.75); }
.delivery-card__stats { margin-top: 32px; display: grid; gap: 16px; }
@media (min-width: 640px) { .delivery-card__stats { grid-template-columns: repeat(3, 1fr); } }
.delivery-stat {
  border-radius: 18px; padding: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.delivery-stat b { display: block; font-size: 28px; font-weight: 800; }
.delivery-stat span { display: block; margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.68); }
.delivery-card__cta { margin-top: 32px; }
.delivery-card__media { position: relative; min-height: 280px; overflow: hidden; }
@media (min-width: 1024px) { .delivery-card__media { min-height: 100%; } }
.delivery-card__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.delivery-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slowZoom 18s ease-in-out infinite alternate; }
.delivery-card__fade { position: absolute; inset: 0 auto 0 0; width: 96px; background: linear-gradient(90deg, var(--forest), transparent); pointer-events: none; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

/* ---------- Текстовые страницы ---------- */
.page-top { padding-top: 120px; }
.prose { margin-top: 24px; max-width: 56rem; display: grid; gap: 16px; color: var(--muted); line-height: 1.7; }
.map-note { margin-top: 12px; font-size: 14px; }
.map-note a { color: var(--plum); font-weight: 700; }

/* Пожелание к открытке — появляется при выборе допа «Открытка» */
.card-wish { animation: rise .45s var(--ease-silk) both; }
.card-wish textarea {
  width: 100%; min-height: 92px; resize: vertical;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 14px;
  background: #fff; color: var(--fg); font: inherit; font-size: 14px;
}
.card-wish textarea:focus { outline: 2px solid rgba(31, 138, 99, .35); outline-offset: 1px; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
