/* ============================================================
   FLORI — стили лендинга
   ============================================================ */

:root {
  --bg:            #ffffff;
  --ink:          #242422;   /* основной тёмный текст / заголовки */
  --muted:        #6c6c6a;   /* серый body-текст */
  --line:         #ececec;   /* тонкие разделители */
  --black:        #161616;   /* кнопки */
  --black-hover:  #2e2e2e;
  --accent:       #eab8c6;   /* цветовой акцент (розовый) */
  --accent-dark:  #d99aab;   /* акцент, тон темнее (hover) */
  --accent-green:      #768f6c;   /* зелёный акцент — текст/иконки */
  --accent-green-soft: #eaf0e6;   /* зелёный акцент — пастельный фон */
  --accent-green-line: #d3ddcd;   /* зелёный акцент — тонкие линии на пастели */

  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans:  'Montserrat', Arial, Helvetica, sans-serif;

  --header-h: 64px;
  --pad-x: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ============ КНОПКИ ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .6px;
  text-align: center;
  padding: 14px 30px;
  transition: background-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--black-hover); }

/* ============ ШАПКА ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--pad-x);
}
.logo {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--ink);
  justify-self: start;
}
.nav {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  justify-self: center;
}
.nav__link {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #2c2c2c;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
  padding: 4px;
  transition: opacity .2s;
}
.icon-btn:hover { opacity: .6; }
.icon-btn--bag { position: relative; }
.bag-count {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: scale(0);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.bag-count.is-visible { transform: scale(1); }

/* график работы возле корзины */
.header__hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 4px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
  color: #2c2c2c;
  transition: opacity .2s;
}
.header__hours:hover { opacity: .6; }
.header__hours svg { flex-shrink: 0; color: #6c6c6a; }
.header__hours span {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: .2px;
  white-space: nowrap;
  line-height: 1.15;
}
.header__hours b { font-weight: 400; }
@media (max-width: 1080px) {
  .header__hours { display: none; }
}

.burger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.burger span {
  width: 22px; height: 1.5px; background: #2c2c2c;
  transition: transform .3s, opacity .3s;
}

/* ============ ГЕРОЙ ============ */
.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: 86vh;
  min-height: 500px;
  max-height: 820px;
}
.hero__half {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
}
.hero__half img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(28px, 7vh, 70px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7.5vw, 116px);
  line-height: .92;
  color: #ffffff;
  letter-spacing: 1px;
}
.hero__subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 21px);
  color: #ffffff;
  background-color: rgba(26, 36, 26, 0.308);
  margin-top: 6px;
  letter-spacing: .5px;
  padding: 2px 5px;
}
@media (max-width: 760px) {
  .hero__subtitle {
      background-color: rgba(175, 138, 150, 0.308);
      padding: 0;
  }
}
.hero__btn {
  margin-top: clamp(18px, 3vh, 34px);
  min-width: 175px;
  padding: 15px 36px;
}


/* ============ HERO: рифлёное стекло при наведении ============ */
.hero__overlay { z-index: 5; }

.hero-glass {
  isolation: isolate;
  cursor: pointer;
}

.hero-glass__image {
  transition:
    transform 900ms cubic-bezier(.19, 1, .22, 1),
    filter 900ms cubic-bezier(.19, 1, .22, 1);
  will-change: transform, filter;
}

.hero-glass:hover .hero-glass__image,
.hero-glass.is-hovered .hero-glass__image {
  transform: scale(1.045);
  filter: saturate(.94) contrast(.96);
}

.hero-glass__tiles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-glass__tile {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-28px);
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .2);
  border-right: 1px solid rgba(255, 255, 255, .2);
  transition:
    clip-path 980ms cubic-bezier(.16, 1, .3, 1),
    opacity 760ms cubic-bezier(.16, 1, .3, 1),
    transform 980ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--delay) * 1ms);
  will-change: clip-path, opacity, transform;
}

.hero-glass:hover .hero-glass__tile,
.hero-glass.is-hovered .hero-glass__tile {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}

.hero-glass__tile-img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: cover;
  filter: url(#flori-glass-ripple) blur(1.1px) saturate(.92) contrast(1.04) brightness(1.05);
  transform: scale(1.035);
  transform-origin: center;
}

.hero-glass__tile::before,
.hero-glass__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glass__tile::before {
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, .24),
      rgba(255, 255, 255, .04) 18%,
      rgba(255, 255, 255, .16) 42%,
      rgba(255, 255, 255, .02) 70%,
      rgba(255, 255, 255, .18)
    );
  mix-blend-mode: screen;
}

.hero-glass__tile::after {
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .24) 0 2px,
      rgba(255, 255, 255, .04) 2px 10px,
      rgba(20, 28, 18, .08) 10px 14px,
      rgba(255, 255, 255, .02) 14px 26px
    );
  opacity: .72;
  filter: blur(.35px);
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-glass__image,
  .hero-glass__tile {
    transition: none;
  }
}

/* ============ ИНТРО ============ */
.intro {
  padding: clamp(38px, 5vw, 68px) var(--pad-x) clamp(19px, 2.5vw, 34px);
  text-align: center;
}
.intro__text {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.95;
  color: var(--muted);
}

/* ============ ЗАГОЛОВКИ СЕКЦИЙ ============ */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 50px);
  letter-spacing: clamp(2px, .4vw, 5px);
  text-align: center;
  color: var(--ink);
  margin-bottom: clamp(34px, 4vw, 56px);
}

/* ============ КАТАЛОГ / КАРУСЕЛЬ ============ */
.catalog {
  padding: 0 var(--pad-x) clamp(28px, 3.5vw, 48px);
}
.carousel__viewport { overflow: hidden; }
.carousel__track {
  --gap: clamp(16px, 1.6vw, 24px);
  --per: 4;
  display: flex;
  gap: var(--gap);
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
  will-change: transform;
}
.card {
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
  cursor: pointer;
}
.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f1ef;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.card__img--hover { opacity: 0; }
.card:hover .card__img--hover { opacity: 1; }
.card:hover .card__img { transform: scale(1.05); }

.card__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: #353533;
  margin-top: 16px;
  letter-spacing: .2px;
}
.card__price {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: #353533;
  margin-top: 5px;
}

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 40px);
}
.carousel__arrow {
  font-size: 16px;
  color: #8a8a8a;
  padding: 6px 8px;
  transition: color .2s, transform .2s;
}
.carousel__arrow:hover { color: var(--ink); }
.carousel__arrow:disabled { opacity: .3; cursor: default; }
.carousel__counter {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  color: #555;
  min-width: 64px;
  text-align: center;
}

/* ============ О БРЕНДЕ ============ */
.about {
  padding: 0 var(--pad-x) clamp(34px, 4.5vw, 58px);
  text-align: center;
}
.about__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: .5px;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.about__image {
  max-width: 360px;
  margin: 0 auto clamp(30px, 4vw, 48px);
}
.about__image img { width: 100%; height: auto; }
.about__text {
  max-width: 600px;
  margin: 0 auto clamp(26px, 3.4vw, 40px);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(12.5px, 1.05vw, 14px);
  line-height: 1.95;
  color: var(--muted);
}
.about__btn { padding: 15px 40px; }

/* ============ ТИЗЕР-БЛОКИ ============ */
.teasers {
  display: flex;
  width: 100%;
}
.teaser {
  position: relative;
  flex: 1 1 50%;
  height: clamp(360px, 38vw, 540px);
  overflow: hidden;
  display: block;
}
.teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.teaser:hover img { transform: scale(1.04); }
.teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 35%, transparent 60%);
}
.teaser__overlay {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  padding: clamp(24px, 3vw, 44px);
  color: #fff;
  max-width: 90%;
}
.teaser__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: .3px;
}
.teaser__subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(12px, 1vw, 13.5px);
  margin-top: 7px;
  opacity: .92;
}
.teaser__btn {
  margin-top: clamp(14px, 1.6vw, 20px);
  padding: 12px 26px;
}

/* ============ FAQ ============ */
.faq {
  padding: clamp(36px, 5vw, 64px) var(--pad-x) clamp(30px, 4vw, 56px);
}
.faq .section-title { margin-bottom: clamp(26px, 3.4vw, 48px); }
.faq__list {
  max-width: 1180px;
  margin: 0 auto;
}
.faq__item { border-top: 1px solid #e8e8e8; }
.faq__item:last-child { border-bottom: 1px solid #e8e8e8; }

.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(20px, 2.4vw, 30px) 46px;
  text-align: center;
}
.faq__question {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 17px);
  color: var(--ink);
  letter-spacing: .2px;
  transition: opacity .2s;
}
.faq__q:hover .faq__question { opacity: .65; }

.faq__icon {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #9a9a9a;
  transition: opacity .3s ease, transform .3s ease;
}
.faq__icon::before { /* горизонталь */
  left: 0; top: 50%;
  width: 16px; height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after { /* вертикаль */
  left: 50%; top: 0;
  width: 1.5px; height: 16px;
  transform: translateX(-50%);
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--accent-dark); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  max-width: 720px;
  margin: 0 auto;
  padding: 2px 0 clamp(22px, 2.6vw, 34px);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(12.5px, 1vw, 14px);
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
}

/* ============ ПОДВАЛ ============ */
.footer {
  background: #141414;
  color: #cfcfcf;
  padding: clamp(48px, 6vw, 82px) var(--pad-x) 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
.footer__logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  letter-spacing: 1px;
}
.footer__desc {
  max-width: 290px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: #9a9a9a;
}
.footer__social {
  display: flex;
  gap: 22px;
  margin-top: 24px;
}
.footer__social a {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s;
}
.footer__social a:hover { color: #b5b5b5; }

.footer__heading {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; }
.footer__col li {
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 300;
  color: #9a9a9a;
}
.footer__col a { color: #9a9a9a; transition: color .2s; }
.footer__col a:hover { color: #fff; }

.footer__map {
  margin-top: 6px;
  width: 100%;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  filter: grayscale(.25);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #2a2a2a;
  font-size: 12px;
  color: #8a8a8a;
}
.footer__bottom a {
  color: #8a8a8a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.footer__bottom a:hover { color: #fff; }

/* ============ СТРАНИЦА КАТАЛОГА ============ */
.nav__link--active { color: var(--ink); font-weight: 400; }
.nav__link--active::after { width: 100%; }

.catalog-page { padding-top: clamp(40px, 5vw, 72px); }

.catalog-head {
  text-align: center;
  padding: 0 var(--pad-x) clamp(26px, 3.4vw, 44px);
}
.catalog-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 54px);
  letter-spacing: clamp(2px, .4vw, 5px);
  color: var(--ink);
}
.catalog-head__sub {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: clamp(12.5px, 1vw, 14px);
  font-weight: 300;
  color: var(--muted);
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 0 var(--pad-x) 18px;
  border-bottom: 1px solid var(--line);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.7vw, 28px);
}
.filter-btn {
  position: relative;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #6c6c6a;
  padding: 5px 0;
  transition: color .2s;
}
.filter-btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width .25s ease;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.is-active { color: var(--ink); font-weight: 400; }
.filter-btn.is-active::after { background: var(--accent-dark); }
.filter-btn.is-active::after { width: 100%; }

.catalog-controls__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.catalog-search {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 220px;
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  transition: border-color .2s ease;
}
.catalog-search:hover,
.catalog-search:focus-within { border-color: #c8c8c6; }
.catalog-search svg { color: #9a9a9a; flex-shrink: 0; }
.catalog-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
}
.catalog-search input:focus { outline: none; }

.sort {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sort__label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #9a9a9a;
  white-space: nowrap;
}

/* кастомный селектор сортировки — под стилистику сайта */
.select { position: relative; }
.select__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 184px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .3px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 11px 16px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.select__trigger:hover,
.select.is-open .select__trigger { border-color: var(--ink); }
.select__chevron {
  color: #8a8a8a;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.select.is-open .select__chevron { transform: rotate(180deg); }

.select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  list-style: none;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .10);
  padding: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.select.is-open .select__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.select__option {
  position: relative;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .2px;
  color: #4a4a48;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.select__option:hover { background: #f6f4f2; color: var(--ink); }
.select__option.is-selected { color: var(--ink); font-weight: 400; }
.select__option.is-selected::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 5px;
  height: 9px;
  margin-top: -6px;
  border: solid var(--ink);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.catalog-result {
  padding: 16px var(--pad-x) 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #9a9a9a;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.6vw, 40px) clamp(16px, 1.6vw, 24px);
  padding: clamp(20px, 2.4vw, 32px) var(--pad-x) clamp(64px, 8vw, 110px);
}
.pcard { display: flex; flex-direction: column; }
.pcard__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f1ef;
}
.pcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .6s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.pcard__img--hover { opacity: 0; }
.pcard:hover .pcard__img--hover { opacity: 1; }
.pcard:hover .pcard__img { transform: scale(1.05); }
.pcard { cursor: pointer; }

/* бейдж скидки */
.pcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: var(--accent-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .4px;
  padding: 5px 9px;
  border-radius: 2px;
}
/* кнопка «Подробнее» поверх фото */
.pcard__quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 11px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
  pointer-events: none;
}
.pcard:hover .pcard__quick { opacity: 1; transform: translateY(0); }
.pcard__quick:hover { background: #fff; }

.pcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 14px;
}
.pcard__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
}

.pcard__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.pcard__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.2;
  color: #777774;
  white-space: nowrap;
}

.pcard__star {
  font-size: 12px;
  line-height: 1;
  color: var(--ink);
}

.pcard__kind {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #9a9a9a;
}

.pcard__prices {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 9px;
  margin-left: auto;
  white-space: nowrap;
}
.pcard__price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .2px;
  color: var(--ink);
}
.pcard--sale .pcard__price { color: #b8332c; }
.pcard__old {
  font-size: 13px;
  font-weight: 300;
  color: #a6a6a4;
  text-decoration: line-through;
}
.pcard__btn {
  margin-top: auto;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 12px 14px;
  transition: background-color .25s ease, color .25s ease;
}
.pcard__btn:hover { background: var(--black); color: #fff; }
.pcard__btn:active { transform: translateY(1px); }

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9a9a9a;
  font-weight: 300;
  padding: 60px 0;
}

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-controls { justify-content: flex-start; }
}
@media (max-width: 430px) {
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
}

/* ============ КОРЗИНА (выезжающая панель) ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 150;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.6, 0, .2, 1);
  z-index: 200;
  box-shadow: -22px 0 54px rgba(0, 0, 0, .14);
}
.cart.is-open { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 3vw, 30px);
  border-bottom: 1px solid var(--line);
}
.cart__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  color: var(--ink);
}
.cart__close {
  font-size: 28px;
  line-height: 1;
  color: #8a8a8a;
  transition: color .2s;
}
.cart__close:hover { color: var(--ink); }

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(12px, 2vw, 20px) clamp(20px, 3vw, 30px);
}
.cart__empty {
  display: none;
  text-align: center;
  color: #9a9a9a;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  padding: 56px 10px;
}

.citem {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid #f0efed;
}
.citem:first-child { padding-top: 4px; }
.citem__media {
  width: 62px;
  height: 80px;
  overflow: hidden;
  background: #f3f1ef;
}
.citem__media img { width: 100%; height: 100%; object-fit: cover; }
.citem__name { font-size: 13px; font-weight: 400; color: var(--ink); }
.citem__price { font-size: 13px; font-weight: 300; color: #6c6c6a; margin-top: 3px; }
.citem__qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; }
.citem__qbtn {
  width: 24px;
  height: 24px;
  border: 1px solid #dcdcdc;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background-color .2s;
}
.citem__qbtn:hover { border-color: var(--ink); }
.citem__qnum { font-size: 13px; min-width: 14px; text-align: center; }
.citem__remove {
  align-self: flex-start;
  font-size: 19px;
  line-height: 1;
  color: #b8b8b8;
  padding: 2px 2px;
  transition: color .2s;
}
.citem__remove:hover { color: var(--ink); }

.cart__foot {
  border-top: 1px solid var(--line);
  padding: clamp(16px, 2.4vw, 22px) clamp(20px, 3vw, 30px) clamp(20px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* чекбокс «фирменная открытка» */
.cart__check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.cart__check input { position: absolute; opacity: 0; width: 0; height: 0; }
.cart__check-box {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid #c9c9c9;
  position: relative;
  transition: background-color .2s, border-color .2s;
}
.cart__check input:checked + .cart__check-box { background: var(--black); border-color: var(--black); }
.cart__check input:checked + .cart__check-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.cart__check input:focus-visible + .cart__check-box { outline: 2px solid #bbb; outline-offset: 2px; }
.cart__check-label { font-size: 13px; font-weight: 300; color: var(--ink); }

.cart__card-field { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cart__card-field.is-open { max-height: 130px; }
.cart__card-field textarea {
  width: 100%;
  height: 82px;
  resize: none;
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  border: 1px solid #e0e0e0;
  padding: 12px;
}
.cart__card-field textarea:focus { outline: none; border-color: var(--ink); }

/* слайдер доставка / самовывоз */
.seg {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f3f1ef;
  padding: 4px;
}
.seg__thumb {
  position: absolute;
  z-index: 1;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
  transition: transform .32s cubic-bezier(.6, 0, .2, 1);
}
.seg.is-pickup .seg__thumb { transform: translateX(100%); }
.seg__opt {
  position: relative;
  z-index: 2;
  padding: 11px 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #7a7a78;
  transition: color .25s ease;
}
.seg__opt.is-active { color: var(--ink); font-weight: 400; }

.cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 2px;
}
.cart__total-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6c6c6a;
}
.cart__total-sum {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  color: var(--ink);
}
.cart__checkout { width: 100%; padding: 16px; }
.cart__checkout:disabled { opacity: .4; cursor: default; }

@media (max-width: 480px) {
  .cart { width: 100%; }
}

/* ============ ОФОРМЛЕНИЕ ЗАКАЗА (модальное окно) ============ */
.ckmodal__dialog {
  width: min(560px, 94vw);
  padding: 0;
}
.ckmodal__dialog--sm { width: min(320px, 88vw);  }
.ckmodal__body {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ckmodal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(21px, 3vw, 26px);
  color: var(--ink);
}
.ckmodal__mode {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a9a9a;
}
.ckmodal__section { display: flex; flex-direction: column; gap: 10px; }
.ckmodal__label {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #9a9a9a;
}
.ckmodal__input {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
}
.ckmodal__input:focus { outline: none; border-color: var(--ink); }
.ckmodal__input.is-error { border-color: #b8332c; }
.ckmodal__textarea { resize: none; height: 78px; font-family: var(--sans); }
.ckmodal__dateseg { max-width: 280px; }
.ckmodal__slots { display: flex; flex-wrap: wrap; gap: 8px; }
.ckslot {
  border: 1px solid #e0e0e0;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  transition: border-color .2s, background-color .2s, color .2s;
}
.ckslot:hover { border-color: var(--ink); }
.ckslot.is-active { border-color: var(--ink); background: var(--black); color: #fff; }
.ckslot--night { border-style: dashed; }
.ckslot--night::before { content: '☾ '; opacity: .6; }
.ckmodal__hint { font-size: 12px; font-weight: 300; color: #b8332c; }
.ckmodal__note { font-size: 11.5px; font-weight: 300; line-height: 1.6; color: #8a8a88; }
.ckmodal__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.ckmodal__total span:first-child {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6c6c6a;
}
.ckmodal__total span:last-child {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
}
.ckmodal__submit { width: 100%; padding: 16px; }

.ckmodal__success {
  padding: clamp(34px, 4vw, 44px) clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.ckmodal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3f1ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
}
.ckmodal__success-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 300px;
}
.ckmodal__success-note { display: block; }
.ckmodal__success .btn { width: auto; min-width: 300px; padding: 14px 36px; margin-top: 4px; }

@media (max-width: 480px) {
  .ckmodal__dialog { width: 100%; height: 100%; max-height: 100%; }
  .ckmodal__dialog--sm { width: 100%; height: auto; max-height: 90vh; }
}

/* ============ ТОСТ ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .4px;
  padding: 13px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 300;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ ВИДЖЕТ ПОДДЕРЖКИ (онлайн-чат) ============ */
.support {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 120;
  font-family: var(--sans);
}

/* — плавающая кнопка — */
.support__launcher {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 18, 16, .28);
  transition: transform .3s cubic-bezier(.6, 0, .2, 1), background-color .25s ease, box-shadow .3s ease;
}
.support__launcher:hover { background: var(--black-hover); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(20, 18, 16, .34); }
.support__launcher:active { transform: translateY(-1px); }
.support__launcher:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* иконки внутри кнопки (чат ↔ свернуть) — перекрёстное появление */
.support__icon {
  position: absolute;
  display: flex;
  transition: opacity .25s ease, transform .32s cubic-bezier(.6, 0, .2, 1);
}
.support__icon--close { opacity: 0; transform: rotate(-45deg) scale(.5); }
.support.is-open .support__icon--chat { opacity: 0; transform: rotate(45deg) scale(.5); }
.support.is-open .support__icon--close { opacity: 1; transform: none; }

/* индикатор «непрочитанного» — снимается после первого открытия */
.support__dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e0607e;
  border: 2px solid #fff;
  transform: scale(0);
  transition: transform .3s cubic-bezier(.6, 0, .2, 1);
}
.support.has-unread .support__dot { transform: scale(1); }
.support.is-open .support__dot { transform: scale(0); }

/* — окно чата — */
.support__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(348px, calc(100vw - 32px));
  height: min(70vh, 520px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(20, 18, 16, .26);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .28s ease, transform .32s cubic-bezier(.6, 0, .2, 1);
}
.support.is-open .support__panel { opacity: 1; transform: none; pointer-events: auto; }

/* шапка окна */
.support__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: var(--black);
  color: #fff;
}
.support__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .5px;
}
.support__meta { flex: 1; min-width: 0; line-height: 1.3; }
.support__name { font-family: var(--serif); font-size: 16px; font-weight: 500; letter-spacing: .4px; }
.support__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .68);
}
.support__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fcf73;
  animation: support-pulse 2.4s infinite;
}
@keyframes support-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(111, 207, 115, .55); }
  70%  { box-shadow: 0 0 0 6px rgba(111, 207, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 207, 115, 0); }
}
.support__close {
  flex-shrink: 0;
  font-size: 26px;
  line-height: 1;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}
.support__close:hover { color: #fff; }

/* лента сообщений */
.support__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fbfaf9;
}
.support__msg {
  max-width: 84%;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  border-radius: 16px;
  animation: support-msg-in .32s cubic-bezier(.6, 0, .2, 1) both;
}
@keyframes support-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.support__msg--bot {
  align-self: flex-start;
  background: #f1efed;
  color: var(--ink);
  border-bottom-left-radius: 5px;
}
.support__msg--user {
  align-self: flex-end;
  background: var(--black);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.support__msg b { font-weight: 500; }
.support__msg-time { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .3px; opacity: .5; }

/* ответ живого менеджера (из Telegram) — слегка выделяем */
.support__msg--mgr { background: #eaf1e6; }
.support__msg-who {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #5b8a40;
  margin-bottom: 3px;
}

/* системные уведомления диалога (подключился / завершил) */
.support__msg--sys {
  align-self: center;
  max-width: 92%;
  background: transparent;
  color: #9a9a98;
  font-size: 11px;
  font-style: italic;
  text-align: center;
  padding: 2px 10px;
}

/* индикатор набора текста */
.support__typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
  background: #f1efed;
  border-radius: 16px;
  border-bottom-left-radius: 5px;
}
.support__typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b3afab;
  animation: support-typing 1.2s infinite ease-in-out;
}
.support__typing span:nth-child(2) { animation-delay: .18s; }
.support__typing span:nth-child(3) { animation-delay: .36s; }
@keyframes support-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* поле ввода */
.support__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.support__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  background: #f3f1ef;
  border-radius: 22px;
  padding: 11px 16px;
}
.support__input::placeholder { color: #9a9a98; }
.support__send {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, opacity .2s;
}
.support__send:hover { background: var(--black-hover); }
.support__send:disabled { opacity: .35; cursor: default; }

@media (max-width: 480px) {
  .support__launcher { width: 54px; height: 54px; }
  .support__panel { height: min(72vh, 480px); }
}
@media (prefers-reduced-motion: reduce) {
  .support__status::before { animation: none; }
  .support__msg { animation: none; }
}

/* ============ АДАПТИВ ============ */
@media (max-width: 1100px) {
  .carousel__track { --per: 3; }
}
@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__link { padding: 12px 0; border-bottom: 1px solid #f3f3f3; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .nav { justify-self: stretch; }
  .burger { display: flex; }
  .burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}
@media (max-width: 760px) {
  .carousel__track { --per: 2; }
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .hero__half { height: 70vh; min-height: 380px; flex: none; }
  .hero__half--right { display: none; }
  .hero__half--left { position: relative; height: 50vh; min-height: 320px; }
  .hero__half--left img { object-position: top; }
  .hero__half--left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
  }
  .hero__overlay { right: 24px; bottom: 56px; }
}
@media (max-width: 680px) {
  .teasers { flex-direction: column; }
  .teaser { flex: none; height: 58vw; min-height: 270px; }
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .carousel__track { --per: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (max-width: 520px) {
  .price-filter {
    min-width: 100%;
    width: 100%;
  }

  .pcard__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .pcard__prices {
    margin-left: 0;
  }
}

/* ============================================================
   КАТАЛОГ — расширенные фильтры (цена + выпадающие панели)
   ============================================================ */
.adv-filters { padding: 18px var(--pad-x) 0; }
.adv-filters__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.adv-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #9a9a9a;
}

/* --- слайдер цены --- */
.price-filter {
  min-width: 320px;
}
.price-filter__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 9px;
}
.price-filter__vals {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink);
}
.price-filter__vals b { font-weight: 500; }

.price-filter__inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 9px;
}

.price-filter__field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 10px;
  transition: border-color .2s ease;
}

.price-filter__field:focus-within {
  border-color: var(--ink);
}

.price-filter__field span {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #9a9a9a;
}

.price-filter__field input {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
}

.price-filter__field input::-webkit-outer-spin-button,
.price-filter__field input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.range { position: relative; height: 24px; }
.range__rail {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  transform: translateY(-50%);
  background: #e2e0dd;
}
.range__fill {
  position: absolute;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: var(--ink);
}
.range__input {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 24px;
  margin: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  cursor: pointer;
  pointer-events: auto;
}
.range__input::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  cursor: pointer;
  pointer-events: auto;
}

/* --- выпадающие фильтры --- */
.fdrop { position: relative; }
.fdrop__trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .3px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  transition: border-color .2s ease;
}
.fdrop__trigger:hover,
.fdrop.is-open .fdrop__trigger { border-color: var(--ink); }
.fdrop__trigger.is-filled { border-color: var(--ink); }
.fdrop__chev { color: #8a8a8a; transition: transform .25s ease; }
.fdrop.is-open .fdrop__chev { transform: rotate(180deg); }
.fdrop__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}
.fdrop__count[hidden], .clear-filters[hidden] { display: none; }

/* панель фильтра */
.fpanel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 70;
  width: 320px;
  max-width: 86vw;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 20px 48px rgba(0,0,0,.14);
  padding: 14px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.fdrop.is-open .fpanel { opacity: 1; transform: translateY(0); pointer-events: auto; }

.fpanel__tabs {
  display: flex;
  gap: 4px;
  background: #f4f2f0;
  padding: 4px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.fpanel__tab {
  flex: 1;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: .2px;
  color: #6c6c6a;
  padding: 8px;
  border-radius: 2px;
  transition: background-color .2s ease, color .2s ease;
}
.fpanel__tab.is-active { background: #fff; color: var(--ink); font-weight: 400; box-shadow: 0 1px 3px rgba(0,0,0,.08); }

.fpanel__search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e4e2df;
  padding: 9px 11px;
  margin-bottom: 12px;
}
.fpanel__search svg { color: #9a9a9a; flex-shrink: 0; }
.fpanel__search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  background: none;
}

.fpanel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.fchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 300;
  padding: 5px 8px;
  border-radius: 2px;
  background: #f1efed;
  color: var(--ink);
}
.fchip--exc span:not(.cdot) { text-decoration: line-through; color: #9a9a9a; }
.fchip--inc { background: #ecf2e8; }
.fchip button { font-size: 15px; line-height: 1; color: #8a8a8a; padding: 0 1px; }
.fchip button:hover { color: var(--ink); }

.fpanel__list {
  list-style: none;
  max-height: 216px;
  overflow-y: auto;
  margin: 0 -6px 12px;
  padding: 0 6px;
}
.foption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 6px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .15s ease;
}
.foption:hover { background: #f7f5f3; }
.foption__box {
  width: 16px; height: 16px;
  flex-shrink: 0;
  border: 1.4px solid #c8c6c3;
  border-radius: 3px;
  position: relative;
  transition: border-color .15s ease, background-color .15s ease;
}
.foption.is-checked .foption__box { background: var(--black); border-color: var(--black); }
.foption.is-checked .foption__box::after {
  content: "";
  position: absolute;
  left: 5px; top: 2px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.foption__label { flex: 1; }
.foption__hint { font-size: 11px; color: #b0aeac; }
.foption.is-disabled { opacity: .5; cursor: not-allowed; }
.foption.is-disabled:hover { background: none; }
.cdot {
  width: 14px; height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
}
.fpanel__empty { padding: 16px 6px; font-size: 13px; font-weight: 300; color: #9a9a9a; text-align: center; }

.fpanel__foot {
  display: flex;
  gap: 10px;
  border-top: 1px solid #f0eeec;
  padding-top: 12px;
}
.fpanel__reset {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #6c6c6a;
  padding: 11px 14px;
  transition: color .2s ease;
}
.fpanel__reset:hover { color: var(--ink); }
.fpanel__apply {
  flex: 1;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .6px;
  padding: 11px 14px;
  transition: background-color .2s ease;
}
.fpanel__apply:hover { background: var(--black-hover); }

/* кнопка очистки фильтров */
.clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #6c6c6a;
  padding: 9px 4px;
  transition: color .2s ease;
}
.clear-filters:hover { color: var(--ink); }
.clear-filters__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #efedea;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

/* ============================================================
   МОДАЛКА ТОВАРА
   ============================================================ */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.pmodal.is-open { display: block; }
.pmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, .5);
  animation: pmFade .3s ease;
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
.pmodal__dialog {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  animation: pmRise .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes pmRise { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.pmodal__close {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 5;
  width: 36px; height: 36px;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  background: rgba(255,255,255,.85);
  border-radius: 50%;
}
.pmodal__close:hover { background: #f1efed; }

.pmodal__body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 3vw, 36px);
}
.pmodal__gallery { position: sticky; top: 0; align-self: start; }
.pmodal__main {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f1ef;
}
.pmodal__main img { width: 100%; height: 100%; object-fit: cover; }
.pmodal__thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pmodal__thumb {
  width: 64px; height: 80px;
  overflow: hidden;
  background: #f3f1ef;
  border: 1px solid transparent;
  padding: 0;
  opacity: .7;
  transition: opacity .2s ease, border-color .2s ease;
}
.pmodal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pmodal__thumb.is-active { opacity: 1; border-color: var(--ink); }

.pmodal__info { display: flex; flex-direction: column; }
.pmodal__rating { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #9a9a9a; }
.pmodal__rating .star { color: #d8d6d3; font-size: 14px; }
.pmodal__rating .star.is-on { color: #e0a93b; }
.pmodal__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 8px 0 12px;
}
.pmodal__desc { font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.65; }
.pmodal__prices { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.pmodal__price { font-size: 28px; font-weight: 600; color: var(--ink); }
.pmodal__old { font-size: 17px; font-weight: 300; color: #a6a6a4; text-decoration: line-through; }
.pmodal__save {
  font-size: 12px;
  font-weight: 500;
  color: #b8332c;
  background: #fbeceb;
  padding: 4px 9px;
  border-radius: 2px;
}
.pmodal__row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.pmodal__rlabel { font-size: 12px; color: #9a9a9a; min-width: 56px; }
.psize { display: flex; gap: 8px; }
.psize__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 66px;
  border: 1px solid #e0e0e0;
  padding: 8px 10px;
  transition: border-color .2s ease, background-color .2s ease;
}
.psize__btn b { font-size: 14px; font-weight: 500; color: var(--ink); }
.psize__btn i { font-style: normal; font-size: 10.5px; color: #9a9a9a; }
.psize__btn:hover { border-color: var(--ink); }
.psize__btn.is-active { border-color: var(--ink); background: #f7f5f3; }

.pmodal__specs { border-top: 1px solid #f0eeec; padding-top: 16px; margin-bottom: 20px; }
.pmodal__spec { display: flex; gap: 16px; padding: 7px 0; font-size: 13px; font-weight: 300; }
.pmodal__spec > span { min-width: 110px; color: #9a9a9a; flex-shrink: 0; }
.pmodal__spec p { color: var(--ink); }
.pmodal__comp { list-style: none; }
.pmodal__comp li { color: var(--ink); }
.pmodal__comp li span { color: #9a9a9a; }

.pmodal__actions { display: flex; gap: 12px; margin-top: auto; flex-wrap: wrap; }
.pmodal__add { flex: 1; min-width: 180px; border: none; cursor: pointer; }
.pmodal__buy {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.pmodal__buy:hover { background: var(--ink); color: #fff; }

.pmodal__reviews { grid-column: 1 / -1; border-top: 1px solid #f0eeec; padding-top: 22px; }
.pmodal__rev-title { font-family: var(--serif); font-weight: 500; font-size: 19px; margin-bottom: 16px; }
.rev { padding: 14px 0; border-bottom: 1px solid #f4f2f0; }
.rev:last-child { border-bottom: none; }
.rev__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.rev__author { font-size: 13px; font-weight: 500; color: var(--ink); }
.rev__stars .star { color: #d8d6d3; font-size: 13px; }
.rev__stars .star.is-on { color: #e0a93b; }
.rev__text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

@media (max-width: 680px) {
  .pmodal__body { grid-template-columns: 1fr; }
  .pmodal__gallery { position: static; }
  .pmodal__main { aspect-ratio: 4 / 3; }
}

/* ============================================================
   СТРАНИЦА ПОКУПАТЕЛЯМ
   ============================================================ */
  
  .buyers-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 18px;
  }
  
  .buyers-cover {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    padding: 0 var(--pad-x) 0;
  }

  .buyers-cover__content {
    min-height: clamp(300px, 34vw, 440px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(24px, 3vw, 44px) 0;
  }
  
  .buyers-cover__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(42px, 7vw, 94px);
    line-height: .94;
    letter-spacing: clamp(2px, .45vw, 6px);
    color: var(--ink);
  }
  
  .buyers-cover__text {
    max-width: 560px;
    margin-top: clamp(22px, 2.6vw, 34px);
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
  }
  
  .buyers-cover__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(28px, 3vw, 42px);
  }
  
  .buyers-cover__nav a {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dedede;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .3px;
    color: var(--ink);
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  
  .buyers-cover__nav a:hover {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
  }
  
  .buyers-cover__media {
    position: relative;
    height: clamp(300px, 34vw, 440px);
    overflow: hidden;
    background: #f3f1ef;
  }
  
  .buyers-cover__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* --- Общие секции --- */
  .buyers-section {
    padding:clamp(20px, 2.5vw, 36px) var(--pad-x);
  }
  
  .buyers-section--soft {
    background: #f7f5f3;
  }
  
  .buyers-section__head {
    max-width: 760px;
    margin-bottom: clamp(34px, 4.6vw, 64px);
  }
  
  .buyers-section__head--center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .buyers-section__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.12;
    letter-spacing: .4px;
    color: var(--ink);
  }
  
  .buyers-section__sub {
    max-width: 560px;
    margin: 16px auto 0;
    font-size: clamp(12.5px, 1vw, 14px);
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .buyers-lead {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 300;
    line-height: 1.95;
    color: var(--muted);
  }
  
  /* --- О нас --- */
  .buyers-about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(34px, 5vw, 78px);
    align-items: start;
  }
  
  .buyers-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  
  .buyers-value {
    min-height: 230px;
    background: #fff;
    padding: clamp(22px, 2.7vw, 34px);
  }
  
  .buyers-value span {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 28px;
  }
  
  .buyers-value h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 12px;
  }
  
  .buyers-value p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
  }
  
  /* --- Вакансии --- */
  .vacancy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 1.8vw, 24px);
  }
  
  .vacancy-card {
    background: #fff;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid #ece8e3;
  }
  
  .vacancy-card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    color: var(--ink);
  }
  
  .vacancy-card p {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
  }
  
  .vacancy-card span {
    display: inline-block;
    margin-top: 24px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
  }
  
  .buyers-note {
    max-width: 720px;
    margin: clamp(26px, 3.2vw, 44px) auto 0;
    text-align: center;
  }
  
  .buyers-note p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .buyers-note a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  /* --- Блог --- */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
  }
  
  .blog-card {
    background: #fff;
  }
  
  .blog-card__media {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f1ef;
  }
  
  .blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
  }
  
  .blog-card:hover .blog-card__media img {
    transform: scale(1.04);
  }
  
  .blog-card__body {
    padding-top: 18px;
  }
  
  .blog-card__body span {
    display: block;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 9px;
  }
  
  .blog-card__body h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.18;
    color: var(--ink);
  }
  
  .blog-card__body p {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
  }
  
  .blog-card__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
  }
  
  /* --- Политики --- */
  .buyers-section--split {
    background: #fff;
  }
  
  .policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  
  .policy-card {
    background: #fff;
    padding: clamp(26px, 3.4vw, 46px);
  }
  
  .policy-card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(24px, 2.8vw, 34px);
    color: var(--ink);
    margin-bottom: 20px;
  }
  
  .policy-card ul {
    list-style: none;
  }
  
  .policy-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
  }
  
  .policy-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 8px;
    height: 1px;
    background: var(--ink);
  }
  
  /* --- Доставка --- */
  .buyers-section--delivery {
    background: var(--accent-green-soft);
    color: var(--ink);
  }

  .buyers-section--delivery .buyers-eyebrow {
    color: var(--accent-green);
    font-weight: 500;
  }

  .buyers-section--delivery .buyers-section__title {
    color: var(--ink);
  }

  .buyers-section--delivery .buyers-lead {
    color: var(--muted);
  }

  .delivery-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(34px, 5vw, 76px);
    align-items: start;
  }

  .delivery-steps {
    border-top: 1px solid var(--accent-green-line);
  }

  .delivery-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: clamp(22px, 2.8vw, 34px) 0;
    border-bottom: 1px solid var(--accent-green-line);
  }

  .delivery-step span {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 32px;
    color: var(--accent-green);
    line-height: 1;
  }

  .delivery-step p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ink);
  }
  
  /* --- FAQ на странице покупателей --- */
  .buyers-faq {
    border-top: 1px solid var(--line);
  }
  
  /* --- Адаптив --- */
  @media (max-width: 960px) {
    .buyers-cover,
    .buyers-about-grid,
    .delivery-layout {
      grid-template-columns: 1fr;
    }
  
    .buyers-cover__content,
    .buyers-cover__media {
      min-height: auto;
    }
  
    .buyers-cover__media {
      aspect-ratio: 4 / 3;
    }
  
    .buyers-values,
    .vacancy-grid,
    .blog-grid {
      grid-template-columns: 1fr;
    }
  
    .buyers-value {
      min-height: auto;
    }
  }
  
  @media (max-width: 720px) {
    .buyers-cover {
      padding-bottom: clamp(44px, 8vw, 68px);
    }
  
    .buyers-cover__nav {
      gap: 8px;
    }
  
    .buyers-cover__nav a {
      padding: 9px 12px;
      font-size: 11.5px;
    }
  
    .policy-grid {
      grid-template-columns: 1fr;
    }
  
    .delivery-step {
      grid-template-columns: 48px 1fr;
      gap: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .buyers-cover__media {
      aspect-ratio: 1 / 1.12;
    }

    .buyers-section {
      padding-top: 54px;
      padding-bottom: 54px;
    }
  }

/* ============================================================
   СТРАНИЦА О НАС — контакты, карта, график работы
   ============================================================ */
.contacts-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 3.4vw, 56px);
  align-items: stretch;
}
.contacts-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-content: start;
}
.contacts-block {
  background: #fff;
  padding: clamp(20px, 2.4vw, 30px);
}
.contacts-block h3 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 12px;
}
.contacts-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}
.contacts-block a { color: var(--ink); transition: opacity .2s; }
.contacts-block a:hover { opacity: .6; }
.contacts-social { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.contacts-social a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  font-size: 13px;
}

/* декоративная карта (без внешних изображений) */
.map-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  background: #eceae6;
  border: 1px solid var(--line);
}
.map-card__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-card__road {
  position: absolute;
  background: #fff;
}
.map-card__road--h { left: 0; right: 0; top: 56%; height: 18px; transform: rotate(-4deg); }
.map-card__road--v { top: 0; bottom: 0; left: 38%; width: 14px; }
.map-card__pin {
  position: absolute;
  left: 38%; top: 56%;
  transform: translate(-50%, -100%);
  color: var(--black);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.2));
}
.map-card__label {
  position: absolute;
  left: 16px; bottom: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: baseline;
  background: #fff;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  box-shadow: 0 6px 22px rgba(0,0,0,.10);
}
.map-card__label b {
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: opacity .2s;
}
.map-card:hover .map-card__label b { opacity: .55; }

/* график работы */
.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 56px);
  align-items: start;
}
.hours-list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list span {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}
.hours-list b {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.hours-simple {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--accent-green-soft);
  border: 1px solid var(--accent-green-line);
  padding: clamp(28px, 3.4vw, 44px);

}
.hours-simple__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-green);
}
.hours-simple__label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink);
}
.hours-simple__time {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
}
.hours-simple__note {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.hours-note {
  background: #141414;
  color: #fff;
  padding: clamp(28px, 3.4vw, 44px);
}
.hours-note__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b893a1;
  margin-bottom: 10px;
}
.hours-note h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 16px;
}
.hours-note ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-note li {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #c4c4c4;
  padding-left: 16px;
  position: relative;
}
.hours-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 1px;
  background: #9fb796;
}
.hours-note li b { color: #fff; font-weight: 500; }
.hours-note__btn { margin-top: clamp(22px, 2.6vw, 32px); background-color: #b893a1;}

@media (max-width: 960px) {
  .contacts-layout,
  .hours-layout { grid-template-columns: 1fr; }
  .map-card { min-height: 280px; }
}
@media (max-width: 480px) {
  .contacts-info { grid-template-columns: 1fr; }
}

/* ============================================================
   СТРАНИЦА СТАТЬИ (care.html / trends.html)
   ============================================================ */
.article {
  padding: clamp(34px, 4vw, 60px) var(--pad-x) 0;
}
.article__top {
  max-width: 820px;
  margin: 0 auto clamp(24px, 3vw, 38px);
  text-align: center;
}
.article__back {
  display: block;
  margin-bottom: clamp(22px, 3vw, 38px);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .4px;
  color: var(--muted);
  transition: color .2s;
}
.article__back:hover { color: var(--ink); }
.article__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 16px;
}
.article__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: .4px;
  color: var(--ink);
}
.article__meta {
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: .3px;
  color: #9a9a9a;
}
.article__cover {
  max-width: 1040px;
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #f3f1ef;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }

.article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 64px) 0 clamp(40px, 5vw, 72px);
}
.article__lead {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: clamp(28px, 3vw, 42px);
}
.article__body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--ink);
  margin: clamp(30px, 3.2vw, 44px) 0 14px;
}
.article__body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.article__list {
  list-style: none;
  margin: 0 0 16px;
}
.article__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.article__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: 9px;
  height: 1px;
  background: var(--ink);
}
.article__list b { font-weight: 500; color: var(--ink); }

.article__tip {
  border-left: 2px solid var(--accent-green);
  background: var(--accent-green-soft);
  padding: clamp(20px, 2.4vw, 30px);
  margin: clamp(28px, 3vw, 40px) 0;
}
.article__tip span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 10px;
}
.article__tip p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink);
}

.article__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.article__cta .btn { padding: 15px 34px; }
.article__cta-alt {
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: background-color .2s ease, color .2s ease;
}
.article__cta-alt:hover { background: var(--ink); color: #fff; }

.article__more {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 96px);
  max-width: 1040px;
  margin: 0 auto;
}
.article__more-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 38px);
}
.article__more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.article__more .blog-card__media,
.article__more .blog-card__body { display: block; }
.article__more .blog-card__media { aspect-ratio: 16 / 10; }

@media (max-width: 680px) {
  .article__cover { aspect-ratio: 4 / 3; }
  .article__more-grid { grid-template-columns: 1fr; }
}

/* Успешный заказ — делаем модалку уже */
.ckmodal__dialog:has(.ckmodal__success) {
  width: min(500px, calc(100vw - 32px));
}

.ckmodal__success {
  padding: 34px 24px;
}

.ckmodal__success-text {
  max-width: 250px;
}

.ckmodal__success .btn {
  min-width: 0;
  width: 100%;
  max-width: 220px;
}