/* =============================================================
   Alvaro Caffé — main.css
   Десктоп-лейаут (≥769px): header, hero, секції, footer.
   Секції додаються в міру перенесення з style.css.
   Мобільні переозначення — у mobile.css.
   ============================================================= */

/* =============================================================
   ПОРЯДОК СЕКЦІЙ — flex на <main> (мобільний порядок інший, див. mobile.css)
   ============================================================= */
.site-main { display: flex; flex-direction: column; }

.site-main > .hero            { order: 1; }
.site-main > .philosophy      { order: 2; }
.site-main > .benefits        { order: 3; }
.site-main > .catalog-preview { order: 4; }
.site-main > .brand-story     { order: 5; }
.site-main > .journey         { order: 6; }
.site-main > .distributors    { order: 7; }
.site-main > .faq-section     { order: 8; }
.site-main > .contact-section { order: 9; }

/* =============================================================
   SITE HEADER — плаваюча кремова пігулка над hero (Figma 84:524)
   ============================================================= */
.site-header {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 50;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 20px;            /* висота ≈ 80px */
  background-color: var(--c-beige);
  border-radius: var(--r-lg);    /* 15px */
  box-shadow: 0 4px 25px rgba(130, 118, 102, .25);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
  overflow: hidden;
}

/* Лого + навігація */
.site-header__left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.site-logo { display: block; flex-shrink: 0; }
.site-logo svg,
.site-logo img { width: 70px; height: 50px; display: block; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a,
.site-nav .menu-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--c-ink);
  white-space: nowrap;
  transition: color .2s ease;
}
.site-nav a:hover,
.site-nav .current-menu-item > a { color: var(--c-dark); }

/* пункт з випадайкою */
.menu-has-children { display: inline-flex; align-items: center; gap: 10px; }
.menu-caret { width: 11px; height: 6px; flex-shrink: 0; color: var(--c-ink); }

/* Права частина: пошук + іконки */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 35px;
}

/* Пошук-пігулка */
.header-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 350px;
  padding: 5px 5px 5px 15px;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  background: transparent;
}
.header-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--c-ink);
}
.header-search__input::placeholder { color: var(--c-placeholder); }
.header-search__input:focus { outline: none; }
.header-search__btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--c-ink);
}
.header-search__btn svg { width: 20px; height: 20px; }

/* Іконки дій */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  transition: color .2s ease;
}
.header-actions a:hover { color: var(--c-dark); }
.header-actions svg { width: 21px; height: 21px; }

.header-actions .cart-count { position: relative; }
.cart-count__badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--c-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

/* Бургер (моб.) — схований на десктопі */
.burger { display: none; }

/* Контейнер пігулки над мега-меню */
.site-header > .container { position: relative; z-index: 2; }

/* =============================================================
   МАГАЗИН: тригер + МЕГА-МЕНЮ (Figma 122:3539)
   ============================================================= */
.menu-item--shop { position: static; }
.menu-shop { display: inline-flex; align-items: center; gap: 8px; }
.menu-shop__link { font-size: 15px; color: var(--c-ink); transition: color .2s ease; }
.menu-shop__toggle { display: inline-flex; align-items: center; padding: 0; background: none; border: none; cursor: pointer; color: var(--c-ink); }
.menu-caret { display: inline-flex; transition: transform .2s ease; }
.menu-caret svg { display: block; width: 11px; height: 6px; }
.site-header.mega-open .menu-shop__link { color: var(--c-dark); font-weight: 700; }
.site-header.mega-open .menu-item--shop .menu-caret { transform: rotate(180deg); }

.submenu-mobile { display: none; }   /* лише мобайл */

.mega-menu {
  position: absolute;
  top: -15px; left: 0; right: 0;
  z-index: 1;
  background-color: #f8f2ea;
  padding-top: 123px;
  padding-bottom: 45px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.site-header.mega-open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }

.mega-menu__inner { display: flex; align-items: flex-start; gap: 156px; }
.mega-menu__cols { display: flex; gap: 70px; }

.mega-list { display: flex; flex-direction: column; width: 195px; list-style: none; margin: 0; padding: 0; }
.mega-list__item:not(:last-child) { border-bottom: 1px solid rgba(78, 40, 39, .12); }
.mega-list__item a { display: block; padding: 9px 0; letter-spacing: .32px; transition: color .15s ease; }
.mega-list--brands a { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: #939393; }
.mega-list--brands a:hover,
.mega-list--brands a.is-active { color: var(--c-dark); font-weight: 700; }
.mega-list--formats a { font-family: var(--font-body); font-weight: 400; font-size: 15px; color: #161616; letter-spacing: .3px; }
.mega-list--formats a:hover { color: var(--c-dark); }
.mega-list[hidden] { display: none; }   /* перебиває .mega-list{display:flex} для прихованих */

.mega-menu__featured { display: flex; gap: 35px; }
.mega-product { display: flex; flex-direction: column; gap: 25px; width: 274px; }
.mega-product__media {
  position: relative; display: block;
  height: 276px; border-radius: 10px; overflow: hidden;
  background-color: #efe6da;
}
.mega-product__media img { width: 100%; height: 100%; object-fit: cover; }
.mega-product__wish {
  position: absolute; top: 15px; right: 8px;
  width: 35px; height: 35px;
  display: grid; place-items: center;
  border-radius: 50%;
  background-color: rgba(250, 247, 242, .85);
  color: var(--c-dark);
}
.mega-product__wish svg { width: 18px; height: 18px; }
.mega-product__name { font-family: var(--font-body); font-weight: 600; font-size: 20px; letter-spacing: .4px; color: #161616; }

/* =============================================================
   HERO (Figma 84:560) — 1440×744, темне фото + оверлей
   ============================================================= */
.hero {
  position: relative;
  min-height: 744px;
  overflow: hidden;
  color: var(--c-cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 38, .7);   /* #2d2a26 @ 70% */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-top: 172px;
  padding-bottom: 60px;
}

/* Ліва колонка */
.hero__col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}

.hero__eyebrow {
  font-size: 24px;
  color: var(--c-beige);
}

.hero__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-cream);
  max-width: 504px;
}
.hero__lead {
  font-size: 20px;
  line-height: normal;
  color: var(--c-cream);
  max-width: 499px;
}

.hero__actions {
  display: flex;
  gap: 15px;
  width: 499px;
}
.hero__actions .btn { flex: 1 0 0; }

/* Права колонка */
.hero__aside {
  flex-shrink: 0;
  width: 315px;
  font-size: 15px;
  line-height: normal;
  text-align: right;
  color: var(--c-cream);
}

/* Декоративний фриз-силует + хвиля переходу (низ hero) */
.hero__decor {
  position: absolute;
  left: 0;
  bottom: -1px;            /* без шва із секцією нижче */
  width: 100%;
  height: auto;
  z-index: 3;
  display: block;
  line-height: 0;
  pointer-events: none;
}

/* =============================================================
   ФІЛОСОФІЯ БРЕНДУ (Figma 92:252)
   ============================================================= */
.philosophy {
  background-color: var(--c-beige);   /* продовження хвилі hero */
  padding-block: 75px 80px;
}

.philosophy__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 337px;
  padding: 40px 80px 40px 90px;       /* зліва 90 = смужка 10 + відступ 80 */
  background-color: #f8f2ea;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(67, 55, 44, .03);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
}

/* Смужка-акцент (десктоп: вертикальна зліва) */
.philosophy__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background-color: var(--c-dark);
}

.philosophy__head-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 403px;
}

.philosophy__head { display: flex; flex-direction: column; gap: 15px; }
.philosophy__eyebrow { font-size: 24px; color: var(--c-dark); }
.philosophy__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
}

.philosophy__divider {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background-color: rgba(78, 40, 39, .12);
}

.philosophy__since { display: flex; align-items: center; gap: 20px; }
.philosophy__since-icon { flex-shrink: 0; width: 70px; height: 45px; }
.philosophy__since-text { color: var(--c-dark); font-size: 15px; line-height: 1.35; }
.philosophy__since-text strong { display: block; font-weight: 700; font-size: 16px; }

.philosophy__text {
  max-width: 474px;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: var(--c-ink);
}
.philosophy__text p + p { margin-top: 21px; }

/* =============================================================
   ПЕРЕВАГИ (Figma 92:261)
   ============================================================= */
.benefits {
  position: relative;
  overflow: hidden;
  background-color: var(--c-beige);
  padding-block: 50px 80px;
}
.benefits .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Декоративні фігури-водяні знаки по краях (Figma Group 21) */
.benefits__figure {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 412px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.benefits__figure--left  { left: 0; }
.benefits__figure--right { right: 0; }

.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 470px;
  text-align: center;
}
.benefits__eyebrow { font-size: 24px; color: var(--c-dark); }
.benefits__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
}

.benefits__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.benefits__row { display: flex; gap: 35px; align-items: stretch; }
.benefits__row--three .benefit-card { flex: 1 1 0; min-width: 0; }
.benefits__row--two { justify-content: center; }
.benefits__row--two .benefit-card { flex: 0 0 353.33px; }

.benefits__divider {
  align-self: center;
  flex: 0 0 1px;
  width: 1px;
  height: 37px;
  background-color: rgba(78, 40, 39, .15);
}
.benefits__divider--mobile { display: none; }

/* Картка переваги */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: #f8f2ea;
  border-radius: 10px;
}
.benefit-card__icon { display: block; flex-shrink: 0; }
.benefit-card__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: var(--c-dark);
}
.benefit-card__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  color: var(--c-ink);
}

/* =============================================================
   КАТАЛОГ (Figma 92:295) — хедер + сітка карток-категорій 4×2
   ============================================================= */
.catalog-preview {
  padding-block: 80px;
  background-color: var(--c-beige);
}
.catalog-preview .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;                       /* хедер ↔ сітка */
}

.catalog-preview__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.catalog-preview__eyebrow { font-size: 24px; color: var(--c-dark); }
.catalog-preview__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
}
.catalog-preview__lead {
  max-width: 666px;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--c-ink);
}

/* Сітка: два ряди по 4 картки */
.catalog-preview__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;                       /* між рядами */
}
.catalog-row {
  display: flex;
  gap: 10px;                       /* між картками */
  align-items: stretch;            /* картки рівної висоти → фото вирівняні */
}

/* Картка категорії */
.catalog-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog-card__head {
  flex: 1 1 auto;                  /* тягнеться → фото притиснуте донизу й вирівняне в ряду */
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.catalog-card__name {
  font-size: 36px;
  line-height: normal;
  color: var(--c-dark);
}
.catalog-card__desc {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: var(--c-ink);
}

.catalog-card__media {
  position: relative;
  display: block;
  flex: 0 0 357px;
  height: 357px;
  border-radius: 10px;
  overflow: hidden;
}
.catalog-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform .4s ease;
}
.catalog-card__media:hover .catalog-card__img { transform: scale(1.03); }

/* Стовпчик бейджів-форматів (зверху-зліва на фото) */
.catalog-card__badges {
  position: absolute;
  top: 21px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

/* Бейдж: згорнутий кружок 35px; розгортається на ховер, показуючи підпис */
.catalog-badge {
  display: inline-flex;
  align-items: center;
  height: 35px;
  max-width: 35px;
  background-color: var(--c-beige);
  border-radius: 100px;
  box-shadow: 0 4px 4px rgba(116, 98, 76, .25);
  overflow: hidden;
  transition: max-width .35s ease;
}
.catalog-badge:hover { max-width: 240px; }

.catalog-badge__icon {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
}
.catalog-badge__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.catalog-badge__label {
  padding-right: 16px;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1;
  color: var(--c-ink);
}

/* =============================================================
   ПРО БРЕНД (Figma 92:544)
   ============================================================= */
.brand-story { padding-block: 80px; background-color: var(--c-beige);}
.brand-story .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  background-color: var(--c-beige);
}

/* --- Верх: фото + заголовок/текст --- */
.brand-story__top {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.brand-story__media {
  position: relative;
  flex: 0 0 588px;
  height: 603px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}
.brand-story__photo {                /* кроп як у макеті: зум 153.73%, зсув ліворуч */
  position: absolute;
  top: 0;
  left: -19.3%;
  width: 153.73%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.brand-story__wave {
  position: absolute;
  left: 50%;
  top: 86%;
  transform: translateX(-50%);
  width: 172%;                 /* 1009/588 — фриз+хвиля; крем-заливка svg сама закриває низ фото та кути */
  height: auto;
  pointer-events: none;
}

.brand-story__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;   /* заголовок зверху, текст притиснутий донизу (y288→603) */
}

.brand-story__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;            /* заголовок опускається до низу малого фото (mt53) */
  gap: 24px;
}
.brand-story__heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
  margin-left: -126px;   /* заголовок заходить над правим краєм великого фото (Figma x=486 проти колонки x=612) */
}
.brand-story__eyebrow { font-size: 24px; color: var(--c-dark); }
.brand-story__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
  max-width: 351px;
}
.brand-story__photo-sm {
  flex: 0 0 282px;
  width: 282px;
  height: 201px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 15px 25px rgba(89, 57, 40, .18);
}
.brand-story__photo-sm img { width: 100%; height: 100%; object-fit: cover; }

.brand-story__text {
  max-width: 510px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: var(--c-ink);
}

/* --- Низ: «Саме тому…» + переваги + фінал --- */
.brand-story__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.brand-story__why { width: 100%; display: flex; flex-direction: column; gap: 25px; }
.brand-story__why-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: var(--c-ink);
}

.brand-story__features {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.brand-feature {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 149px;
  padding: 25px;
  background-color: #f8f2ea;
  border-radius: 15px;
  text-align: center;
}
.brand-feature__icon { display: grid; place-items: center; width: 25px; height: 25px; }
.brand-feature__icon img { display: block; width: 20px; height: 20px; object-fit: contain; }
.brand-feature__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--c-ink);
}

.brand-story__closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 509px;
}
.brand-story__emblem { display: block; width: 78px; height: 50px; }
.brand-story__closing-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: var(--c-ink);
}

/* =============================================================
   ШЛЯХ КАВИ / JOURNEY (Figma 93:644) — контент 1080, вужче за 1200
   ============================================================= */
.journey {
  position: relative;
  overflow: hidden;
  /* верхній відступ пропорційний ширині (фриз масштабується від vw), щоб контент завжди був ПІД хвилею */
  /* низ ≥119px: картка-цитата виходить на ~119px нижче фото, а overflow:hidden (для хвилі) інакше зрізає її */
  padding-block: clamp(140px, 13vw, 250px) 130px;
  background-color: #f8f2ea;            /* світліша зона (Figma 92:635) */
}
/* фриз-хвиля з чашок зверху, full-bleed (Figma 92:635) */
.journey__wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1440px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.journey__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.journey__col { flex: 0 0 489px; display: flex; flex-direction: column; gap: 50px; }
.journey__header { display: flex; flex-direction: column; gap: 15px; }
.journey__eyebrow { font-size: 24px; color: var(--c-dark); }
.journey__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
}

/* нумерований список кроків */
.journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.journey-step {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(45, 42, 38, .15);
}
.journey-step__label {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: var(--c-muted);
  transition: color .2s ease;
}
.journey-step__label:hover { color: var(--c-dark); }
.journey-step.is-active .journey-step__label { font-weight: 500; color: var(--c-dark); }
.journey-step__arrow { display: none; flex-shrink: 0; width: 21px; color: var(--c-dark); }
.journey-step.is-active .journey-step__arrow { display: block; }

/* права частина: фото + картка-цитата */
.journey__aside { position: relative; flex: 0 0 510px; }
.journey__media {
  margin: 0;
  position: relative;
  width: 510px;
  height: 405px;
  border-radius: 10px;
  overflow: hidden;
}
.journey__media img {                /* кроп як у макеті */
  position: absolute;
  top: 0;
  left: -19.09%;
  width: 119.15%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.journey__quote {
  position: absolute;
  left: 96px;
  top: 299px;
  width: 318px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 35px;
  background-color: var(--c-beige);
  border-radius: 10px;
}
.journey__quote-mark { display: block; width: 40px; height: 25px; }
.journey__quote-text {
  margin: 0;
  width: 248px;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: var(--c-ink);
}

/* =============================================================
   ДИСТРИБ'ЮТОРАМ (Figma 93:646)
   ============================================================= */
.distributors {
  padding-block: 80px;
  background-color: #f8f2ea;            /* продовження світлої зони (Figma 92:635) */
}
.distributors__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 469px;
  padding: 60px;
  background-color: var(--c-beige);     /* #efe6da */
  border-radius: 10px;
}
.distributors__content {
  position: relative;
  z-index: 1;
  max-width: 475px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
}
.distributors__text { display: flex; flex-direction: column; gap: 25px; }
.distributors__heading { display: flex; flex-direction: column; gap: 15px; }
.distributors__eyebrow { font-size: 24px; color: var(--c-dark); }
.distributors__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 36px;
  line-height: normal;
  color: #161616;
}
.distributors__lead {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #161616;
}
.distributors__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 8px 25px;
  background-color: var(--c-dark);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  box-shadow: 5px 8px 7px rgba(89, 57, 40, .18);
  transition: background-color .2s ease, transform .2s ease;
}
.distributors__btn:hover { background-color: #3e1f1e; transform: translateY(-1px); }
.distributors__art {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 100px;
  width: 568px;
  max-width: 50%;
  height: auto;
  pointer-events: none;
}

/* =============================================================
   FAQ / ПИТАННЯ-ВІДПОВІДЬ (Figma 94:701) — контент 764, акордеон
   ============================================================= */
.faq-section {
  padding-block: 80px;
  background-color: #f8f2ea;             /* продовження світлої зони */
}
/* FAQ із фриз-хвилею зверху (сторінка Дистриб'ютори): перехід #f8f2ea (Переваги) → #efe6da (FAQ) */
.faq-section--wave {
  position: relative;
  overflow: hidden;
  padding-top: clamp(140px, 13vw, 240px);
  background-color: var(--c-beige);      /* #efe6da */
}
.faq-section--wave::before {             /* смуга #f8f2ea зверху = колір «Переваг», щоб #efe6da-фриз проступив */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7vw;
  background-color: #f8f2ea;
  z-index: 0;
}
.faq-section__wave {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1440px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.faq-section--wave .container { position: relative; z-index: 2; }
.faq-section__inner {
  max-width: 764px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.faq-section__header {
  align-self: center;
  max-width: 416px;                      /* заголовок переноситься у 2 рядки, як у макеті */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.faq-section__eyebrow { font-size: 24px; color: var(--c-dark); }
.faq-section__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-ink);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background-color: var(--c-beige);      /* #efe6da — згорнутий */
  border-radius: 10px;
  overflow: hidden;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.faq-item.is-open {
  background-color: #fff9f2;
  box-shadow: 5px 7px 8px rgba(89, 57, 40, .05);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-item__q-text {
  font-family: var(--font-body);
  font-weight: 500;                      /* Medium — згорнутий */
  font-size: 16px;
  line-height: normal;
  color: #988079;
  transition: color .2s ease;
}
.faq-item.is-open .faq-item__q-text { font-weight: 700; color: var(--c-dark); }

.faq-item__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #988079;
  transition: transform .3s ease, color .2s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); color: var(--c-dark); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer p {
  margin: 0;
  padding: 0 20px 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--c-ink);
}

/* =============================================================
   КОНТАКТИ — ТЕМНА секція з формою (Figma 103:1126)
   ============================================================= */
.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 12.5vw, 230px) 140px;  /* верх — під хвилю-фриз; низ — зазор форма→футер ≈181px (Figma) */
  background-color: var(--c-dark);                    /* #4e2827 */
  color: var(--c-beige);
}
/* світла смуга під прозорою верхівкою хвилі — щоб темні чашки проступили (як у макеті) */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8.5vw;
  background-color: #f8f2ea;                          /* = фон FAQ зверху */
  z-index: 0;
  pointer-events: none;
}
/* на сторінці Дистриб'ютори FAQ = #efe6da, тож смуга-під-хвилею контактів теж #efe6da (без «сходинки») */
.page-distributors ~ .contact-section::before { background-color: var(--c-beige); }
.contact-section__wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: auto;
  z-index: 1;                                         /* над світлою смугою */
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }

.contact-section__inner { display: flex; align-items: flex-start; gap: 172px; }

/* --- ліва інфо --- */
.contact-section__info { flex: 0 0 416px; display: flex; flex-direction: column; gap: 50px; }
.contact-section__text { display: flex; flex-direction: column; gap: 25px; }
.contact-section__head { display: flex; flex-direction: column; gap: 15px; }
.contact-section__eyebrow { font-size: 24px; color: var(--c-beige); }
.contact-section__title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 45px;
  line-height: normal;
  color: var(--c-beige);
}
.contact-section__lead {
  max-width: 377px;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #bcb0ac;
}
.contact-section__items { display: flex; flex-direction: column; gap: 10px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--c-beige);
  transition: color .2s ease;
}
a.contact-item:hover { color: #fff; }
.contact-item__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #664442;
  color: var(--c-beige);
}
.contact-item__icon svg { width: 15px; height: 15px; }

/* --- форма --- */
.contact-section__form { flex: 0 0 612px; display: flex; flex-direction: column; gap: 35px; }
.contact-form__fields { display: flex; flex-direction: column; gap: 20px; }
.contact-form__row { display: flex; gap: 35px; }
.contact-form__row > .contact-field { flex: 1 1 0; min-width: 0; }

.contact-field { display: flex; flex-direction: column; gap: 10px; }
.contact-field__label { font-family: var(--font-body); font-weight: 400; font-size: 16px; color: var(--c-beige); }
.contact-field__control {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  background-color: transparent;
  border: 0.5px solid #bcb0ac;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-beige);
  transition: border-color .2s ease;
}
.contact-field__control::placeholder { color: #bcb0ac; }
.contact-field__control:focus { outline: none; border-color: var(--c-beige); }
.contact-field__control--area { height: 125px; padding: 15px; resize: vertical; line-height: 20px; }

.contact-form__business { display: flex; align-items: center; gap: 35px; }
.contact-form__business .contact-field__control { flex: 0 1 276.5px; }

/* select із кастомним шевроном */
.contact-select { position: relative; }
.contact-select select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.contact-select select:has(option[value=""]:checked) { color: #bcb0ac; }
.contact-select option { color: #2d2a26; }
.contact-select__caret {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #bcb0ac;
  pointer-events: none;
}

/* кастомні чекбокси */
.contact-checkbox, .contact-consent { display: flex; gap: 10px; cursor: pointer; color: #bcb0ac; }
.contact-checkbox { align-items: center; font-size: 15px; white-space: nowrap; }
.contact-checkbox input, .contact-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-checkbox__box, .contact-consent__box {
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color .15s ease, border-color .15s ease;
}
.contact-checkbox__box { width: 15px; height: 15px; border: 1px solid #bcb0ac; border-radius: 2px; }
.contact-consent__box { width: 18px; height: 18px; margin-top: 1px; border: 1px solid #9f9f9f; border-radius: 4px; }
.contact-checkbox input:checked + .contact-checkbox__box,
.contact-consent input:checked + .contact-consent__box {
  background-color: var(--c-beige);
  border-color: var(--c-beige);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%234e2827' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
}

/* нижній рядок: згода + кнопка */
.contact-form__bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.contact-consent { align-items: flex-start; max-width: 440px; }
.contact-consent__text { font-size: 14px; line-height: 1.4; letter-spacing: .02em; color: #bbb; }
.contact-consent__text a { color: #bbb; text-decoration: underline; }
.contact-form__submit {
  flex-shrink: 0;
  height: 45px;
  padding: 8px 25px;
  background-color: var(--c-beige);
  color: var(--c-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.contact-form__submit:hover { background-color: #fff; transform: translateY(-1px); }
.contact-form__submit:disabled { opacity: .6; cursor: default; transform: none; }

.contact-form__message:empty { display: none; }
.contact-form__message { margin-top: 4px; padding: 10px 14px; border-radius: 6px; font-size: 14px; }

/* форма у модалці — той самий компонент полів (темний контекст модалки) */
.modal__form { display: flex; flex-direction: column; gap: 28px; }
.modal__form .contact-form__bottom { flex-direction: column; align-items: stretch; gap: 18px; }
.modal__form .contact-consent { max-width: none; }
.modal__form .contact-form__submit { width: 100%; }

/* --- Світлий варіант форми (сторінка Контакти на банері) --- */
.contact-section--light { background-color: var(--c-beige); color: var(--c-ink); padding-block: 90px 140px; }  /* низ ≥ хвиля футера (~89px), щоб форма не налазила на хвилю */
.contact-section--light::before { content: none; }   /* прибрати світлу смугу-під-хвилю (потрібна лише темному варіанту) */
.contact-section--light .contact-section__eyebrow { color: var(--c-brown); }
.contact-section--light .contact-section__title { color: var(--c-dark); }
.contact-section--light .contact-section__lead { color: var(--c-muted); }
.contact-section--light .contact-item { color: var(--c-ink); }
.contact-section--light a.contact-item:hover { color: var(--c-dark); }
.contact-section--light .contact-item__icon { background-color: var(--c-white); color: var(--c-dark); }
.contact-section--light .contact-field__label { color: var(--c-ink); }
.contact-section--light .contact-field__control { background-color: var(--c-white); border-color: var(--c-border); color: var(--c-ink); }
.contact-section--light .contact-field__control::placeholder { color: var(--c-placeholder); }
.contact-section--light .contact-field__control:focus { border-color: var(--c-dark); }
.contact-section--light .contact-select select:has(option[value=""]:checked) { color: var(--c-placeholder); }
.contact-section--light .contact-checkbox,
.contact-section--light .contact-consent { color: var(--c-muted); }
.contact-section--light .contact-consent__text,
.contact-section--light .contact-consent__text a { color: var(--c-muted); }
.contact-section--light .contact-checkbox__box,
.contact-section--light .contact-consent__box { border-color: var(--c-border); background-color: var(--c-white); }
.contact-section--light .contact-checkbox input:checked + .contact-checkbox__box,
.contact-section--light .contact-consent input:checked + .contact-consent__box {
  background-color: var(--c-dark);
  border-color: var(--c-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact-section--light .contact-form__submit { background-color: var(--c-dark); color: var(--c-cream); }
.contact-section--light .contact-form__submit:hover { background-color: #3a1c1b; }

/* =============================================================
   БАНЕР ВНУТРІШНІХ СТОРІНОК (Figma 48103826)
   ============================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--c-dark);
  min-height: 426px;
  padding-top: 145px;
}
.page-hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 25px; text-align: center; }
.page-hero__crumb { display: flex; align-items: center; gap: 8px; font-size: 15px; color: #988079; }
.page-hero__crumb a { color: #988079; transition: color .2s ease; }
.page-hero__crumb a:hover { color: var(--c-beige); }
.page-hero__sep { color: #988079; }
.page-hero__current { color: var(--c-beige); font-weight: 600; }
.page-hero__title { font-family: var(--font-body); font-weight: 400; font-size: 45px; line-height: normal; color: var(--c-beige); }
.page-hero__wave { position: absolute; left: 50%; transform: translateX(-50%); bottom: -1px; width: 100vw; height: auto; z-index: 1; pointer-events: none; }

/* =============================================================
   СТОРІНКА ДИСТРИБ'ЮТОРИ (Figma 109:959)
   ============================================================= */
/* --- Інтро --- */
.dist-intro { padding-block: 80px; background-color: var(--c-beige); }
.dist-intro__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; }
.dist-intro__text { flex: 0 1 635px; display: flex; flex-direction: column; align-items: flex-start; gap: 50px; }
.dist-intro__head { display: flex; flex-direction: column; gap: 15px; }
.dist-intro__eyebrow { font-size: 24px; color: var(--c-dark); }
.dist-intro__title { font-family: var(--font-body); font-weight: 400; font-size: 45px; line-height: normal; color: var(--c-ink); }
.dist-intro__lead { display: flex; flex-direction: column; gap: 16px; color: var(--c-ink); font-size: 16px; line-height: 21px; }
.dist-intro__lead p { margin: 0; }
.dist-intro__chips { flex: 0 0 336px; display: flex; flex-direction: column; gap: 10px; }
.dist-chip { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 18px 20px; background-color: #f8f2ea; border-radius: 10px; font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--c-dark); cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.dist-chip::after {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 12px;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='12' viewBox='0 0 16 12' fill='none'%3E%3Cpath d='M1 6h13M11 2l4 4-4 4' stroke='%23efe6da' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: width .2s ease, opacity .2s ease;
}
.dist-chip:hover { background-color: var(--c-dark); color: var(--c-beige); }
.dist-chip:hover::after { width: 16px; opacity: 1; }

/* --- Асортимент --- */
.dist-assort { padding-block: 80px; background-color: var(--c-beige); }
.dist-assort .container { display: flex; flex-direction: column; align-items: center; gap: 50px; }
.dist-assort__header { display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center; max-width: 700px; }
.dist-assort__eyebrow { font-size: 24px; color: var(--c-dark); }
.dist-assort__title { font-family: var(--font-body); font-weight: 400; font-size: 45px; line-height: normal; color: var(--c-ink); }
.dist-assort__lead { font-size: 20px; line-height: 26px; color: var(--c-ink); max-width: 666px; }
.dist-assort__grid { width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.assort-card { display: flex; flex-direction: column; gap: 10px; }
.assort-card__label { font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 20px; color: var(--c-dark); min-height: 40px; }  /* 2 рядки → фото в одну лінію */
.assort-card__media { position: relative; height: 383px; border-radius: 10px; overflow: hidden; box-shadow: 5px 7px 8px rgba(89, 57, 40, .05); background-color: #dabb9e; }
.assort-card__media > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* ховер: затемнення картки + кремовий фриз із чашок над кнопкою (Figma) */
.assort-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 22px; background-color: rgba(40, 19, 19, .55); opacity: 0; transition: opacity .3s ease; }
/* кремова хвиля з чашок заливається донизу картки; кнопка «Замовити» повністю на гладкому кремі під фризом */
.assort-card__frieze { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 380%; max-width: none; height: auto; pointer-events: none; }
.assort-card__media:hover .assort-card__overlay { opacity: 1; }
.assort-card__btn { position: relative; z-index: 1; height: 45px; display: inline-flex; align-items: center; padding: 8px 25px; background-color: var(--c-dark); color: var(--c-beige); border-radius: 10px; font-family: var(--font-body); font-weight: 500; font-size: 16px; box-shadow: 5px 8px 7px rgba(89, 57, 40, .18); }
.dist-assort__actions { display: flex; gap: 15px; }

/* --- Переваги --- */
.dist-benefits {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 13vw, 240px) 80px;   /* верх — під хвилю-фриз */
  background-color: #f8f2ea;
}
/* смуга #efe6da під прозорою верхівкою хвилі — щоб кремовий фриз проступив (як у Контактах) */
.dist-benefits::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7vw;
  background-color: var(--c-beige);
  z-index: 0;
}
.dist-benefits__wave {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1440px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.dist-benefits .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 50px; }
.dist-benefits__header { display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center; max-width: 666px; }
.dist-benefits__eyebrow { font-size: 24px; color: var(--c-dark); }
.dist-benefits__title { font-family: var(--font-body); font-weight: 400; font-size: 45px; line-height: normal; color: var(--c-ink); }

.dist-benefits__cards { width: 100%; display: flex; align-items: stretch; gap: 25px; }
.dist-benefits__cards .dist-bf-card { flex: 1 1 0; min-width: 0; }
.dist-benefits__divider { align-self: center; flex: 0 0 1px; width: 1px; height: 37px; background-color: rgba(78, 40, 39, .15); }
.dist-bf-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 25px; background-color: #efe6da; border-radius: 10px; }
.dist-bf-card__icon { display: block; flex-shrink: 0; }
.dist-bf-card__title { font-family: var(--font-body); font-weight: 400; font-size: 20px; line-height: normal; color: var(--c-dark); }
.dist-bf-card__text { font-weight: 300; font-size: 15px; line-height: 20px; color: var(--c-ink); }

.dist-support { width: 100%; display: flex; align-items: center; gap: 80px; padding: 25px; background-color: #efe6da; border-radius: 10px; }
.dist-support__lead { flex: 0 0 183px; display: flex; flex-direction: column; gap: 16px; }
.dist-support__icon { display: block; }
.dist-support__title { font-family: var(--font-body); font-weight: 400; font-size: 20px; line-height: normal; color: var(--c-dark); }
.dist-support__sep { flex: 0 0 1px; align-self: stretch; background-color: rgba(78, 40, 39, .15); }
.dist-support__grid { flex: 1 1 0; min-width: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.dist-support__item { display: flex; flex-direction: column; gap: 15px; }
.dist-support__item img { display: block; }
.dist-support__item p { font-weight: 300; font-size: 15px; line-height: 20px; color: var(--c-ink); margin: 0; }

.dist-benefits__sign { display: flex; flex-direction: column; align-items: center; gap: 25px; text-align: center; }
.dist-benefits__sign p { font-size: 24px; color: var(--c-dark); }

/* =============================================================
   FOOTER (Figma 103:1215) — світлий, із хвилею-переходом від темних Контактів
   ============================================================= */
.site-footer {
  position: relative;
  padding-block: 55px 35px;
  background-color: #f8f2ea;             /* світла зона */
  color: var(--c-ink);
}
/* хвиля-перехід (#f8f2ea) сидить над футером, у зоні темних Контактів */
.site-footer__wave {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 100vw;
  height: auto;
  pointer-events: none;
}
.site-footer .container { display: flex; flex-direction: column; gap: 50px; }

.site-footer__top { display: flex; align-items: flex-start; gap: 150px; }

/* --- бренд (лого + контакти) --- */
.site-footer__brand { flex: 0 0 202px; display: flex; flex-direction: column; align-items: center; gap: 42px; }
.site-footer__logo { display: block; }
.site-footer__logo img { display: block; width: 180px; height: 129px; }
.site-footer__contacts { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.site-footer .contact-item { color: var(--c-dark); }
.site-footer .contact-item__value { white-space: normal; line-height: 1.35; }

/* --- колонки навігації --- */
.site-footer__cols { flex: 1 1 0; min-width: 0; display: flex; justify-content: space-between; gap: 35px; }
.footer-col { display: flex; flex-direction: column; gap: 15px; }
.footer-col__title { font-size: 24px; color: var(--c-dark); }
.footer-col__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col__list a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #161616;
  transition: color .2s ease;
}
.footer-col__list a:hover { color: var(--c-brown); }

/* --- каталог-сітка --- */
.footer-col--catalog { flex: 0 1 441px; }
.footer-catalog {
  display: grid;
  grid-template-columns: 107px 107px auto;
  column-gap: 35px;
  row-gap: 25px;
}
.footer-product { display: flex; flex-direction: column; gap: 10px; }
.footer-product__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #161616;
  transition: color .2s ease;
}
.footer-product__name:hover { color: var(--c-brown); }
.footer-product__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.footer-product__items li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #161616;
}

/* --- низ: лінія + копірайт --- */
.site-footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.site-footer__line {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 1px;
  background-color: rgba(78, 40, 39, .12);
}
.site-footer__copy {
  margin: 0;
  font-size: 15px;
  text-align: center;
  color: var(--c-dark);
}
