/* ═══════════════════════════════════════════════════
   НИКОЛЬСКИЙ ПАСЕКА — clean & premium (Breitsamer-style)
   Белый фон, воздух, минимализм, сдержанный золотой акцент
   ═══════════════════════════════════════════════════ */

:root {
  --bg:        #FFFFFF;
  --bg-2:      #FAF8F3;   /* тёплый off-white для секций */
  --bg-3:      #F3EFE6;   /* подложка под фото товара */
  --ink:       #1B1A17;   /* почти чёрный */
  --ink-2:     #3C3A34;
  --muted:     #807B70;
  --line:      #E8E4DA;
  --gold:      #BE8C18;   /* сдержанное медовое золото */
  --gold-2:    #A2760F;
  --gold-soft: #F6EED7;
  --white:     #FFFFFF;
  --shadow:    0 1px 3px rgba(27,26,23,0.06);
  --shadow-md: 0 12px 30px rgba(27,26,23,0.09);
  --shadow-lg: 0 24px 50px rgba(27,26,23,0.12);
  --r:         14px;
  --r-sm:      9px;
  --r-pill:    100px;
  --t:         0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; }

/* ─── ЗАГОЛОВКИ СЕКЦИЙ ─── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-tag--light { color: var(--gold); background: none; border: none; padding: 0; }
.section-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; color: var(--ink); }
.section-title--light { color: var(--ink); }
.section-title--left { text-align: left; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; margin: 16px auto 0; font-weight: 400; }
.benefits .section-sub, .reviews .section-sub { color: var(--muted); }

/* ─── КНОПКИ ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  border-radius: var(--r-sm); padding: 13px 26px; transition: all var(--t); white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-2); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }
.btn--line { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ─── СОЦСЕТИ ─── */
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); color: var(--ink); border: 1px solid var(--line); transition: all var(--t);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.social-btn--light { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
.social-btn--light:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ─── COOKIE BAR ─── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 14px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.05); transition: transform 0.35s ease;
}
.cookie-bar.hidden { transform: translateY(100%); }
.cookie-bar__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-bar__inner span { font-size: 14px; color: var(--muted); }
.cookie-bar__inner a { color: var(--gold); text-decoration: underline; }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }
.logo__img { height: 44px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 4px 0; position: relative; transition: color var(--t);
}
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width var(--t); }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__socials { display: flex; gap: 7px; }
.header__phone { display: flex; flex-direction: column; line-height: 1.15; font-size: 15px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.header__phone-label { font-size: 10px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (фоновое видео) ─── */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 120px 0 48px; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(24,15,3,0.55) 0%, rgba(24,15,3,0.32) 38%, rgba(24,15,3,0.72) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero__bg { display: none; }
.hero__visual, .hero__photo, .scene__stamp { display: none; }
.hero__content { max-width: 660px; }
.hero__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: #fff;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 8px 18px; border-radius: var(--r-pill); margin-bottom: 26px;
}
.hero__title { font-size: clamp(40px, 6vw, 74px); font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-bottom: 22px; text-shadow: 0 2px 32px rgba(0,0,0,0.45); }
.hero__title span { color: #FFC65A; }
.hero__sub { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 500px; margin-bottom: 34px; font-weight: 400; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--glass { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn--glass:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ─── ФАКТЫ (стекло поверх видео) ─── */
.facts {
  position: relative; z-index: 2; margin-top: 48px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r); padding: 28px 36px;
}
.facts__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fact { text-align: center; padding: 6px; border-right: 1px solid rgba(255,255,255,0.2); }
.fact:last-child { border-right: none; }
.fact__label { display: block; font-size: 12px; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 500; }
.fact__value { display: block; font-size: 28px; font-weight: 700; color: #fff; }
.facts__note { text-align: center; color: rgba(255,255,255,0.78); font-size: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.16); }

/* ─── RECIPE / СОСТАВ ─── */
.recipe { padding: 100px 0; background: var(--bg); }
.recipe__head { text-align: center; margin-bottom: 56px; }
.recipe__title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; color: var(--ink); }
.recipe__title span { color: var(--gold); }
.recipe__stamp { display: none; }
.recipe__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ingredient { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow var(--t), transform var(--t); }
.ingredient:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ingredient--raised { transform: none; }
.ingredient__photo { height: 220px; overflow: hidden; }
.ingredient__photo img { width: 100%; height: 100%; object-fit: cover; }
.ingredient__body { padding: 26px; }
.ingredient__body h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.ingredient__body p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ─── PRODUCTS ─── */
.products { padding: 100px 0; background: var(--bg-2); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 36px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--t), transform var(--t);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--bg-3); overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 14px; left: 14px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; background: var(--white); color: var(--gold);
  padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--shadow);
}
.product-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.product-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.product-card__price-row { margin-top: auto; margin-bottom: 16px; }
.product-card__price { font-size: 24px; font-weight: 700; color: var(--ink); }
.product-card__unit { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.product-card__delivery { font-size: 11px; color: var(--muted); margin-top: 12px; text-align: center; }

/* Опт */
.bulk { display: flex; align-items: center; gap: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 34px; flex-wrap: wrap; }
.bulk__emoji { font-size: 38px; }
.bulk__text h4 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.bulk__text p { font-size: 14px; color: var(--muted); }
.bulk .btn--line { margin-left: auto; }

/* ─── BENEFITS ─── */
.benefits { padding: 100px 0; background: var(--bg); }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit { text-align: center; padding: 8px; }
.benefit__icon { font-size: 40px; display: block; margin-bottom: 18px; }
.benefit h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.benefit p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: var(--bg-2); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__visual { background: none; padding: 0; text-align: left; }
.about__photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-md); margin-bottom: 20px; }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 13px; font-weight: 500; background: var(--white); color: var(--ink-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: var(--r-pill); }
.about__text .section-title { margin-bottom: 20px; }
.about__text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about__features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature span { font-size: 26px; flex-shrink: 0; }
.about-feature h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.about-feature p { font-size: 14px; color: var(--muted); margin: 0; }

/* ─── ГАЛЕРЕЯ / СЛАЙДЕР ─── */
.gallery { padding: 100px 0; background: var(--bg); }
.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-md); }
.slider__track { display: flex; transition: transform 0.55s cubic-bezier(.4,.0,.2,1); }
.slide { position: relative; min-width: 100%; }
.slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.slide__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 32px 24px;
  background: linear-gradient(to top, rgba(27,26,23,0.8), transparent);
  color: var(--white); font-size: 18px; font-weight: 600;
}
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--ink);
  font-size: 26px; line-height: 1; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all var(--t); z-index: 2;
}
.slider__arrow:hover { background: var(--gold); color: var(--white); }
.slider__arrow--prev { left: 18px; }
.slider__arrow--next { right: 18px; }
.slider__dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.slider__dots button {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line);
  transition: all var(--t); cursor: pointer;
}
.slider__dots button.active { background: var(--gold); width: 26px; border-radius: var(--r-pill); }

/* ─── DELIVERY ─── */
.delivery { padding: 100px 0; background: var(--bg); }
.delivery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.delivery-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; transition: box-shadow var(--t), transform var(--t); }
.delivery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.delivery-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.delivery-logo { font-weight: 700; font-size: 14px; padding: 6px 13px; border-radius: var(--r-sm); color: var(--white); }
.delivery-logo--cdek { background: #1CAC4B; }
.delivery-logo--ya { background: #FC3F1D; font-size: 12px; }
.delivery-logo--dpd { background: #DC0032; }
.delivery-logo--box { background: #E2006A; }
.delivery-logo--pochta { background: #005B99; font-size: 12px; }
.delivery-logo--self { background: var(--gold); }
.delivery-pop { font-size: 11px; font-weight: 600; background: var(--gold-soft); color: var(--gold); padding: 4px 11px; border-radius: var(--r-pill); }
.delivery-card__rows { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.dr { display: flex; justify-content: space-between; font-size: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.dr:last-child { border-bottom: none; padding-bottom: 0; }
.dr span { color: var(--muted); }
.dr b { color: var(--ink); font-weight: 600; }
.delivery-card__note { font-size: 13px; color: var(--muted); line-height: 1.5; }
.delivery__note { display: flex; align-items: center; gap: 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px 26px; }
.delivery__note span { font-size: 22px; }
.delivery__note p { font-size: 14px; color: var(--ink-2); }

/* ─── PAYMENT ─── */
.payment { padding: 100px 0; background: var(--bg-2); }
.payment__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.pay { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; text-align: center; transition: box-shadow var(--t), transform var(--t); }
.pay:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pay__icon { font-size: 36px; display: block; margin-bottom: 14px; }
.pay h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.pay p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.pay__logos { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.paylogo { font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 5px; letter-spacing: 0.5px; color: var(--white); }
.paylogo--mir { background: #0F5FA8; }
.paylogo--visa { background: #1A1F71; }
.paylogo--mc { background: #EB001B; }
.paylogo--sbp { background: #1C6DF0; }
.paylogo--sber { background: #21A038; }
.paylogo--ym { background: #8B00FF; }
.payment__security { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.payment__security span { font-size: 14px; font-weight: 500; color: var(--ink-2); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 20px; }

/* ─── REVIEWS ─── */
.reviews { padding: 100px 0; background: var(--bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.review__stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.review p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 22px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.ava { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.review__author strong { display: block; font-size: 15px; color: var(--ink); }
.review__author em { font-size: 13px; color: var(--muted); font-style: normal; }

/* ─── ORDER ─── */
.order { padding: 100px 0; background: var(--bg-2); }
.order__inner { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.order__info .section-title { margin-bottom: 16px; }
.order__info > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 26px; }
.order__contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.contact-link { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 14px 18px; border-radius: var(--r-sm); transition: all var(--t); }
.contact-link span { font-size: 18px; }
.contact-link:hover { border-color: var(--gold); color: var(--gold); }
.order__guarantee { display: flex; flex-direction: column; gap: 8px; }
.og { font-size: 14px; color: var(--muted); }
.order__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.ff { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px; }
.ff legend { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); padding: 0 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.optional { font-weight: 400; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-width: 0; max-width: 100%;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: 14px; color: var(--ink);
  background: var(--white); transition: border-color var(--t); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.honey-select { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.honey-option { cursor: pointer; }
.honey-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.ho-box { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: 13px; transition: all var(--t); background: var(--white); cursor: pointer; }
.honey-option input:checked + .ho-box { border-color: var(--gold); background: var(--gold-soft); }
.ho-box:hover { border-color: var(--gold); }
.ho-name { font-weight: 500; color: var(--ink); }
.ho-price { font-size: 12px; color: var(--muted); }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.delivery-option { cursor: pointer; }
.delivery-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.do-box { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); transition: all var(--t); cursor: pointer; background: var(--white); }
.delivery-option input:checked + .do-box { border-color: var(--gold); background: var(--gold-soft); }
.do-box:hover { border-color: var(--gold); }
.do-logo { font-weight: 700; font-size: 13px; color: var(--ink); }
.do-logo--cdek { color: #1CAC4B; }
.do-logo--ya { color: #FC3F1D; }
.do-logo--dpd { color: #DC0032; }
.do-logo--box { color: #E2006A; }
.do-logo--pochta { color: #005B99; }
.do-logo--pickup { color: var(--gold); }
.do-desc { font-size: 11px; color: var(--muted); }
.payment-options-form { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.payment-option-form { cursor: pointer; }
.payment-option-form input { position: absolute; opacity: 0; width: 0; height: 0; }
.pof-box { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--ink); transition: all var(--t); cursor: pointer; background: var(--white); }
.payment-option-form input:checked + .pof-box { border-color: var(--gold); background: var(--gold-soft); }
.pof-box:hover { border-color: var(--gold); }
.pof-icon { font-size: 20px; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--muted); line-height: 1.6; }
.consent-label input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.consent-label a { color: var(--gold); text-decoration: underline; }
.form__legal { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.6; }
.form__legal a { color: var(--gold); }

/* ─── FOOTER ─── */
.footer { background: var(--ink); padding: 64px 0 0; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo__img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__col--brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 8px; }
.footer__col h4 { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--t); }
.footer__col li a:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer__legal a:hover { color: var(--gold); }

/* ─── АРЕНДА УЛЬЯ: этапы / тарифы / что входит / FAQ ─── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step__month { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; }
.step h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.tariffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.tariff { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 36px 28px; display: flex; flex-direction: column; transition: box-shadow var(--t), transform var(--t); }
.tariff:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tariff--featured { border-color: var(--gold); box-shadow: var(--shadow-md); position: relative; }
.tariff__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 18px; border-radius: var(--r-pill); white-space: nowrap; }
.tariff__name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 12px; }
.tariff__price { font-size: 34px; font-weight: 800; color: var(--ink); line-height: 1; }
.tariff__price small { font-size: 14px; font-weight: 500; color: var(--muted); }
.tariff__yield { font-size: 14px; color: var(--muted); margin: 8px 0 24px; }
.tariff__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.tariff__list li { font-size: 14px; color: var(--ink-2); padding-left: 26px; position: relative; line-height: 1.4; }
.tariff__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.incl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.incl-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.incl-item span { font-size: 30px; flex-shrink: 0; line-height: 1; }
.incl-item h4 { font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.incl-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--white); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-q::after { content: '+'; font-size: 26px; color: var(--gold); transition: transform var(--t); line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 15px; color: var(--muted); line-height: 1.7; }

.rent-cta { background: var(--ink); border-radius: var(--r); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rent-cta__text h2 { color: #fff; font-size: 30px; margin-bottom: 12px; }
.rent-cta__text p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.7; }
.rent-form { background: var(--white); border-radius: var(--r); padding: 30px; display: flex; flex-direction: column; gap: 16px; }

/* ─── ИКОНКИ (line SVG, единый стиль) ─── */
.icon { display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 100%; height: 100%; display: block; }
.contact-link span.icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.og { display: flex; align-items: center; gap: 9px; }
.og .icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.pof-icon { width: 20px; height: 20px; color: var(--gold); }
.benefit__icon { display: block; width: 40px; height: 40px; margin: 0 auto 18px; color: var(--gold); }
.benefit__icon svg { stroke-width: 1.4; }
.pay__icon { display: block; width: 34px; height: 34px; margin: 0 auto 14px; color: var(--gold); }
.about-feature .icon { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.incl-item .icon { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.delivery__note .icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.bulk__emoji.icon { width: 40px; height: 40px; color: var(--gold); }

/* ─── КОРЗИНА ─── */
.cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; transition: all var(--t); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { background: var(--gold); transform: translateY(-2px); }
.cart-btn__count { position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); }
.cart-btn__count.empty { display: none; }

.cart-overlay { position: fixed; inset: 0; background: rgba(27,26,23,0.5); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 1000; }
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: var(--white); z-index: 1001; transform: translateX(105%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.cart-drawer__head h3 { font-size: 20px; font-weight: 700; }
.cart-close { font-size: 30px; line-height: 1; color: var(--muted); width: 36px; height: 36px; border-radius: 50%; transition: all var(--t); display: flex; align-items: center; justify-content: center; }
.cart-close:hover { background: var(--bg-2); color: var(--ink); }

.cart-view { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-empty { text-align: center; color: var(--muted); padding: 70px 20px; font-size: 15px; }
.cart-empty span { font-size: 52px; display: block; margin-bottom: 16px; }

.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item__name { font-weight: 600; color: var(--ink); font-size: 15px; }
.cart-item__unit { font-size: 12px; color: var(--muted); }
.cart-item__price { font-weight: 700; color: var(--ink); white-space: nowrap; text-align: right; }
.cart-item__controls { display: flex; align-items: center; gap: 12px; grid-column: 1 / -1; margin-top: 4px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.qty button { width: 30px; height: 30px; font-size: 18px; color: var(--ink); background: var(--bg-2); transition: background var(--t); }
.qty button:hover { background: var(--gold-soft); }
.qty span { min-width: 34px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-item__remove { margin-left: auto; font-size: 13px; color: var(--muted); text-decoration: underline; background: none; }
.cart-item__remove:hover { color: #c0392b; }

.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--line); flex-shrink: 0; }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: 16px; }
.cart-total b { font-size: 22px; font-weight: 800; color: var(--ink); }
.cart-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

.cart-checkout { display: none; flex-direction: column; gap: 14px; padding: 20px 24px; overflow-y: auto; flex: 1; }
.cart-drawer.checkout-mode .cart-view { display: none; }
.cart-drawer.checkout-mode .cart-checkout { display: flex; }
.cart-back { align-self: flex-start; font-size: 14px; color: var(--gold); font-weight: 600; background: none; }
.cart-back:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
}

/* ─── TOAST ─── */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--white); padding: 16px 30px; border-radius: var(--r-sm); font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px; opacity: 0; pointer-events: none; transition: all 0.4s ease; z-index: 9998; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast__icon { font-size: 20px; }

/* ─── FADE-IN ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ─── АДАПТИВ ─── */
@media (max-width: 1024px) {
  .products__grid, .delivery__grid, .payment__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .recipe__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .order__inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tariffs { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .incl { grid-template-columns: repeat(2, 1fr); }
  .rent-cta { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}
@media (max-width: 860px) {
  .hero { min-height: 84vh; padding: 100px 0 40px; }
  .hero__content { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 0 auto; max-width: 540px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .nav { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 16px; width: 100%; text-align: center; }
  .header__phone { display: none; }
  .burger { display: flex; }
  .hero__cta { justify-content: center; }
}
@media (max-width: 560px) {
  .products__grid, .delivery__grid, .payment__grid, .benefits__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 80vh; padding: 90px 0 36px; }
  .hero__title { font-size: 34px; line-height: 1.12; }
  .hero__sub { font-size: 16px; }
  .hero__eyebrow { font-size: 12px; }
  .section-title { font-size: 27px; }
  .recipe__title { font-size: 27px; }
  .rent-cta { padding: 26px 20px; }
  .rent-form { padding: 22px 18px; }
  .tariff { padding: 30px 24px; }
  .facts { padding: 22px 20px; }
  .facts__row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fact:nth-child(2) { border-right: none; }
  .fact { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .honey-select, .delivery-options, .form-row { grid-template-columns: 1fr; }
  .steps, .incl { grid-template-columns: 1fr; }
  .order__form { padding: 24px 20px; }
  .bulk { flex-direction: column; text-align: center; }
  .bulk .btn--line { margin-left: 0; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .header__socials { display: none; }
}
