/* ==========================================================================
   OUPES — официальный дистрибьютор в России
   Дизайн-система повторяет oupes.com: Poppins, акцент #00B6CC, скругления 24px,
   pill-кнопки, чёрный подвал. Кириллица подхватывается из Montserrat.
   Блок дистрибьютора — в фирменном стиле Frameless (чёрный, золото #CFA96D, тонкие линии).
   ========================================================================== */

:root {
  --accent: #00b6cc;
  --accent-dark: #0097aa;
  --ink: #1a1a1a;
  --ink-2: #4d4d4d;
  --muted: #8a8a8a;
  --line: rgba(26, 26, 26, .12);
  --bg: #fff;
  --bg-soft: #fafafa;
  --bg-gray: #f2f5f6;
  --badge-new: #803cee;
  --badge-hot: #f83a3a;
  --navy: #003d8b;
  --yellow: #fdbc3b;
  --hot: #ff0000;

  --radius: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --pill: 60px;
  --shadow: 0 5px 30px rgba(26, 26, 26, .08);
  --shadow-lg: 0 18px 50px rgba(26, 26, 26, .12);

  --container: 1280px;
  --gutter: clamp(16px, 3.4vw, 48px);
  --header-h: 68px;
  --announce-h: 44px;

  --font: "Poppins", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Frameless */
  --fl-bg: #000;
  --fl-gold: #cfa96d;
  --fl-line: rgba(255, 255, 255, .16);
  --fl-text: rgba(255, 255, 255, .72);
  --fl-font: "Onest", "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* Атрибут hidden должен побеждать display: flex/grid у компонентов (экраны «успеха», формы) */
[hidden] { display: none !important; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 28px;
  border-radius: var(--pill);
  font-size: 14px; font-weight: 500; line-height: 1.2; white-space: nowrap;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, .18); }
.btn--dark { background: #000; color: #fff; }
.btn--dark:hover { background: #333; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--sm { min-height: 40px; padding: 8px 20px; font-size: 13px; }
.btn--block { width: 100%; }

.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; position: relative; transition: background-color .2s; }
.icon-btn:hover { background: rgba(0, 0, 0, .05); }

.arrow-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; font-size: 18px;
  transition: background-color .2s, color .2s, border-color .2s;
}
.arrow-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.slider-arrows { display: flex; gap: 10px; }

.link-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 14px; color: var(--accent); }
.link-more svg { transition: transform .2s; }
a:hover .link-more svg { transform: translateX(4px); }

/* ---------- Анонс ---------- */
.announce {
  background: #1a1a1a; color: #fff;
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 14px; padding-inline: 12px;
}
.announce__arrow { font-size: 16px; width: 32px; height: 32px; display: grid; place-items: center; opacity: .9; }
.announce__arrow:hover { opacity: 1; }
.announce__track { position: relative; width: min(640px, 100%); height: 20px; overflow: hidden; text-align: center; }
.announce__item {
  position: absolute; inset: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transform: translateY(100%); transition: opacity .4s, transform .4s;
}
.announce__item.is-active { opacity: 1; transform: none; }
.announce__item.is-leaving { opacity: 0; transform: translateY(-100%); }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 2px 16px rgba(0, 0, 0, .04); }
.header__inner { display: flex; align-items: center; height: var(--header-h); gap: 24px; }
.header__burger { display: none; margin-left: -8px; }

.logo { display: inline-flex; flex-direction: column; gap: 3px; color: #141414; }
.logo svg { width: 96px; height: auto; }
.logo__dealer { font-size: 9.5px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 36px); }
.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  height: var(--header-h); font-size: 14px; white-space: nowrap;
  position: relative;
}
.nav__link svg { font-size: 14px; transition: transform .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 16px; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav__link:hover::after, .has-drop.is-open > .nav__link::after { transform: scaleX(1); }
.has-drop.is-open > .nav__link svg { transform: rotate(180deg); }
.nav__link--hot { color: var(--hot); }

.nav__item { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  background: #fff; border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
}
.has-drop.is-open > .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop--list { min-width: 240px; padding: 12px; display: flex; flex-direction: column; }
.drop--list a { padding: 10px 14px; border-radius: 10px; font-size: 14px; }
.drop--list a:hover { background: var(--bg-gray); color: var(--accent-dark); }
.nav__item:has(.drop--mega) { position: static; }
.drop--mega { position: fixed; left: 0; right: 0; transform: translateY(8px); top: calc(var(--header-top, 0px) + var(--header-h)); border-top: 1px solid var(--line); border-radius: 0; }
.has-drop.is-open > .drop--mega { transform: none; }
.drop__mega { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding-block: 28px 32px; }
.drop__cols { display: flex; flex-direction: column; gap: 4px; }
.drop__title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.drop__cols a { padding: 8px 0; font-size: 14px; }
.drop__cols a:hover { color: var(--accent-dark); }
.drop__products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mega-card { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); background: var(--bg-soft); transition: background-color .2s; text-align: left; }
.mega-card:hover { background: var(--bg-gray); }
.mega-card img { width: 64px; height: 64px; object-fit: contain; }
.mega-card b { display: block; font-size: 14px; font-weight: 600; }
.mega-card span { font-size: 12px; color: var(--muted); }

.header__icons { display: flex; align-items: center; gap: 4px; margin-right: -8px; }
.header__region { width: auto; padding-inline: 8px; gap: 4px; cursor: default; }
.header__region:hover { background: none; }
.header__region-label { font-size: 13px; font-weight: 500; }
.cart-count {
  position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; padding-inline: 5px;
  border-radius: 9px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 600; line-height: 18px; text-align: center;
}
.cart-count.bump { animation: bump .4s; }
@keyframes bump { 50% { transform: scale(1.35); } }

/* ---------- Слайдер ---------- */
.hero { position: relative; height: clamp(460px, 44.5vw, 640px); overflow: hidden; background: #0b1b2b; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; transform: scale(1.04); transition: transform 7s ease-out; }
.hero__slide.is-active .hero__img { transform: scale(1); }
.hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .15) 45%, transparent 70%); pointer-events: none; }
.hero__slide--light::after { background: linear-gradient(90deg, rgba(255, 255, 255, .55) 0%, rgba(255, 255, 255, .1) 45%, transparent 65%); }
.hero__content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; color: #fff; }
.hero__slide--light .hero__content { color: var(--ink); }
.hero__label { color: var(--yellow); font-size: clamp(12px, 1.1vw, 16px); font-weight: 600; margin-bottom: 8px; }
.hero__slide--light .hero__label { color: #d9480f; }
.hero__title { font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; max-width: 14ch; }
.hero__text { font-size: clamp(14px, 1.25vw, 18px); margin-top: 12px; max-width: 36ch; opacity: .95; }
.hero__content .btn { margin-top: 32px; }
.hero__slide--light .btn--white { background: #000; color: #fff; }
.hero__slide .hero__content > * { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.hero__slide.is-active .hero__content > * { opacity: 1; transform: none; }
.hero__slide.is-active .hero__content > :nth-child(2) { transition-delay: .08s; }
.hero__slide.is-active .hero__content > :nth-child(3) { transition-delay: .16s; }
.hero__slide.is-active .hero__content > :nth-child(4) { transition-delay: .24s; }
.hero__dots { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 12px; z-index: 2; }
.hero__dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .5); transition: width .3s, background-color .3s; }
.hero__dot.is-active { width: 28px; background: #fff; }

/* ---------- Секции ---------- */
.section { padding-block: clamp(48px, 6vw, 88px); }
.section--tight { padding-top: 0; }
.section--gray { background: var(--bg-gray); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.h2 { font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; line-height: 1.2; letter-spacing: -.02em; }
.h2 span { color: var(--accent); }
.h2--center { text-align: center; margin-bottom: clamp(28px, 3.5vw, 48px); }

/* ---------- Табы ---------- */
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-bottom: 24px; padding-bottom: 2px; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; padding: 9px 18px; border-radius: var(--pill); border: 1px solid var(--line); font-size: 13px; font-weight: 500; transition: all .2s; }
.tab:hover { border-color: var(--ink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Карточки товаров ---------- */
.product-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 20px) / 4);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding-bottom: 4px;
}
.product-track::-webkit-scrollbar { display: none; }
.pcard {
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 22px 24px 24px; position: relative; min-width: 0;
  transition: box-shadow .25s, transform .25s;
  animation: fadeIn .4s both;
}
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } }
.pcard__badges { display: flex; flex-wrap: wrap; gap: 6px; min-height: 24px; }
.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: var(--pill); font-size: 11px; font-weight: 600; letter-spacing: .02em; color: #fff; background: #000; text-transform: uppercase; }
.badge--new { background: var(--badge-new); }
.badge--hot { background: var(--badge-hot); }
.pcard__media { display: block; aspect-ratio: 1; margin: 8px auto 12px; width: 100%; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__series { font-size: 12px; color: var(--muted); }
.pcard__title { font-size: 18px; font-weight: 600; line-height: 1.3; margin-top: 2px; }
.pcard__title button { text-align: left; }
.pcard__title button:hover { color: var(--accent-dark); }
.pcard__specs { display: flex; gap: 8px; margin-top: 14px; }
.pcard__specs li { flex: 1; background: #fff; border-radius: 10px; padding: 8px 10px; }
.pcard__specs b { display: block; font-size: 15px; font-weight: 600; }
.pcard__specs span { font-size: 11px; color: var(--muted); }
.price { margin-top: 16px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
.price__now { font-size: 20px; font-weight: 600; }
.price__old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.price__req { font-size: 16px; font-weight: 600; }
.price__note { width: 100%; font-size: 12px; color: var(--muted); }
.pcard .btn { margin-top: 16px; }
.pcard__empty { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--muted); }

/* ---------- Сценарии ---------- */
.scenes {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "storm storm rv"
    "home  outdoor calc"
    "home  outdoor finder";
}
.scene { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 260px; color: #fff; isolation: isolate; background: #0b2330; }
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.scene:hover img { transform: scale(1.04); }
.scene::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 45%, transparent 70%); }
.scene__body { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; align-items: flex-start; gap: 8px; max-width: 420px; }
.scene h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.2; }
.scene p { font-size: 14px; opacity: .9; }
.scene .btn { margin-top: 10px; }
.scene__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); margin-top: 4px; }
.scene:hover .scene__link svg { transform: translateX(4px); }
.scene__link svg { transition: transform .2s; }
.scene--storm { grid-area: storm; min-height: 340px; }
.scene--rv { grid-area: rv; }
.scene--home { grid-area: home; min-height: 540px; }
.scene--outdoor { grid-area: outdoor; }
.scene--calc { grid-area: calc; }
.scene--finder { grid-area: finder; }
.scene--calc::before, .scene--finder::before { background: linear-gradient(90deg, rgba(5, 30, 40, .9) 0%, rgba(5, 30, 40, .55) 50%, transparent 78%); }
.scene--calc img, .scene--finder img { object-position: right center; }
.scene--calc .scene__body, .scene--finder .scene__body { max-width: 62%; }

/* ---------- Почему мы ---------- */
.why { background: linear-gradient(#eef2f3 82%, #fff 100%); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: 0 2px 10px rgba(0, 0, 0, .03); transition: transform .25s, box-shadow .25s; }
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(0, 182, 204, .1); color: var(--accent); font-size: 28px; margin-bottom: 24px; }
.why__card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.why__card p { font-size: 14px; color: var(--ink-2); }

/* ---------- Преимущества ---------- */
.benefits { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 20px) / 3); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.benefits::-webkit-scrollbar { display: none; }
.benefit { scroll-snap-align: start; border-radius: var(--radius); padding: clamp(24px, 2.6vw, 36px); min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.benefit h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; line-height: 1.25; max-width: 16ch; }
.benefit .btn { margin-top: auto; }
.benefit__tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill); background: rgba(255, 255, 255, .6); }
.benefit--gold { background: linear-gradient(90deg, #fff1d9 0%, #c7b794 100%); }
.benefit--teal { background: linear-gradient(90deg, #dff7fa 0%, #7fd6e1 100%); }
.benefit--blue { background: linear-gradient(90deg, #e6eefb 0%, #9db6e0 100%); }

/* ==========================================================================
   Блок дистрибьютора — Frameless studio
   ========================================================================== */
.dealer { background: var(--fl-bg); color: #fff; font-family: var(--fl-font); padding-block: clamp(56px, 7vw, 104px); }
.dealer__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--fl-line); }
.dealer__kicker { color: var(--fl-gold); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.dealer__kicker::before { content: ""; width: 32px; height: 1px; background: var(--fl-gold); }
.dealer__logo { width: 150px; height: auto; }
.dealer__title { font-weight: 300; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.12; letter-spacing: -.01em; margin-block: clamp(28px, 3.5vw, 48px); max-width: 20ch; }
.dealer__title em { font-style: normal; color: var(--fl-gold); }
.dealer__photo { position: relative; aspect-ratio: 1680 / 620; overflow: hidden; border: 1px solid var(--fl-line); }
.dealer__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); transition: transform 1.2s ease, filter .6s; }
.dealer__photo:hover img { transform: scale(1.03); filter: none; }
.dealer__photo-cap { position: absolute; left: 0; bottom: 0; padding: 12px 20px; background: rgba(0, 0, 0, .7); backdrop-filter: blur(8px); font-size: 13px; color: var(--fl-text); border-top: 1px solid var(--fl-line); border-right: 1px solid var(--fl-line); }
.dealer__grid { display: grid; grid-template-columns: 1fr 1.1fr; border: 1px solid var(--fl-line); border-top: 0; }
.dealer__about { padding: clamp(24px, 3vw, 48px); border-right: 1px solid var(--fl-line); display: flex; flex-direction: column; gap: 16px; }
.dealer__lead { font-size: clamp(18px, 1.6vw, 22px); font-weight: 400; line-height: 1.4; color: #fff; }
.dealer__about > p:not(.dealer__lead) { color: var(--fl-text); font-size: 15px; line-height: 1.6; font-weight: 300; }
.dealer__stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: auto; border-top: 1px solid var(--fl-line); padding-top: 24px; gap: 16px; }
.dealer__stats b { display: block; font-size: clamp(28px, 3vw, 44px); font-weight: 300; line-height: 1; color: var(--fl-gold); margin-bottom: 8px; }
.dealer__stats span { font-size: 13px; color: var(--fl-text); line-height: 1.35; display: block; }
.dealer__details { padding: clamp(24px, 3vw, 48px); }
.dealer__details-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.dealer__details h3 { font-size: 22px; font-weight: 400; }
.req { margin: 0; }
.req > div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding-block: 12px; border-top: 1px solid var(--fl-line); }
.req > div:last-child { border-bottom: 1px solid var(--fl-line); }
.req dt { font-size: 13px; color: rgba(255, 255, 255, .5); font-weight: 300; }
.req dd { margin: 0; font-size: 14px; line-height: 1.45; font-variant-numeric: tabular-nums; word-break: break-word; }
.req a:hover { color: var(--fl-gold); }
.dealer__contacts { display: flex; flex-wrap: wrap; align-items: stretch; border: 1px solid var(--fl-line); border-top: 0; }
.dealer__contact { display: inline-flex; align-items: center; gap: 10px; padding: 20px clamp(16px, 2vw, 28px); font-size: 15px; border-right: 1px solid var(--fl-line); transition: color .2s; }
.dealer__contact svg { font-size: 18px; color: var(--fl-gold); }
a.dealer__contact:hover { color: var(--fl-gold); }
.dealer__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.fl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 28px; background: #000; color: #fff;
  border: 1px solid #fff; border-radius: 0; font-family: var(--fl-font); font-size: 13px; font-weight: 400;
  transition: background-color .25s, color .25s, border-color .25s;
}
.fl-btn:hover { background: #fff; color: #000; }
.fl-btn--ghost { min-height: 38px; padding: 0 14px; border-color: var(--fl-line); font-size: 12px; }
.fl-btn--ghost:hover { background: transparent; color: var(--fl-gold); border-color: var(--fl-gold); }
.fl-btn--ghost svg { font-size: 15px; }
.fl-icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--fl-gold); color: var(--fl-gold); font-size: 20px; transition: background-color .25s, color .25s; }
.fl-icon:hover { background: var(--fl-gold); color: #000; }

/* ---------- Блог ---------- */
.blog { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; margin-top: 28px; }
.blog__main { border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); display: flex; flex-direction: column; }
.blog__main img { width: 100%; aspect-ratio: 764 / 428; object-fit: cover; transition: transform .6s; }
.blog__main:hover img { transform: scale(1.03); }
.blog__main-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.blog__main h3 { font-size: 22px; font-weight: 600; line-height: 1.3; }
.blog__main p { color: var(--ink-2); font-size: 14px; }
.blog__list { display: flex; flex-direction: column; gap: 16px; }
.blog__item { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: center; padding: 12px; border-radius: var(--radius-md); background: var(--bg-soft); transition: background-color .2s; flex: 1; }
.blog__item:hover { background: var(--bg-gray); }
.blog__item img { width: 100%; aspect-ratio: 764 / 428; object-fit: cover; border-radius: var(--radius-sm); }
.blog__item h3 { font-size: 16px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }

/* ---------- Сравнение ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); background: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, .03); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 14px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare th { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: var(--bg-soft); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr { transition: background-color .15s; }
.compare tbody tr:hover { background: #f7fbfc; }
.compare__model { display: flex; align-items: center; gap: 14px; font-weight: 600; white-space: nowrap; min-width: 190px; }
.compare__model img { width: 56px; height: 56px; object-fit: contain; }
.compare__num { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.compare__bar { display: block; height: 4px; border-radius: 2px; background: var(--bg-gray); margin-top: 6px; width: 120px; overflow: hidden; }
.compare__bar i { display: block; height: 100%; background: var(--accent); border-radius: 2px; }
.compare td:last-child { text-align: right; }

/* ---------- Помощь ---------- */
.help { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.help__card { border-radius: var(--radius); background: var(--bg-soft); padding: 36px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.help__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--accent); font-size: 28px; margin-bottom: 12px; box-shadow: 0 4px 16px rgba(0, 182, 204, .15); }
.help__card h3 { font-size: 20px; font-weight: 600; }
.help__card p { font-size: 14px; color: var(--ink-2); }
.help__note { font-size: 12px !important; color: var(--muted) !important; }
.help__card .btn, .help__big { margin-top: auto; padding-top: 16px; }
.help__card .btn { padding-top: 12px; margin-top: 16px; }
.help__big { font-size: 18px; font-weight: 600; color: var(--ink); transition: color .2s; }
.help__big:hover { color: var(--accent); }

/* ---------- Подписка ---------- */
.subscribe { padding-block: clamp(48px, 6vw, 80px); background: linear-gradient(180deg, #fff 0%, #eef8fa 100%); }
.subscribe__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.subscribe .h2--center { margin-bottom: 12px; }
.subscribe__inner > p { color: var(--ink-2); font-size: 15px; }
.subscribe__form { display: flex; gap: 10px; margin-top: 28px; width: min(520px, 100%); }
.subscribe__form input { flex: 1; min-width: 0; height: 52px; padding: 0 24px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; outline: none; transition: border-color .2s; }
.subscribe__form input:focus { border-color: var(--accent); }
.subscribe__form input.is-invalid { border-color: #f83a3a; }
.subscribe__form .btn { height: 52px; }
.subscribe__legal { margin-top: 14px; font-size: 12px; color: var(--muted); }
.subscribe__legal a { text-decoration: underline; }

/* ---------- Подвал ---------- */
.footer { background: #000; color: #fff; padding-top: 64px; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 48px; }
.footer__logo { width: 112px; height: 24px; margin-bottom: 20px; }
.footer__brand p { color: rgba(255, 255, 255, .6); font-size: 13px; line-height: 1.6; max-width: 32ch; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); font-size: 18px; transition: background-color .2s, border-color .2s; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__title { display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; cursor: default; }
.footer__title svg { display: none; }
.footer__col li { margin-bottom: 12px; color: rgba(255, 255, 255, .7); }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 24px; display: flex; flex-direction: column; gap: 6px; color: rgba(255, 255, 255, .5); font-size: 12px; }

/* ---------- Drawer / Modal ---------- */
.drawer, .modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none; }
.drawer::before, .modal::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); opacity: 0; transition: opacity .3s; }
.drawer.is-open, .modal.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open::before, .modal.is-open::before { opacity: 1; }
.drawer__panel { position: absolute; top: 0; bottom: 0; width: min(440px, 100%); background: #fff; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
.drawer--right .drawer__panel { right: 0; transform: translateX(100%); }
.drawer--left .drawer__panel { left: 0; transform: translateX(-100%); width: min(360px, 88%); }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 16px 24px; border-bottom: 1px solid var(--line); }
.drawer__title { font-size: 18px; font-weight: 600; }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px 32px; }

.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; align-items: center; padding: 10px; border-radius: var(--radius-sm); background: var(--bg-soft); }
.cart-item img { width: 72px; height: 72px; object-fit: contain; }
.cart-item b { font-size: 14px; font-weight: 600; display: block; }
.cart-item small { font-size: 12px; color: var(--muted); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--pill); margin-top: 6px; background: #fff; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 14px; }
.qty span { min-width: 22px; text-align: center; font-size: 13px; font-weight: 500; }
.cart-item__remove { font-size: 18px; color: var(--muted); width: 32px; height: 32px; }
.cart-item__remove:hover { color: var(--ink); }
.cart-empty { padding: 20px; border-radius: var(--radius-sm); background: var(--bg-soft); font-size: 14px; color: var(--ink-2); text-align: center; }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form__intro { font-size: 14px; color: var(--ink-2); }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; }
.field input, .field textarea { border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; font-size: 15px; font-weight: 400; outline: none; resize: vertical; transition: border-color .2s; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field .is-invalid { border-color: #f83a3a; }
.check { display: flex; gap: 10px; font-size: 12px; color: var(--ink-2); line-height: 1.45; cursor: pointer; }
.check input { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--accent); margin: 0; }
.check a { text-decoration: underline; }
.form-error { font-size: 13px; color: #f83a3a; }
.lead-done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 24px; }
.lead-done__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(0, 182, 204, .12); color: var(--accent); font-size: 32px; }
.lead-done h3 { font-size: 20px; font-weight: 600; }
.lead-done p { font-size: 14px; color: var(--ink-2); }
.lead-done a { color: var(--accent-dark); font-weight: 500; }

.mnav { display: flex; flex-direction: column; padding: 8px 24px; }
.mnav__link, .mnav__group summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 500; cursor: pointer; list-style: none; }
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__group[open] summary svg { transform: rotate(180deg); }
.mnav__group summary svg { transition: transform .2s; }
.mnav__group a { display: block; padding: 10px 0 10px 12px; font-size: 14px; color: var(--ink-2); }
.mnav__link--hot { color: var(--hot); }
.mnav__contacts { margin-top: auto; padding: 24px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; background: var(--bg-soft); }
.mnav__contacts a:first-child { font-size: 18px; font-weight: 600; }
.mnav__contacts span { color: var(--muted); font-size: 13px; }

.modal { display: grid; place-items: center; padding: 16px; }
.modal__panel { position: relative; background: #fff; border-radius: var(--radius); width: min(720px, 100%); max-height: calc(100dvh - 32px); overflow-y: auto; padding: clamp(24px, 3vw, 40px); transform: translateY(20px) scale(.98); opacity: 0; transition: transform .3s, opacity .3s; }
.modal__panel--wide { width: min(1000px, 100%); }
.modal.is-open .modal__panel { transform: none; opacity: 1; }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 1; }
.modal__title { font-size: 26px; font-weight: 600; letter-spacing: -.02em; padding-right: 40px; }
.modal__sub { color: var(--ink-2); font-size: 14px; margin-top: 6px; }

.quick { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.quick__media { background: var(--bg-soft); border-radius: var(--radius-md); aspect-ratio: 1; display: grid; place-items: center; padding: 24px; }
.quick__media img { width: 100%; height: 100%; object-fit: contain; }
.quick__series { font-size: 13px; color: var(--muted); margin-top: 10px; }
.quick__title { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; margin-top: 2px; }
.quick__tagline { font-size: 15px; color: var(--ink-2); margin-top: 8px; }
.quick__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.quick__specs li { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px 16px; }
.quick__specs b { display: block; font-size: 20px; font-weight: 600; }
.quick__specs span { font-size: 12px; color: var(--muted); }
.quick__uses { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.quick__uses span { font-size: 12px; padding: 5px 12px; border-radius: var(--pill); background: rgba(0, 182, 204, .1); color: var(--accent-dark); font-weight: 500; }
.quick__actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.quick__actions .btn { flex: 1; }
.quick__seller { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.quick__seller svg { font-size: 16px; color: var(--accent); margin-top: 1px; }
.quick__seller a { color: var(--ink); text-decoration: underline; }

.calc { margin-top: 20px; }
.calc__list { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.calc__row { display: grid; grid-template-columns: 1fr 110px 110px; gap: 12px; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.calc__row:last-child { border-bottom: 0; }
.calc__row--head { background: var(--bg-soft); font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.calc__row label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.calc__row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
.calc__row input[type="number"] { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; outline: none; }
.calc__row input[type="number"]:focus { border-color: var(--accent); }
.calc__row input:disabled { opacity: .4; }
.calc__result { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc__stat { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 16px; }
.calc__stat b { display: block; font-size: 24px; font-weight: 600; }
.calc__stat span { font-size: 12px; color: var(--muted); }
.calc__rec { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--accent); background: rgba(0, 182, 204, .04); }
.calc__rec img { width: 72px; height: 72px; object-fit: contain; }
.calc__rec div { flex: 1; min-width: 0; }
.calc__rec small { font-size: 12px; color: var(--accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.calc__rec b { display: block; font-size: 17px; }
.calc__rec p { font-size: 13px; color: var(--ink-2); }
.calc__note { grid-column: 1 / -1; font-size: 12px; color: var(--muted); }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 200; transform: translate(-50%, 20px); padding: 12px 20px; border-radius: var(--pill); background: #1a1a1a; color: #fff; font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; max-width: calc(100% - 32px); text-align: center; }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Появление при скролле ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Адаптив
   ========================================================================== */
@media (max-width: 1180px) {
  .nav__list { gap: 18px; }
  .logo__dealer { display: none; }
  .product-track { grid-auto-columns: calc((100% - 2 * 20px) / 3); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .drop__products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-h: 60px; }
  .header__burger { display: inline-flex; }
  .nav { display: none; }
  .header__inner { justify-content: space-between; }
  .logo { position: absolute; left: 50%; transform: translateX(-50%); align-items: center; }
  .logo__dealer { display: block; font-size: 8.5px; }
  .header__region { display: none; }
  .dealer__grid { grid-template-columns: 1fr; }
  .dealer__about { border-right: 0; border-bottom: 1px solid var(--fl-line); }
  .blog { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .scenes {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "storm storm"
      "home outdoor"
      "rv rv"
      "calc finder";
  }
  .scene--home, .scene--outdoor { min-height: 420px; }
  .product-track { grid-auto-columns: calc((100% - 20px) / 2); }
  .benefits { grid-auto-columns: 78%; }
  .help { grid-template-columns: 1fr; }
  .quick { grid-template-columns: 1fr; }
  .quick__media { aspect-ratio: 4 / 3; }
  .dealer__contacts { flex-direction: column; }
  .dealer__contact { border-right: 0; border-bottom: 1px solid var(--fl-line); }
  .dealer__actions { margin-left: 0; padding: 16px; }
  .dealer__actions .fl-btn { flex: 1; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .announce { font-size: 12px; gap: 4px; padding-inline: 4px; }
  .logo__geo { display: none; }
  .hero { height: 540px; }
  .hero__img { object-position: 72% center; }
  .hero__slide::after { background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 55%, transparent 80%); }
  .hero__slide--light::after { background: linear-gradient(180deg, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, .1) 50%, transparent 75%); }
  .hero__content { justify-content: flex-start; padding-top: 48px; }
  .section__head .slider-arrows { display: none; }
  .product-track { grid-auto-columns: 78%; gap: 12px; }
  .pcard { padding: 18px; }
  .scenes { grid-template-columns: 1fr; grid-template-areas: "storm" "home" "outdoor" "rv" "calc" "finder"; gap: 12px; }
  .scene, .scene--storm { min-height: 280px; }
  .scene--calc, .scene--finder { min-height: 200px; }
  .scene--home, .scene--outdoor { min-height: 360px; }
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why__card { display: grid; grid-template-columns: 48px 1fr; gap: 4px 16px; padding: 20px; }
  .why__icon { width: 48px; height: 48px; font-size: 24px; margin: 0; grid-row: span 2; }
  .benefits { grid-auto-columns: 86%; gap: 12px; }
  .benefit { min-height: 240px; }
  .dealer__top { flex-direction: column-reverse; align-items: flex-start; }
  .dealer__logo { width: 120px; }
  .dealer__photo { aspect-ratio: 4 / 3; }
  .dealer__stats { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .dealer__stats li { display: flex; align-items: baseline; gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--fl-line); }
  .dealer__stats li:last-child { border-bottom: 0; }
  .dealer__stats b { min-width: 72px; margin: 0; font-size: 32px; }
  .req > div { grid-template-columns: 1fr; gap: 2px; }
  .dealer__details-head { flex-wrap: wrap; }
  .blog__item { grid-template-columns: 120px 1fr; gap: 14px; }
  .blog__main-body { padding: 20px; }
  .subscribe__form { flex-direction: column; }
  .footer { padding-top: 48px; }
  .footer__grid { grid-template-columns: 1fr; gap: 0; }
  .footer__brand { margin-bottom: 24px; }
  .footer__col { border-top: 1px solid rgba(255, 255, 255, .12); }
  .footer__title { margin: 0; padding-block: 18px; cursor: pointer; }
  .footer__title svg { display: block; font-size: 16px; transition: transform .2s; }
  .footer__title--static { cursor: default; }
  .footer__col:not(.footer__col--contacts) ul { display: none; padding-bottom: 12px; }
  .footer__col.is-open ul { display: block; }
  .footer__col.is-open .footer__title svg { transform: rotate(180deg); }
  .footer__col--contacts ul { padding-bottom: 16px; }
  .calc__row { grid-template-columns: 1fr 76px 64px; padding: 10px 12px; gap: 8px; font-size: 13px; }
  .calc__result { grid-template-columns: 1fr; }
  .modal { padding: 0; place-items: end center; }
  .modal__panel { border-radius: var(--radius) var(--radius) 0 0; max-height: 92dvh; }
}

/* Фото товаров на белом фоне сливаются с фоном карточек */
.pcard__media img, .quick__media img, .mega-card img, .compare__model img, .cart-item img, .calc__rec img { mix-blend-mode: multiply; }

/* ==========================================================================
   Оптовый прайс
   ========================================================================== */
.wholesale {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(24px, 3vw, 48px);
  border-radius: var(--radius); padding: clamp(24px, 3.4vw, 48px);
  background:
    radial-gradient(circle at 12% 110%, rgba(0, 182, 204, .35) 0%, transparent 45%),
    linear-gradient(135deg, #05242e 0%, #0a3a4a 100%);
  color: #fff;
}
.wholesale__info { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-block: 8px; }
.wholesale__tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill); background: rgba(0, 182, 204, .18); color: #7fe3ef; }
.wholesale__title { font-size: clamp(26px, 2.8vw, 40px); font-weight: 600; line-height: 1.2; letter-spacing: -.02em; }
.wholesale__title span { color: var(--accent); }
.wholesale__lead { font-size: 15px; color: rgba(255, 255, 255, .75); max-width: 44ch; }
.wholesale__list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.wholesale__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.wholesale__list svg { font-size: 14px; width: 24px; height: 24px; padding: 5px; border-radius: 50%; background: var(--accent); color: #fff; }
.wholesale__direct { margin-top: auto; padding-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.wholesale__direct span { width: 100%; }
.wholesale__direct a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 500; transition: color .2s; }
.wholesale__direct a:hover { color: var(--accent); }
.wholesale__direct svg { font-size: 18px; color: var(--accent); }

.wholesale__panel { background: #fff; color: var(--ink); border-radius: var(--radius-md); padding: clamp(20px, 2.4vw, 32px); }
.wholesale__form { display: flex; flex-direction: column; gap: 16px; }
.wholesale__form .btn { align-self: flex-start; }
.wholesale__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 16px; }
.wholesale__form .field input, .wholesale__form .field select, .wholesale__form .field textarea { width: 100%; min-width: 0; }
.field select {
  appearance: none; border: 1px solid var(--line); border-radius: 8px; padding: 12px 40px 12px 14px;
  font-size: 15px; font-weight: 400; outline: none; cursor: pointer; transition: border-color .2s;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center / 16px;
}
.field select:focus { border-color: var(--accent); }

.chips { border: 0; margin: 0; padding: 0; min-width: 0; }
.chips legend { padding: 0; margin-bottom: 8px; font-size: 13px; font-weight: 500; }
.chips legend small { font-weight: 400; color: var(--muted); font-size: 12px; }
.chips__list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: var(--pill); border: 1px solid var(--line); font-size: 13px; font-weight: 500; transition: all .2s; }
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.wholesale__panel .lead-done { padding-block: 32px; }

@media (max-width: 1024px) {
  .wholesale { grid-template-columns: minmax(0, 1fr); }
  .wholesale__direct { margin-top: 8px; }
}
@media (max-width: 640px) {
  .wholesale { padding: 20px 16px 16px; margin-inline: calc(var(--gutter) * -0.5); }
  .wholesale__grid { grid-template-columns: minmax(0, 1fr); }
  .wholesale__form .btn { align-self: stretch; }
}
