/* ============================================================
   Furset BBQ-конструктор — kp.furset.ru/bbq/
   Палитра: тёмный premium с золотым акцентом
   Шрифт: Open Sans 300-800
   Mobile-first, брейкпоинты 768 / 1024
   ============================================================ */

:root {
  --bg: #010B13;
  --bg-2: #021627;
  --bg-3: #0a1929;
  --text: #FBFFFE;
  --text-mute: #aaabbc;
  --gold: #FFAD05;
  --gold-soft: rgba(255,173,5,0.15);
  --green: #4BCA5A;
  --green-soft: rgba(75,202,90,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --radius-pill: 50px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Защита от любых внутренних элементов с фикс-шириной, чтоб не было
     горизонтального скролла на мобилке. */
  max-width: 100vw;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }
@media (min-width: 1440px) { .container { padding: 0 64px; } }

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }

/* ===== Glass-эффект (контур через mask) — как на /view/ ===== */
.outline-gold, .outline-white, .outline-green { position: relative; isolation: isolate; }
.outline-gold::before, .outline-white::before, .outline-green::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.outline-gold::before { background: linear-gradient(135deg, rgba(255,173,5,1) 0%, rgba(255,173,5,0.15) 40%, rgba(255,173,5,0.05) 60%, rgba(255,173,5,1) 100%); }
.outline-white::before { background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.03) 60%, rgba(255,255,255,1) 100%); }
.outline-green::before { background: linear-gradient(135deg, rgba(75,202,90,1) 0%, rgba(75,202,90,0.15) 40%, rgba(75,202,90,0.05) 60%, rgba(75,202,90,1) 100%); }

.bg-gold { background: radial-gradient(ellipse at 0% 0%, rgba(255,173,5,0.20) 0%, rgba(255,173,5,0.08) 50%, rgba(255,173,5,0.03) 100%); }
.bg-white { background: radial-gradient(ellipse at 0% 0%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.02) 100%); }
.bg-green { background: radial-gradient(ellipse at 0% 0%, rgba(75,202,90,0.20) 0%, rgba(75,202,90,0.08) 50%, rgba(75,202,90,0.03) 100%); }

/* ===== Headings ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(34px, 6vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4.5vw, 42px); letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-mute);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 720px;
  margin: 12px auto 0;
}
.section-head {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .section-head { margin-bottom: 48px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
}
.btn-lg { padding: 18px 32px; font-size: 18px; }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(255,173,5,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,173,5,0.4); }
.btn-gold:active { transform: translateY(0); }
.btn-dark {
  background: var(--bg);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

/* ===== HEADER ===== */
.site-header { padding: 16px 0; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(20px); background: rgba(1,11,19,0.85); border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  isolation: isolate;
  transition: transform .15s ease;
}
.pill:hover { transform: translateY(-1px); }

.pill-logo {
  width: 180px; height: 56px;
  padding: 0 16px;
  justify-content: center;
}
.logo-svg { width: 140px; height: auto; display: block; }

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

.pill-contact {
  height: 48px;
  padding: 0 18px 0 12px;
  gap: 10px;
}
.pill-icon {
  width: 48px; height: 48px;
  padding: 0;
  justify-content: center;
}
.pill-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.pill-ico svg { display: block; }
.pill-label {
  font-size: 14px;
  color: var(--text);
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pill-logo { width: 140px; height: 48px; }
  .logo-svg { width: 110px; }
  .pill-contact .pill-label { display: none; }
  .pill-contact { width: 48px; padding: 0; justify-content: center; }
}

/* ===== HERO ===== */
.hero { padding: 32px 0 48px; position: relative; }
@media (min-width: 768px) { .hero { padding: 56px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 100px; } }

.hero-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; } }

.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  border: 1px solid rgba(255,173,5,0.3);
}

.hero h1 { margin-bottom: 20px; }
.hero-sub { font-size: clamp(16px, 2.2vw, 19px); color: var(--text-mute); margin-bottom: 28px; max-width: 560px; }

.hero-features { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.hero-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text); }
.hero-features .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.hero-features b { font-weight: 700; }

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta-hint { color: var(--text-mute); font-size: 14px; }

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute;
  right: 16px; bottom: 16px;
  padding: 14px 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius-md);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.tag-num { font-size: clamp(20px, 3vw, 26px); font-weight: 800; }
.tag-cap { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; opacity: 0.8; }

@media (max-width: 1023px) {
  .hero-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
}

/* ===== BADGES ===== */
.badges { padding: 32px 0; }
.badges-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .badges-row { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.badge-card {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  isolation: isolate;
}
.badge-num {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  position: relative; z-index: 2;
}
.badge-lbl { font-size: 13px; color: var(--text-mute); position: relative; z-index: 2; }

/* ===== QUIZ ===== */
.quiz-section { padding: 56px 0 80px; }
@media (min-width: 768px) { .quiz-section { padding: 80px 0 100px; } }
.quiz-head { text-align: center; margin-bottom: 32px; }
.quiz-head h2 { margin: 8px 0 12px; }

.quiz-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .quiz-card { padding: 40px; } }

.quiz-progress { margin-bottom: 28px; }
.quiz-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 20%;
  border-radius: 3px;
  transition: width .35s ease;
}
.quiz-progress-text {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: right;
}

.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-q {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
}
.quiz-q-sub { margin-top: 28px; }
.quiz-help { color: var(--text-mute); font-size: 14px; margin-bottom: 16px; }

.quiz-input {
  display: block;
  width: 100%;
  min-width: 0;          /* без этого date-инпут на мобиле берёт интринзик min-width:auto и вылезает за карточку */
  max-width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 17px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.quiz-input::placeholder { color: var(--text-mute); }
.quiz-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
/* date-инпут: гасим нативную интринзик-ширину WebKit/мобильных браузеров,
   чтобы поле подчинялось width:100% контейнера и не торчало за край карточки. */
.quiz-input[type="date"] {
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
/* Иконка календаря — кликабельная, чуть крупнее, подсвечивается золотом. */
.quiz-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
  width: 20px;
  height: 20px;
  transition: opacity .15s ease, filter .15s ease;
}
.quiz-input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 1; }
/* На мобиле поле во всю ширину (так выглядит хорошо), на десктопе — компактнее,
   чтобы дата не болталась в пустом широком поле. */
@media (min-width: 768px) {
  .quiz-input[type="date"] { max-width: 340px; }
}

/* Counter (гости) */
.quiz-counter {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 280px;
  margin: 8px auto 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.counter-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s ease;
  flex-shrink: 0;
}
.counter-btn:hover { transform: scale(1.06); }
.counter-btn:active { transform: scale(0.94); }
.counter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}
.counter-input::-webkit-outer-spin-button,
.counter-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.quiz-presets {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 8px;
}
.preset-chip {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.preset-chip:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }

/* Бюджет */
.quiz-budget { text-align: center; padding: 8px 0; }
.budget-display {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.budget-val { font-size: clamp(40px, 6vw, 56px); font-weight: 800; color: var(--gold); line-height: 1; }
.budget-cur { font-size: 16px; color: var(--text-mute); }

.quiz-range, .price-range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  outline: none;
  margin: 12px 0;
}
.quiz-range::-webkit-slider-thumb, .price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--bg);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255,173,5,0.4);
  transition: transform .12s ease;
}
.quiz-range::-webkit-slider-thumb:hover, .price-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
.quiz-range::-moz-range-thumb, .price-range::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  border: 4px solid var(--bg);
  cursor: pointer;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 8px;
}

/* Preferences (чекбоксы) */
.quiz-prefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
@media (min-width: 480px) { .quiz-prefs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .quiz-prefs { grid-template-columns: repeat(4, 1fr); } }

.pref-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
  position: relative;
}
.pref-card input { position: absolute; opacity: 0; pointer-events: none; }
.pref-card:hover { border-color: rgba(255,173,5,0.5); background: rgba(255,173,5,0.05); }
.pref-card:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 3px rgba(255,173,5,0.15); }
.pref-ico { font-size: 32px; line-height: 1; }
.pref-txt { font-size: 13px; font-weight: 600; color: var(--text); }
.pref-card:has(input:checked) .pref-txt { color: var(--gold); }

/* Заходы (radio) */
.quiz-courses {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}
@media (min-width: 600px) { .quiz-courses { grid-template-columns: repeat(3, 1fr); } }

.course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
  position: relative;
}
.course-card input { position: absolute; opacity: 0; pointer-events: none; }
.course-card:hover { border-color: rgba(255,173,5,0.5); background: rgba(255,173,5,0.05); }
.course-card:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 3px rgba(255,173,5,0.15); }
.course-num { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.course-cap { font-size: 15px; font-weight: 700; color: var(--text); }
.course-desc { font-size: 12px; color: var(--text-mute); line-height: 1.3; }

/* Quiz navigation */
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.quiz-nav > span:empty { flex: 1; }

/* Loader */
.quiz-loader {
  position: absolute;
  inset: 0;
  background: rgba(1,11,19,0.95);
  backdrop-filter: blur(8px);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 5;
}
/* `hidden` атрибут должен побеждать display:flex выше */
.quiz-loader[hidden] { display: none; }
.loader-spin {
  width: 48px; height: 48px;
  border: 4px solid rgba(255,173,5,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.quiz-error {
  margin: 20px 0;
  padding: 14px 18px;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: var(--radius-sm);
  color: #ffb4b4;
  font-size: 14px;
}

/* How-it-works steps под квизом */
.how-steps {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; } }
.how-steps li {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 22px; font-weight: 800;
  margin-bottom: 12px;
}
.how-title { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.how-text { display: block; font-size: 14px; color: var(--text-mute); }

/* ===== PRICE SECTION ===== */
.price-section { padding: 56px 0; }
@media (min-width: 768px) { .price-section { padding: 80px 0; } }

.price-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  isolation: isolate;
}
@media (min-width: 768px) { .price-card { padding: 48px 40px; } }

.price-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
@media (min-width: 600px) { .price-row { grid-template-columns: 1fr 1fr; } }

.price-num { font-size: clamp(36px, 6vw, 56px); font-weight: 800; color: var(--gold); line-height: 1; }
.price-num span { color: var(--gold); }
.price-cap { font-size: 15px; color: var(--text-mute); margin-top: 4px; }
.price-total { font-size: clamp(28px, 4.5vw, 40px); font-weight: 700; color: var(--text); line-height: 1; }
.price-right { text-align: right; }
@media (max-width: 599px) { .price-right { text-align: left; } }

.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  position: relative; z-index: 2;
}

/* ===== OCCASIONS ===== */
.occasions { padding: 56px 0; }
@media (min-width: 768px) { .occasions { padding: 80px 0; } }
.occ-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .occ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .occ-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.occ-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.occ-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,173,5,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.occ-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-2);
}
.occ-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.occ-card:hover .occ-photo img { transform: scale(1.05); }
.occ-title { padding: 20px 20px 6px; font-size: 20px; }
.occ-text { padding: 0 20px 24px; font-size: 14px; color: var(--text-mute); line-height: 1.5; }

/* ===== INCLUDED ===== */
.included { padding: 56px 0; }
@media (min-width: 768px) { .included { padding: 80px 0; } }
.included-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) { .included-card { grid-template-columns: 1fr 1.3fr; padding: 56px 48px; gap: 56px; align-items: center; } }
.included-text { position: relative; z-index: 2; }
.included-text h2 { margin: 8px 0 12px; }
.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative; z-index: 2;
}
@media (min-width: 480px) { .included-list { grid-template-columns: 1fr 1fr; gap: 14px; } }
.included-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text);
}
.inc-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== GALLERY ===== */
.gallery { padding: 56px 0; }
@media (min-width: 768px) { .gallery { padding: 80px 0; } }
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 160px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 14px; } }
@media (min-width: 1024px) { .gallery-grid { grid-auto-rows: 240px; gap: 16px; } }
.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-2);
}
.gal-tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-item:hover img { transform: scale(1.05); }

/* ===== FAQ ===== */
.faq { padding: 56px 0; }
@media (min-width: 768px) { .faq { padding: 80px 0; } }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(255,173,5,0.3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-a {
  padding: 0 24px 20px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews { padding: 56px 0; }
@media (min-width: 768px) { .reviews { padding: 80px 0; } }
.rev-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .rev-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.rev-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  isolation: isolate;
}
.rev-stars { color: var(--gold); font-size: 18px; letter-spacing: 0.1em; margin-bottom: 14px; position: relative; z-index: 2; }
.rev-text { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 16px; position: relative; z-index: 2; }
.rev-author { font-style: normal; font-weight: 600; color: var(--text-mute); font-size: 14px; position: relative; z-index: 2; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 48px 0 80px; }
@media (min-width: 768px) { .final-cta { padding: 64px 0 100px; } }
.final-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  isolation: isolate;
}
@media (min-width: 768px) { .final-card { padding: 64px 40px; } }
.final-card h2 { margin-bottom: 12px; position: relative; z-index: 2; }
.final-card p { color: var(--text-mute); font-size: 17px; margin-bottom: 28px; position: relative; z-index: 2; }
.final-card .btn { position: relative; z-index: 2; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-2); padding: 48px 0 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.footer-brand { font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 8px; }
.footer-text { color: var(--text-mute); font-size: 14px; line-height: 1.6; }
.footer-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-link { display: block; color: var(--text-mute); font-size: 14px; padding: 4px 0; transition: color .15s ease; }
.footer-link:hover { color: var(--gold); }
.footer-copy { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--text-mute); font-size: 13px; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,11,19,0.85); backdrop-filter: blur(8px); animation: fadeIn .2s ease; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  isolation: isolate;
  animation: modalIn .25s ease;
}
@media (min-width: 480px) { .modal-card { padding: 40px 32px; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-x {
  position: absolute;
  right: 16px; top: 12px;
  width: 36px; height: 36px;
  background: transparent;
  color: var(--text-mute);
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}
.modal-x:hover { color: var(--text); }
.modal-card h2 { margin-bottom: 12px; position: relative; z-index: 2; }
.modal-text { color: var(--text-mute); font-size: 15px; margin-bottom: 20px; position: relative; z-index: 2; }
.modal-card .quiz-input { margin-bottom: 12px; position: relative; z-index: 2; }
.modal-card .btn { width: 100%; margin-top: 8px; position: relative; z-index: 2; }
.modal-or {
  text-align: center;
  margin: 20px 0 16px;
  color: var(--text-mute);
  font-size: 13px;
  position: relative; z-index: 2;
}
.modal-msgs { display: flex; gap: 8px; position: relative; z-index: 2; }
.msg-btn {
  flex: 1;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s ease;
}
.msg-btn:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }

/* ===== Респонсив-уточнения ===== */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .quiz-nav { flex-direction: column-reverse; }
  .quiz-nav .btn { width: 100%; }
  .pill-icon { width: 40px; height: 40px; }
  .pill-icon svg { width: 18px; height: 18px; }
}

/* Снижаем motion для пользователей с настройкой */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ===== Согласие на обработку ПДн (приписка под кнопками) ===== */
.form-consent {
  margin: 12px 2px 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-mute);
  text-align: center;
}
.form-consent a { color: var(--text-mute); text-decoration: underline; }
.form-consent a:hover { color: var(--gold); }

/* ===== Cookie-баннер (152-ФЗ) ===== */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 11000;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(11, 22, 35, 0.97);
  border: 1px solid rgba(255, 173, 5, 0.25);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.cookie-bar[hidden] { display: none; }
.cookie-text { flex: 1 1 320px; margin: 0; font-size: 13px; line-height: 1.5; color: var(--text); }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 22px; font-size: 14px; }
@media (max-width: 600px) {
  .cookie-bar { gap: 12px; padding: 14px 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ============================================================
   КОНСТРУКТОР КАНАПЕ — стили страницы /konstruktor
   (база выше скопирована из /bbq/style.css, ниже — своё)
   ============================================================ */

/* ── Hero без фото-колонки ── */
.hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-inner .hero-features {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px; margin-top: 20px; list-style: none;
}
.hero-inner .hero-features li { display: flex; align-items: center; gap: 8px; }

/* ── Карточка гостей ── */
.guests-section { padding: 8px 0 20px; }
.guests-card {
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
}
.guests-title { font-size: clamp(20px, 3vw, 26px); }
.guests-sub { color: var(--text-mute); font-size: 14px; max-width: 560px; margin-top: 6px; }
.guests-counter { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) {
  .guests-card { flex-direction: row; justify-content: space-between; text-align: left; padding: 24px 32px; }
  .guests-sub { margin-top: 8px; }
}

/* На конструкторе липкая только навигация категорий — шапку отпускаем,
   иначе чипы прячутся под неё. */
.site-header { position: static; }

/* ── Липкая навигация категорий ── */
.cat-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(1,11,19,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 0;
}
.cat-nav-scroll {
  display: flex; gap: 8px; overflow-x: auto; padding: 0 16px;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.cat-nav-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-mute);
  font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.cat-chip:hover { color: var(--text); }
.cat-chip.is-active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}
.cat-chip .chip-count {
  display: inline-block; margin-left: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--bg);
  background: var(--gold);
  border-radius: 10px; padding: 0 7px;
  min-width: 18px; text-align: center;
}
@media (min-width: 1024px) { .cat-nav-scroll { padding: 0 40px; justify-content: center; flex-wrap: wrap; } }

/* ── Каталог ── */
.catalog { padding: 24px 0 140px; }
.catalog-loader { text-align: center; padding: 60px 0; color: var(--text-mute); }
.cat-section { margin-bottom: 40px; scroll-margin-top: 76px; }
.cat-section-title {
  font-size: clamp(22px, 3.5vw, 30px);
  margin-bottom: 6px;
}
.cat-section-note { color: var(--text-mute); font-size: 13px; margin-bottom: 16px; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px)  { .items-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .items-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.item-card {
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .15s;
}
.item-card:hover { border-color: rgba(255,173,5,0.4); }
.item-card.in-cart { border-color: var(--gold); background: rgba(255,173,5,0.06); }

.item-photo {
  /* Фото в каталоге 500×500 — показываем квадрат 1:1 без обрезки */
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.item-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.item-card:hover .item-photo img { transform: scale(1.04); }
.item-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(1,11,19,0.75);
  color: var(--text);
  font-size: 12px; font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  backdrop-filter: blur(4px);
}
.item-qty-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  display: none;
}
.item-card.in-cart .item-qty-badge { display: block; }

.item-body {
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.item-name {
  font-size: 14px; font-weight: 600; line-height: 1.3;
  flex: 1;
}
.item-meta { display: flex; align-items: baseline; gap: 8px; }
.item-price { font-size: 16px; font-weight: 800; color: var(--gold); }
.item-per { font-size: 12px; color: var(--text-mute); }

.item-add-btn {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,173,5,0.5);
  background: transparent;
  color: var(--gold);
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.item-add-btn:hover { background: var(--gold); color: var(--bg); }

.item-stepper {
  display: none;
  align-items: center; justify-content: space-between;
  gap: 8px;
}
.item-card.in-cart .item-add-btn { display: none; }
.item-card.in-cart .item-stepper { display: flex; }
.step-btn {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,173,5,0.5);
  background: transparent;
  color: var(--gold);
  font-size: 20px; font-weight: 700; line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.step-btn:hover { background: var(--gold); color: var(--bg); }
.step-qty { font-size: 16px; font-weight: 800; text-align: center; flex: 1; }
.step-qty small { display: block; font-size: 11px; font-weight: 400; color: var(--text-mute); }

/* ── Нижняя панель ── */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(2,22,39,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,173,5,0.25);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
}
.cart-bar-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cart-stats { display: flex; gap: 18px; }
.cart-stat { display: flex; flex-direction: column; }
.cart-stat-val { font-size: 17px; font-weight: 800; color: var(--text); }
.cart-stat-val.ok { color: var(--green); }
.cart-stat-val.warn { color: var(--gold); }
.cart-stat-lbl { font-size: 11px; color: var(--text-mute); }
.cart-submit { flex-shrink: 0; }
.cart-submit:disabled {
  background: rgba(255,255,255,0.12);
  color: var(--text-mute);
  box-shadow: none; cursor: not-allowed; transform: none;
}
.cart-hint {
  font-size: 13px; line-height: 1.45;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(255,173,5,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 10px;
}
.cart-hint.ok { color: var(--green); background: var(--green-soft); border-color: rgba(75,202,90,0.3); }
@media (max-width: 700px) {
  /* Две строки: цифры сверху, кнопки снизу — иначе не влезает */
  .cart-bar-row { flex-wrap: wrap; gap: 10px 8px; }
  .cart-stats { width: 100%; justify-content: space-between; gap: 10px; }
  .cart-stat-val { font-size: 15px; white-space: nowrap; }
  .cart-stat-lbl { font-size: 10px; }
  .cart-submit { flex: 1; padding: 12px 14px; font-size: 15px; }
  .cart-hint { font-size: 12px; padding: 7px 10px; margin-bottom: 8px; }
}

/* ── Кнопка «что выбрано» + окно корзины ── */
.cart-items-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,173,5,0.55);
  background: var(--gold-soft);
  color: var(--gold);
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  flex-shrink: 0;
}
.cart-items-btn:hover { border-color: var(--gold); background: rgba(255,173,5,0.25); transform: translateY(-2px); }
.cart-items-btn svg { flex-shrink: 0; }
.cart-items-count {
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius-pill);
  min-width: 24px; height: 24px; line-height: 24px;
  padding: 0 7px;
  font-size: 14px; font-weight: 800;
  text-align: center;
}
@media (max-width: 700px) {
  .cart-items-btn { padding: 11px 13px; gap: 7px; }
  .cart-items-label { display: none; }
  .cart-items-count { min-width: 21px; height: 21px; line-height: 21px; font-size: 13px; }
}

.cart-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.cart-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.cart-row-name { flex: 1; font-size: 14px; line-height: 1.35; min-width: 0; }
.cart-row-name small { display: block; color: var(--text-mute); font-size: 12px; margin-top: 2px; }
.cart-row-step { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.cart-row-step .step-btn { width: 32px; height: 32px; flex: 0 0 32px; font-size: 16px; }
.cart-row-qty { min-width: 40px; text-align: center; font-weight: 800; font-size: 14px; }
.cart-row-x {
  background: none; border: none;
  color: var(--text-mute);
  font-size: 16px; line-height: 1;
  cursor: pointer; padding: 6px;
  flex-shrink: 0;
}
.cart-row-x:hover { color: #f87171; }
.cart-total-row {
  display: flex; justify-content: space-between;
  font-weight: 800; font-size: 17px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-actions { display: flex; gap: 10px; margin-top: 16px; }
.cart-actions .btn { flex: 1; padding: 14px 10px; font-size: 15px; white-space: normal; }

/* ── Чекаут ── */
/* Форма выше экрана на ноутбуках → карточка модалки скроллится сама.
   Glass-контур (::before) при скролле уезжает вместе с контентом и рисует
   «вторую рамку» посреди окна — глушим его, границу даём обычным border. */
.modal-card {
  max-height: min(92vh, 92dvh);
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.28);
}
.modal-card::before { display: none; }
.field-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-mute);
  margin: 12px 0 6px;
}
.field-opt { font-weight: 400; opacity: .7; }
.field-row { display: flex; gap: 12px; }
.field-half { flex: 1; min-width: 0; }
.co-textarea { resize: vertical; min-height: 56px; }
.checkout-summary {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 14px 0 4px;
  font-size: 14px;
}
.checkout-summary b { color: var(--gold); }
.delivery-note {
  font-size: 13px; line-height: 1.5;
  color: var(--text-mute);
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 14px;
  margin-top: 16px;
}
.manager-note {
  font-size: 13px; line-height: 1.5;
  color: var(--text-mute);
  padding: 10px 2px 0;
}
.co-submit { width: 100%; margin-top: 16px; }

/* ── Success ── */
.success-card { text-align: center; }
.success-ico {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff; font-size: 34px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.success-hint { font-size: 13px; color: var(--text-mute); margin-top: 10px; }

/* ── Центровка hero-текста (переопределяем базу /bbq) ── */
.hero-inner .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
.hero-inner .hero-eyebrow { display: inline-block; }

/* На мобилке фичи-галочки одним столбиком, галочки в одну линию слева */
@media (max-width: 767px) {
  .hero-inner .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-inner .hero-features li { text-align: left; }
}

/* ── Чекбокс согласия (152-ФЗ) ── */
.consent-block {
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.consent-law { font-size: 12px; font-weight: 700; color: var(--text); }
.consent-care { font-size: 12px; color: var(--text-mute); margin: 2px 0 10px; }
.consent-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; line-height: 1.5; color: var(--text);
  cursor: pointer;
}
.consent-check input {
  flex: 0 0 auto;
  width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-check a { color: var(--gold); text-decoration: underline; }

/* ── Футер по образцу furset.ru ── */
.footer-top {
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-col { max-width: 420px; }
.footer-about { color: var(--text-mute); font-size: 14px; margin: 10px 0 16px; }
.footer-cta { font-size: 15px; }
.footer-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.fcard {
  display: flex; align-items: center; gap: 10px;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--text);
}
.fcard-ico { flex: 0 0 auto; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: var(--text-mute);
}
.footer-socials { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; }
.footer-soc-label { color: var(--text-mute); }
.footer-req { line-height: 1.6; }
.footer-pay { display: block; margin-top: 4px; }
.footer-pay b { color: var(--text); }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-contact-cards { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-req { text-align: right; }
}
