
@font-face {
  font-family: Onest;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/onest.woff2) format("woff2");
}
:root {
  --ink:        #19191b;   /* почти чёрный — текст и кнопки */
  --ink-soft:   #6b6b70;   /* приглушённый текст */
  --muted:      #6f7175;   /* подписи */
  --line:       #e5e5e5;   /* линии и рамки */
  --soft:       #fbf6f3;   /* фон мягких блоков — тёплый, не серый */
  --cta:        #d81b7a;   /* кнопка «в кошик» — и только она */
  --gold:       #c08a2a;   /* плашка скидки и мелкие акценты */
  --gold-text:  #8a6318;   /* золотой, годный для мелкого текста: 5.41 */
  --pink:       #ed2a8a;
  --bg:         #ffffff;
  --pill:       40px;
  --card:       24px;
  --chip:       8px;
  --page:       1200px;
}
*, *::before, *::after { box-sizing: border-box; }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
:focus {
  scroll-margin-top: 80px;
  scroll-margin-bottom: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Onest, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-weight: 500; letter-spacing: -.01em; }
.ph {
  display: grid;
  place-items: center;
  aspect-ratio: var(--w) / var(--h);
  width: 100%;
  background: repeating-linear-gradient(
    45deg, #f4f2ef, #f4f2ef 10px, #ebe8e3 10px, #ebe8e3 20px);
  border: 1px dashed var(--line);
  border-radius: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;   /* цифры одной ширины, не пляшут */
  text-align: center;
  line-height: 1.4;
  user-select: none;
}
.ph--round { border-radius: 50%; }
.ph--flat  { border-radius: 0; }
.page {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 20px 140px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 28px;
  max-width: var(--page);
  margin: 0 auto;
  padding: 20px;
}
.topbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.topbar__logo-mark {
  display: block;
  width: 171px;
  aspect-ratio: 361 / 84.6;
  overflow: hidden;
}
.topbar__logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.topbar__logo-kind,
.founder__kind {
  background: var(--pink);
  color: #fff;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  padding: 4px 11px 5px;
  padding-right: calc(11px + .2em);
}
.mainnav {
  display: flex;
  gap: 26px;
  font-size: 15px;
}
.mainnav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}
.mainnav a:hover { color: var(--ink); }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__tel {
  display: none;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .topbar__tel { display: inline; }
}
.search {
  order: 3;
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding-left: 14px;
  border: 2px solid var(--line);
  border-radius: var(--pill);
  background: var(--bg);
  transition: border-color .25s;
}
.search:focus-within { border-color: var(--cta); }
.search__input {
  flex: 1;
  min-width: 0;
  padding: 9px 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.search__input::placeholder { color: var(--muted); }
.search__input:focus { outline: none; }
.search__input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.search__input::-webkit-search-cancel-button { display: none; }
.search__btn {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 2px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s;
}
.search__btn:hover { background: var(--soft); }
.search__btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
@media (max-width: 599px) {
  .topbar { column-gap: 20px; }
  .topbar__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar__logo-mark {
    width: min(145px, 36vw);
    aspect-ratio: 361 / 47;
  }
  .topbar__logo-kind {
    font-size: 10px;
    padding: 3px 9px 4px;
    padding-right: calc(9px + .2em);
  }
  .topbar .topbar__right { gap: 12px; }
  .topbar .lang { gap: 4px; }
  .topbar .lang__btn { padding: 6px 8px; }
  .topbar::before {
    content: '';
    order: 1;
    flex: 1 0 100%;
    height: 0;
  }
  .mainnav { order: 2; }
  .search { order: 3; flex: 1 1 200px; min-width: 0; }
}
.trustbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.trustbar__item { white-space: nowrap; }
.trustbar__dot { color: var(--muted); }
.trustbar__item--link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.trustbar__item--link:hover { border-bottom-color: var(--ink); }
.topbar__left { display: none; }
.brands__row .is-clone { display: none; }
.iconbtn {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.iconbtn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.iconbtn:hover { background: var(--soft); }
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 20px 28px;
  background: var(--bg);
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer__item {
  padding: 14px 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.drawer__item--main {
  font-size: 21px;
  font-weight: 700;
  padding-top: 4px;
}
.drawer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.drawer__tel {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
body.is-locked { overflow: hidden; }
@media (min-width: 1000px) {
  .trustbar { display: none; }
}
@media (max-width: 999px) {
  .topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
    padding: 10px 16px;
  }
  .topbar__left { display: flex; gap: 2px; }
  .iconbtn { display: grid; }
  .topbar::before { display: none; }
  .topbar__logo {
    justify-self: center;
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }
  .topbar__logo-mark {
    width: min(150px, 40vw);
    aspect-ratio: 361 / 84.6;
  }
  .topbar__logo-kind {
    font-size: 9px;
    letter-spacing: .16em;
    padding: 3px 8px 4px;
    padding-right: calc(8px + .16em);
  }
  .mainnav { display: none; }
  .topbar__right .lang { display: none; }
  .topbar__right { justify-self: end; gap: 0; }
  .search {
    display: none;
    grid-column: 1 / -1;
    margin-top: 10px;
  }
  .search.is-open { display: flex; }
  .drawer { top: 60px; }
}
@media (max-width: 760px) {
  .brands .brands__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 26px;
    width: max-content;
    overflow: visible;
  }
  .brands .brands__row .is-clone { display: block; }
  .brands .brands__row.is-running { animation: brandsRun 26s linear infinite; }
  @keyframes brandsRun {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .brands { overflow: hidden; }
  .rail > .card { flex-basis: calc((100% - 20px) / 2); }
  .cat-main .grid { grid-template-columns: repeat(2, 1fr); }
  .rail .card__foot,
  .cat-main .card__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .rail .card__buy,
  .cat-main .card__buy {
    width: 100%;
    padding: 0 10px;
  }
  @media (prefers-reduced-motion: reduce) {
    .brands .brands__row.is-running { animation: none; }
    .brands .brands__row { overflow-x: auto; }
  }
  .brands .brands__row img {
    flex: 0 0 auto;
    width: 104px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .88;
  }
  .brands {
    background: var(--ink);
    margin-left: -20px;
    margin-right: -20px;
    padding: 18px 20px;
  }
  .brands__title {
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
  }
}
@media (max-width: 599px) {
  .topbar__logo-mark { width: min(122px, 34vw); }
  .topbar__logo { gap: 5px; }
  .topbar__logo-kind {
    font-size: 8px;
    padding: 2px 6px 3px;
    padding-right: calc(6px + .16em);
  }
  .trustbar { gap: 6px; font-size: 12px; }
}
@media (min-width: 1000px) {
  .search {
    order: 0;
    flex: 1 1 200px;
    margin: 0;
  }
}
.lang { display: flex; gap: 6px; }
.lang__btn {
  border: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--chip);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s;
}
.lang__btn:hover { border-color: var(--ink); }
.lang__btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.crumbs a,
.crumbs__current,
.topbar__tel,
.mainnav a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0 28px;
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--ink); }
.crumbs__current { color: var(--ink); }
.buybox { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .buybox {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
}
@media (min-width: 900px) {
  .gallery {
    position: sticky;
    top: 24px;
  }
}
.gallery__main {
  background: var(--soft);
  border-radius: var(--card);
  overflow: hidden;
}
.gallery__thumbs { display: flex; gap: 10px; margin-top: 14px; }
.thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--chip);
  background: var(--soft);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s;
}
.thumb:hover { border-color: var(--ink); }
.thumb.is-active { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.offer__title {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
}
@media (min-width: 640px) {
  .offer__title { font-size: 40px; }
}
.offer__subtitle {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}
.offer__format {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
}
.dot { margin: 0 8px; color: var(--muted); }
.offer__rating { margin: 10px 0 0; font-size: 15px; }
.offer__rating--empty { color: var(--muted); }
.offer__lead { margin: 20px 0 28px; font-size: 17px; }
.buy, .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 48px;
  padding: 0 24px;
  border: 2px solid var(--cta);
  border-radius: var(--pill);
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
@media (hover: hover) {
  .buy:hover, .btn:hover {
    background: #fff;
    color: var(--cta);
  }
}
.buy:active, .btn:active { transform: translateY(1px); }
.buy__sep {
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: .3;
}
.buy__price { font-variant-numeric: tabular-nums; }
.buy.is-added {
  background: #fff;
  color: var(--cta);
}
.perks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.perks li { padding: 5px 0 5px 20px; position: relative; }
.perks li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink);
}
.perks strong { color: var(--ink); font-weight: 600; }
.marks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
  padding: 24px;
  background: var(--soft);
  border-radius: var(--card);
}
@media (min-width: 720px) {
  .marks { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.band {
  position: relative;
  margin-top: 48px;
  border-radius: var(--card);
  overflow: hidden;
  isolation: isolate;
}
.band__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 35%;
}
@media (min-width: 720px) {
  .band__img { height: 380px; }
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,25,27,.85) 0%, rgba(25,25,27,.35) 45%, transparent 75%);
}
.band__text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}
@media (min-width: 720px) {
  .band__text { padding: 40px; max-width: 640px; }
}
.band__text h2 { margin: 0; font-size: 23px; }
@media (min-width: 720px) {
  .band__text h2 { font-size: 32px; }
}
.band__text p {
  margin: 10px 0 0;
  font-size: 16px;
  color: rgba(255,255,255,.82);
}
.descr {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.descr h2 { font-size: 22px; margin: 0 0 16px; }
.descr p { margin: 0 0 14px; font-size: 16px; }
.descr p:last-child { margin-bottom: 0; }
.descr__lead {
  font-size: 17px;
  line-height: 1.5;
}
.details { margin-top: 36px; }
.faq { margin-top: 10px; }
@media (min-width: 1000px) {
  .details,
  .faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .faq { border-top: 1px solid var(--line); }
  .details .fold,
  .faq .fold {
    border-top: none;
    border-bottom: 1px solid var(--line);
  }
  .details .fold:has(.fold__toggle:checked),
  .faq .fold:has(.fold__toggle:checked) { grid-column: 1 / -1; }
  .details .fold__head,
  .faq .fold__head { padding: 10px 2px; }
  .details { margin-top: 20px; }
}
.fold { border-top: 1px solid var(--line); }
.details .fold:last-child,
.faq .fold:last-child { border-bottom: 1px solid var(--line); }
.faq .fold,
.details .fold {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  transition: background .25s, border-color .25s;
}
.faq, .details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq { border-top: 0; }
.faq .fold .fold__head,
.details .fold .fold__head { border-top: 0; font-size: 16px; font-weight: 600; }
.faq .fold:has(.fold__toggle:checked),
.details .fold:has(.fold__toggle:checked) { background: var(--soft); border-color: transparent; }
.fold__toggle {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.fold__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 2px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}
.fold__head::after {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center/11px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/1.5px 11px no-repeat;
  transition: transform .3s, border-color .25s;
}
.fold__head:hover::after { border-color: var(--ink); }
.fold__toggle:checked + .fold__head::after {
  background: linear-gradient(var(--ink), var(--ink)) center/11px 1.5px no-repeat;
  transform: rotate(180deg);
}
.fold__toggle:focus-visible + .fold__head {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: 6px;
}
.fold__body { display: none; padding: 0 2px 22px; max-width: 72ch; }
.fold__toggle:checked ~ .fold__body { display: block; }
.fold__toggle:checked ~ .fold__body--split { display: grid; gap: 20px; }
@media (min-width: 720px) {
  .fold__toggle:checked ~ .fold__body--split {
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
  }
}
.fold__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--chip);
}
.fold__body p { margin: 0 0 12px; }
.fold__body p:last-child { margin-bottom: 0; }
.fold__note { margin: 0 0 16px !important; font-size: 14px; color: var(--muted); }
.fold__aux  { margin: 18px 0 0 !important; font-size: 14px; color: var(--ink-soft); }
.ing { width: 100%; border-collapse: collapse; font-size: 16px; }
.ing td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.ing tr:last-child td { border-bottom: 0; }
.ing td:last-child {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.parts { margin: 0; }
.parts dt {
  font-weight: 600;
  font-size: 16px;
  margin-top: 18px;
}
.parts dt:first-child { margin-top: 0; }
.parts dd {
  margin: 6px 0 0;
  padding: 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 6px 0 6px 28px; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}
.delivery {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--soft);
  border-radius: var(--card);
  font-size: 14px;
  color: var(--ink-soft);
}
.delivery .ticks li { padding: 5px 0 5px 26px; }
.delivery .ticks li::before { top: 12px; }
.delivery strong { color: var(--ink); font-weight: 600; }
.delivery__more {
  margin: 10px 0 0;
  padding-left: 26px;
}
.delivery__more a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s;
}
.delivery__more a:hover { border-color: var(--ink); }
.textlink {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s;
}
.textlink:hover { border-color: var(--ink); }
.ticks--warn li::before {
  width: 5px; height: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  transform: none;
  top: 15px;
  left: 5px;
}
.also { margin-top: 56px; }
@media (min-width: 1000px) {
  .also { margin-top: 36px; }
}
.also h2 { font-size: 28px; margin: 0 0 24px; }
.grid--also { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.tovar__desc .sib__note {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.cta {
  margin-top: 56px;
  padding: 40px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--card);
  text-align: center;
}
.cta__text { margin: 0 0 20px; font-size: 19px; font-weight: 500; }
.cta .buy {
  max-width: 360px;
  margin: 0 auto;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
@media (hover: hover) {
  .cta .buy:hover { background: transparent; color: #fff; }
}
.faq h2 { font-size: 28px; margin: 0 0 10px; }
.cat-head { max-width: 640px; margin-bottom: 28px; }
.cat-head h1 { font-size: 32px; margin: 0; }
@media (min-width: 640px) {
  .cat-head h1 { font-size: 44px; }
}
.cat-head__lead { margin: 12px 0 0; color: var(--ink-soft); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
@media (min-width: 1040px) {
  .filters:not(.filters--sub) .chip {
    flex: 1 1 auto;
    max-width: 260px;
  }
}
@media (max-width: 760px) {
  .filters:not(.filters--sub) {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -20px 20px;
    padding: 0 20px;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent);
            mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent);
  }
  .filters:not(.filters--sub)::-webkit-scrollbar { display: none; }
  .filters:not(.filters--sub) .chip { flex: 0 0 auto; }
  .filters:not(.filters--sub).is-row-end {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.chip {
  border: 2px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--pill);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.cat-layout { display: grid; gap: 28px; }
@media (min-width: 1000px) {
  .cat-layout {
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
  }
}
.side__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.side__title { margin: 0; font-size: 17px; font-weight: 600; }
.side__reset {
  border: 0;
  background: none;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.side__reset:hover { color: var(--ink); }
.side__reset[hidden] { display: none; }
.fgroup { padding: 16px 0; border-top: 1px solid var(--line); }
.fgroup:first-child { border-top: 0; padding-top: 0; }
.fgroup__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
}
.fopt input {
  flex: none;
  width: 18px;
  height: 18px;
  accent-color: var(--cta);   /* галочка того же цвета, что кнопка покупки */
  cursor: pointer;
}
.fopt__name { flex: 1; }
.fopt__n {
  flex: none;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.fopt:hover .fopt__name { text-decoration: underline; }
.fprice {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fprice__input {
  flex: 1 1 0;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.fprice__input:focus { outline: none; border-color: var(--ink); }
.fprice__input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.fprice__input::placeholder { color: var(--muted); }
.fprice__input::-webkit-outer-spin-button,
.fprice__input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.fprice__input { appearance: textfield; -moz-appearance: textfield; }
.fprice__dash,
.fprice__cur { flex: none; color: var(--muted); font-size: 14px; }
.fgroup__more {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--cta);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.fgroup__more:hover { text-decoration: underline; }
.side-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 10px 18px;
  border: 2px solid var(--line);
  border-radius: var(--pill);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.side-toggle:hover { border-color: var(--ink); }
.side-toggle__n {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--pill);
  background: var(--cta);
  color: #fff;
  font-size: 13px;
}
.side-toggle__n[hidden] { display: none; }
.side__done { display: none; }
@media (max-width: 999px) {
  .side {
    display: none;
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--card);
  }
  .side.is-open { display: block; }
  .side__done {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border: 0;
    border-radius: var(--pill);
    background: var(--cta);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
  }
}
@media (min-width: 1000px) {
  .side-toggle { display: none; }
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px 20px;
}
.card { display: flex; flex-direction: column; }
.card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.card__pic {
  background: var(--soft);
  border-radius: var(--card);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 14px;
}
.card__pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s;
}
@media (hover: hover) {
  .card__link:hover .card__pic img { transform: scale(1.04); }
}
.card--scene .card__pic { background: none; }
.card--scene .card__pic img { mix-blend-mode: normal; object-fit: cover; }
@media (max-width: 760px) {
  .card__pic {
    background: var(--tint, var(--soft));
    isolation: isolate;
  }
  .card__pic img { mix-blend-mode: multiply; }
}
.card__benefit {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.card__brand {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.card__name {
  font-size: 17px;
  font-weight: 600;
  margin: 4px 0 0;
  line-height: 1.3;
}
.card__sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
}
.card__format { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.card__prices { display: flex; flex-direction: column; line-height: 1.25; }
.card__price {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.card__perday { font-size: 12px; color: var(--muted); }
.card__save {
  margin-top: 3px;
  font-size: 12px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.card__buy {
  flex-shrink: 0;
  height: 40px;
  padding: 0 18px;
  border: 2px solid var(--cta);
  border-radius: var(--pill);
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s, color .3s;
}
@media (hover: hover) {
  .card__buy:hover { background: #fff; color: var(--cta); }
}
.card__buy.is-added { background: #fff; color: var(--cta); }
.cat-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
}
.cat-empty[hidden] { display: none; }
.cartlink {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px;
  color: var(--ink);
}
.cartlink svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cartlink__count {
  position: absolute;
  top: -2px; right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.cartlink__count[hidden] { display: none; }
.cart-title { font-size: 32px; margin: 0 0 28px; }
@media (min-width: 640px) {
  .cart-title { font-size: 40px; }
}
.cart-empty { padding: 40px 0 80px; }
.cart-empty[hidden] { display: none; }
.cart-empty p { margin: 0 0 20px; color: var(--muted); font-size: 18px; }
.btn--inline { display: inline-flex; width: auto; text-decoration: none; }
.cart-layout { display: grid; gap: 36px; }
.cart-layout[hidden] { display: none; }
@media (min-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
  }
}
.cline {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  grid-template-areas:
    "pic info del"
    "pic qty sum";
  gap: 10px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
@media (min-width: 640px) {
  .cline {
    grid-template-columns: 96px 1fr auto auto 32px;
    grid-template-areas: "pic info qty sum del";
    gap: 20px;
  }
}
.cline:first-child { padding-top: 0; }
.cline__pic {
  grid-area: pic;
  display: block;
  background: var(--soft);
  border-radius: var(--chip);
  overflow: hidden;
  aspect-ratio: 1;
}
.cline__pic img { width: 100%; height: 100%; object-fit: contain; }
.cline__info { grid-area: info; min-width: 0; }
.cline__name {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
.cline__name:hover { text-decoration: underline; }
.cline__format { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.cline__unit   { margin: 2px 0 0; font-size: 13px; color: var(--ink-soft); }
.qty {
  grid-area: qty;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 2px solid var(--line);
  border-radius: var(--pill);
  padding: 2px;
  width: fit-content;
}
.qty__btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.qty__btn:hover { background: var(--soft); }
.qty__val {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.cline__sum {
  grid-area: sum;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.cline__del {
  grid-area: del;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.cline__del:hover { color: var(--ink); background: var(--soft); }
.cart-sum {
  padding: 28px;
  background: var(--soft);
  border-radius: var(--card);
}
@media (min-width: 900px) {
  .cart-sum { position: sticky; top: 24px; }
}
.cart-sum h2 { font-size: 20px; margin: 0 0 20px; }
.cart-sum__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.cart-sum__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.cart-sum__total strong { font-size: 24px; font-variant-numeric: tabular-nums; }
.minicart { position: fixed; inset: 0; z-index: 70; }
.minicart[hidden] { display: none; }
.minicart__scrim {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 27, .45);
}
.minicart__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  outline: none;   /* фокус ставится на панель скриптом; рамка ей ни к чему */
  display: flex;
  flex-direction: column;
  background: var(--bg);
  box-shadow: -12px 0 40px rgba(0, 0, 0, .18);
  animation: minicart-in .25s ease-out;
}
@keyframes minicart-in {
  from { transform: translateX(40px); opacity: 0; }
}
.minicart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--line);
}
.minicart__title { margin: 0; font-size: 20px; }
.minicart__close {
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.minicart__close:hover { color: var(--ink); }
.minicart__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 6px 20px 10px;
}
.mline {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mline img,
.mrec img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
}
.mline__info,
.mrec__info { min-width: 0; }
.mline__name,
.mrec__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
}
.mline__name:hover,
.mrec__name:hover { text-decoration: underline; }
.mline__qty,
.mrec__price {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--ink-soft);
}
.mrec__price s { margin-left: 6px; color: var(--muted); }
.mline__sum { font-weight: 600; white-space: nowrap; }
.mline--new {
  margin: 0 -20px;
  padding: 10px 20px;
  background: var(--soft);
  border-bottom: 0;
}
.minicart__also { margin-top: 14px; }
.minicart__alsoTitle { margin: 0 0 4px; font-size: 15px; }
.mrec {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}
.mrec__add {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s;
}
.mrec__add:hover { transform: scale(1.06); }
.minicart__foot {
  display: grid;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
}
.minicart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-soft);
}
.minicart__total strong { font-size: 20px; color: var(--ink); }
.minicart__checkout {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.minicart__continue {
  border: 0;
  background: none;
  padding: 6px;
  font: inherit;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 599px) {
  .minicart__panel {
    top: auto; left: 0; right: 0;
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
    animation: minicart-up .25s ease-out;
  }
  @keyframes minicart-up {
    from { transform: translateY(40px); opacity: 0; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .minicart__panel { animation: none; }
}
.foot {
  border-top: 1px solid var(--line);
  padding: 32px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.foot p { margin: 0; }
.foot__credits { margin-top: 8px !important; font-size: 12px; }
.foot__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: var(--page);
  margin: 0 auto 36px;
  text-align: left;
}
.foot__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink);
  margin: 0 0 14px;
}
.foot__col ul { list-style: none; margin: 0; padding: 0; }
.foot__col li { margin-bottom: 9px; }
.foot__col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s;
}
.foot__col a:hover { color: var(--ink); }
.foot__legal {
  max-width: 720px;
  margin: 0 auto 14px !important;
  font-size: 13px;
  line-height: 1.55;
}
.foot__entity {
  margin: 0 0 10px !important;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.foot__rights { font-size: 14px; }
.foot__view { margin-top: 10px; font-size: 14px; }
.foot__view a { color: var(--muted); text-decoration: underline; }
.foot__credits a { color: var(--muted); }
.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky[hidden] { display: none; }
.sticky__info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sticky__name {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky__price { font-size: 17px; font-weight: 600; }
.sticky__btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 24px;
  border: 2px solid var(--cta);
  border-radius: var(--pill);
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.sticky__pic {
  display: none;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--soft);
}
@media (min-width: 900px) {
  .sticky {
    padding-left: calc((100% - var(--page)) / 2 + 20px);
    padding-right: calc((100% - var(--page)) / 2 + 20px);
  }
  .sticky__pic { display: block; }
  .sticky__name { font-size: 14px; }
}
.co { display: grid; gap: 36px; }
.co[hidden] { display: none; }
@media (min-width: 900px) {
  .co { grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
}
.co__block {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.co__block:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.co__h { font-size: 20px; margin: 0 0 18px; }
.fld { margin: 0 0 18px; }
.fld[hidden] { display: none; }
.fld:last-child { margin-bottom: 0; }
.fld__lab { display: block; margin: 0 0 7px; font-size: 14px; font-weight: 600; }
.fld__in {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border: 2px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  transition: border-color .2s;
}
.fld__in::placeholder { color: var(--muted); }
.fld__in:focus { outline: none; border-color: var(--ink); }
.fld__in:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.fld__in.is-bad { border-color: var(--cta); }
.fld__in--area {
  height: auto;
  padding: 14px 20px;
  border-radius: var(--card);
  line-height: 1.5;
  resize: vertical;
}
.fld__hint { margin: 6px 0 0; font-size: 13px; color: var(--muted); }
.fld__err { margin: 6px 0 0; font-size: 13px; font-weight: 500; color: var(--cta); }
.fld__err[hidden] { display: none; }
.opts { display: grid; gap: 10px; margin: 0 0 20px; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--card);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.opt:hover { border-color: var(--ink-soft); }
.opt:has(input:checked) { border-color: var(--ink); background: var(--soft); }
.opt:has(input:focus-visible) { outline: 2px solid var(--ink); outline-offset: 2px; }
.opt input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--ink);
}
.opt__body { display: block; }
.opt__name { display: block; font-weight: 600; font-size: 15px; }
.opt__note { display: block; margin-top: 3px; font-size: 13px; line-height: 1.4; color: var(--ink-soft); }
.co__addr {
  margin: 0;
  padding: 14px 18px;
  border-radius: var(--card);
  background: var(--soft);
  font-size: 14px;
  color: var(--ink-soft);
}
.co__addr[hidden] { display: none; }
.co__lines {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.co__line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: baseline;
  padding: 5px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.co__lineName {
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}
.co__lineQty  { color: var(--muted); }
.co__lineSum  { white-space: nowrap; color: var(--ink); font-variant-numeric: tabular-nums; }
.cart-sum__row[hidden] { display: none; }
.co__note { margin: 0 0 16px; font-size: 12px; line-height: 1.4; color: var(--muted); }
.co__toperr { margin-top: 12px; }
.co__back { margin: 14px 0 0; text-align: center; font-size: 14px; }
.co__back a { color: var(--ink-soft); }
.co__remembered {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: -6px 0 18px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.co__remembered[hidden] { display: none; }
.co__remembered button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--ink-soft);
  text-decoration: underline;
  cursor: pointer;
}
.co-sticky { z-index: 15; }
.co-sticky .sticky__name { font-size: 12px; }
.co-sticky .sticky__btn {
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}
body:has(#coSticky:not([hidden])) .foot { padding-bottom: 96px; }
.opt__name { display: flex; align-items: center; gap: 8px; }
.opt__logo { flex-shrink: 0; }
.sug { position: relative; }
.sug__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--card);
  box-shadow: 0 12px 32px rgba(25, 25, 27, .12);
}
.sug__list[hidden] { display: none; }
.sug__item {
  padding: 9px 14px;
  border-radius: var(--chip);
  line-height: 1.3;
  cursor: pointer;
}
.sug__item:hover,
.sug__item[aria-selected="true"] { background: var(--soft); }
.sug__main { display: block; font-size: 15px; }
.sug__sub  { display: block; margin-top: 2px; font-size: 12px; color: var(--muted); }
.sug__note { padding: 9px 14px; font-size: 14px; color: var(--muted); }
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  cursor: pointer;
}
.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}
.co-done { max-width: 640px; padding-bottom: 60px; }
.co-done[hidden] { display: none; }
.co-done__title { font-size: 26px; margin: 0 0 14px; }
.co-done__lead { margin: 0 0 24px; color: var(--ink-soft); }
.co-done__call { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 0 0 26px; }
.co-done__tel { font-size: 20px; font-weight: 600; color: var(--ink); text-decoration: none; }
.co-done__text {
  margin: 0 0 20px;
  padding: 20px;
  border-radius: var(--card);
  background: var(--soft);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-x: auto;
}
.co-done__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin: 0; }
.co-done__copy {
  height: 44px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: var(--pill);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.co-done__copy:hover { background: var(--ink); color: #fff; }
.co-done__back { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 639px) {
  .co__block { padding-bottom: 22px; margin-bottom: 22px; }
  .co-done__text { padding: 14px; font-size: 12px; }
}
.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card);
  overflow: hidden;          /* без этого углы ячеек торчат за скругление */
  margin: 40px 0;
}
.trust__item {
  background: var(--bg);
  padding: 22px 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.trust__num {
  display: block;
  font-size: 28px;
  font-weight: 500;          /* не 700: крупный кегль уже даёт контраст */
  color: var(--ink);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 720px) {
  .trust { grid-template-columns: repeat(4, 1fr); }
  .trust__item { padding: 26px 18px; }
  .trust__num { font-size: 32px; }
}
.without {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.without li {
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 7px 16px;
  font-size: 15px;
  color: var(--ink-soft);
}
.replaces {
  background: var(--soft);
  border-radius: var(--card);
  padding: 28px 20px;
  margin: 40px 0;
}
.replaces h2 { margin: 0 0 12px; font-size: 23px; }
.replaces__lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.replaces__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.replaces__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;       /* иначе строка разорвётся между колонками */
}
.replaces__list b {
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.replaces__note { margin: 24px 0 0; font-weight: 500; }
@media (min-width: 720px) {
  .replaces { padding: 40px; }
  .replaces__list { columns: 2; column-gap: 40px; }
}
.guarantee {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 15px;
  color: inherit;
  opacity: .8;
}
.guarantee li { position: relative; padding-left: 24px; }
.guarantee li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid currentColor;   /* галочка того же цвета, что текст рядом */
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.wrap {
  max-width: var(--page);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
main > section { margin-top: 40px; }
main > section:last-child { margin-bottom: 56px; }
@media (min-width: 900px) {
  main > section { margin-top: 48px; }
}
.sect__title {
  font-size: 28px;
  margin: 0 0 8px;
}
.sect__lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
}
@media (min-width: 900px) {
  .sect__title { font-size: 34px; }
}
.stub {
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--chip);
  background: repeating-linear-gradient(
    45deg, #f4f2ef, #f4f2ef 10px, #ebe8e3 10px, #ebe8e3 20px);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero { margin-top: 0; }
.hero > .wrap > .btn {
  display: flex;
  width: 100%;
  height: 56px;
  margin-top: 4px;
  font-size: 17px;
}
.hero__rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 24px;
}
.hero__rail::-webkit-scrollbar { display: none; }
.hero__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  max-width: var(--page);
}
.hero__btn.railbtn { top: calc(50% - 12px); }
@media (max-width: 760px) {
  .hero__btn { display: none; }
}
.hero__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.hero__dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.hero__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background .2s, transform .2s;
}
.hero__dot[aria-current="true"]::before {
  background: var(--cta);
  transform: scale(1.35);
}
.banner {
  position: relative;
  border-radius: var(--card);
  overflow: hidden;
}
.banner__img {
  display: block;
  width: 100%;
  height: auto;
}
.banner__text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  width: min(44%, 540px);
}
.banner__eyebrow {
  margin: 0 0 10px;
  color: var(--gold-text);
  font-size: clamp(9px, .85vw, 13px);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.banner__title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(17px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.banner__lead {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: clamp(11px, 1.1vw, 16px);
  line-height: 1.5;
}
.banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}
.banner__actions .btn {
  min-width: 50%;
  max-width: 100%;
  height: 52px;
  padding: 0 32px;
  font-size: 17px;
}
.banner__meta {
  color: var(--ink-soft);
  font-size: clamp(11px, 1vw, 14px);
}
.banner--dark .banner__eyebrow { color: #d9a441; }
.banner--dark .banner__title   { color: #fff; }
.banner--dark .banner__lead    { color: rgba(255, 255, 255, .74); }
.banner--dark .banner__meta    { color: rgba(255, 255, 255, .62); }
@media (max-width: 760px) {
  .hero > .wrap:first-child {
    padding-left: 0;
    padding-right: 0;
  }
  .banner {
    height: min(133vw, 560px);
    overflow: hidden;
    border-radius: 0;
  }
  .banner__img {
    height: 100%;
    object-fit: cover;
    object-position: var(--focus, 72%) center;
  }
  .banner__text {
    position: absolute;
    inset: auto 0 0 0;
    top: auto;
    transform: none;
    width: auto;
    padding: 96px 20px 22px;
    background: linear-gradient(to top,
                rgba(0, 0, 0, .86) 30%, rgba(0, 0, 0, .55) 62%, transparent);
  }
  .banner__eyebrow,
  .banner--dark .banner__eyebrow { color: #f0c46a; }
  .banner__title,
  .banner--dark .banner__title {
    color: #fff;
    font-size: clamp(21px, 6.4vw, 30px);
    margin-bottom: 8px;
  }
  .banner__lead,
  .banner--dark .banner__lead {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .banner__meta { display: none; }
  .hero__btn.railbtn { display: none; }
  .hero__dots {
    position: relative;
    margin-top: -38px;
    z-index: 2;
  }
  .hero__dot::before { background: rgba(255, 255, 255, .55); }
  .hero__dot[aria-current="true"]::before { background: #fff; }
}
.brands__title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brands__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  align-items: center;
  gap: 26px 24px;
}
.brands__row img {
  width: 100%;
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  justify-self: center;
}
.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 4px 20px 12px;
  scroll-padding: 0 20px;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
.rail--squares > * { flex-basis: 200px; }
.railbox { position: relative; }
.railbtn {
  position: absolute;
  top: 124px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: opacity .2s, box-shadow .2s;
}
.railbtn:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, .18); }
.railbtn--prev { left: -18px; }
.railbtn--next { right: -18px; }
.railbtn[disabled] {
  opacity: 0;
  pointer-events: none;
}
@media (hover: none) {
  .railbtn { display: none; }
}
.page__lead {
  max-width: 70ch;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 17px;
}
.certbrand { margin-top: 40px; }
.certbrand__name {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.certdocs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 24px 20px;
}
.certdocs a {
  display: block;
  color: var(--ink);
  text-decoration: none;
}
.certdoc__pic {
  display: block;
  aspect-ratio: 1 / 1.414;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.certdoc__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (hover: hover) {
  .certdocs a:hover .certdoc__pic {
    border-color: var(--ink);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
  }
  .certdocs a:hover .certdoc__name { text-decoration: underline; }
}
.certdoc__name {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}
.certdoc__meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.cert__note {
  max-width: 70ch;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
@media (min-width: 900px) {
  .tiles { grid-template-columns: repeat(4, 1fr); }
}
.tile { text-decoration: none; color: var(--ink); }
.tile__pic {
  aspect-ratio: 554 / 502;
  border-radius: var(--card);
  overflow: hidden;
}
.tile__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
@media (hover: hover) {
  .tile:hover .tile__pic img { transform: scale(1.04); }
}
.tile__name {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 500;
}
.tile:hover .tile__name { text-decoration: underline; }
.empty-note {
  margin: 0;
  padding: 4px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.founder { display: grid; gap: 24px; }
.award {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 0;
  background: #f9dee4;
  border-radius: var(--card);
  overflow: hidden;
}
.award__text { padding: 28px 8px 28px 32px; }
.award__title {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.award__note { margin: 0; font-size: 15px; color: #6d5a60; }
.award__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
@media (max-width: 759px) {
  .award { grid-template-columns: 1fr; }
  .award__photo { order: -1; aspect-ratio: 950 / 545; height: auto; }
  .award__text { padding: 20px 22px 24px; }
  .award__title { font-size: 21px; }
}
.founder__logo {
  display: grid;
  place-items: center;
  max-width: 220px;
  aspect-ratio: 1;
  padding: 30px;
  border-radius: 50%;
  background: var(--soft);
  box-sizing: border-box;
}
.founder__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
}
.founder__logo-row img { width: 118px; height: auto; }
@media (min-width: 760px) {
  .founder {
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 36px;
  }
}
.contacts { list-style: none; margin: 0; padding: 0 0 8px; }
.contacts li { margin-bottom: 12px; }
.contacts a { color: var(--ink); font-size: 19px; }
.lead {
  max-width: 68ch;
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.6;
}
.info { margin-top: 40px; }
.info__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 14px;
}
.info p { margin: 0 0 8px; font-size: 17px; }
.info__note {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: 15px !important;
  line-height: 1.55;
}
.notes {
  list-style: none;
  max-width: 72ch;
  margin: 0 0 8px;
  padding: 0;
}
.notes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 1.5px;
  background: var(--muted);
}
.filters--sub {
  margin-top: -14px;
  margin-bottom: 22px;
  padding-bottom: 4px;
}
.filters--sub[hidden] { display: none; }
.chip--sm {
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 500;
  border-width: 1px;
  color: var(--ink-soft);
}
.chip--sm.is-active { color: #fff; }
.cat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: 18px;
}
.cat-count {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
.sort__select {
  border: 1px solid var(--line);
  border-radius: var(--chip);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  cursor: pointer;
  transition: border-color .25s;
}
.sort__select:hover  { border-color: var(--ink); }
.sort__select:focus  { outline: none; border-color: var(--ink); }
.sort__select:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.cat-query {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: -8px 0 22px;
  font-size: 15px;
  color: var(--ink);
}
.cat-query[hidden] { display: none; }
.cat-more { margin-top: 32px; text-align: center; }
.cat-more .btn[hidden] { display: none; }
.card__pic { position: relative; }
.card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: var(--chip);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.card__old {
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
}
.tovar__price {
  margin: 18px 0 6px;
  font-size: 15px;
}
.tovar__price b {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.02em;
}
.tovar__price s {
  margin-left: 10px;
  color: var(--muted);
  font-size: 17px;
}
.tovar__save {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}
.tovar__sku {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.tovar__stock {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 15px;
}
.buy[disabled] {
  background: var(--line);
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}
.specs {
  width: 100%;
  margin-top: 26px;
  border-collapse: collapse;
  font-size: 15px;
}
.specs th,
.specs td {
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.specs th {
  width: 42%;
  font-weight: 400;
  color: var(--ink-soft);
}
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0 -8px;
}
.toc a {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  white-space: nowrap;
  transition: border-color .2s;
}
.toc a:hover { border-color: var(--ink); }
@media (max-width: 760px) {
  .toc {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent);
            mask-image: linear-gradient(to right, #000 calc(100% - 44px), transparent);
  }
  .toc::-webkit-scrollbar { display: none; }
}
h2.sect__title[id] { scroll-margin-top: 90px; }
.desc-lead { font-size: 19px; line-height: 1.5; }
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.comp {
  background: var(--soft);
  border-radius: 16px;
  padding: 18px 20px;
}
.comp__name { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.comp__text { margin: 0; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 760px) {
  .comp-grid { grid-template-columns: 1fr; }
}
.tovar__desc { margin-top: 36px; max-width: 72ch; }
.tovar__desc .sect__title {
  font-size: 24px;
  margin: 0 0 10px;
}
.tovar__desc p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.55;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
@media (max-width: 760px) {
  .topbar__logo-kind {
    font-size: 10px;
    letter-spacing: .14em;
    padding: 3px 7px 4px;
    padding-right: calc(7px + .14em);
  }
  .banner__eyebrow { font-size: 12px; letter-spacing: .12em; }
  .banner__lead,
  .banner--dark .banner__lead { font-size: 14px; }
  .trustbar { font-size: 13px; }
  .card__brand,
  .card__benefit,
  .card__save { font-size: 13px; }
  .card__badge { font-size: 13px; }
  .card__name { font-size: 15px; line-height: 1.35; }
  .card__price { font-size: 19px; }
  .card__old { font-size: 13px; }
  .card__buy {
    height: 44px;
    font-size: 15px;
  }
  .rail .card__buy { height: 44px; font-size: 14px; }
  .foot__title { font-size: 13px; }
  .foot__legal { font-size: 14px; line-height: 1.55; }
  .foot__nav a,
  .foot__contacts a { font-size: 15px; }
  .drawer .lang__btn { padding: 9px 14px; font-size: 15px; }
}
@media (max-width: 360px) {
  .topbar {
    padding-left: 12px;
    padding-right: 12px;
    column-gap: 8px;
  }
  .iconbtn { width: 38px; height: 38px; }
  .iconbtn svg { width: 20px; height: 20px; }
  .topbar__logo-mark { width: min(100px, 31vw); }
  .topbar__logo { gap: 4px; }
  .topbar__logo-kind {
    font-size: 9px;
    letter-spacing: .1em;
    padding: 3px 6px 4px;
    padding-right: calc(6px + .1em);
  }
  .trustbar { gap: 5px; padding-left: 12px; padding-right: 12px; }
}
.tovar__desc ol,
.tovar__desc .ticks li {
  font-size: 17px;
  line-height: 1.55;
}
.tovar__desc .ticks li { padding-top: 3px; padding-bottom: 3px; }
.tovar__desc ol {
  margin: 0;
  padding-left: 22px;
}
.tovar__desc ol li { margin-bottom: 10px; }
.tovar__desc ol li:last-child { margin-bottom: 0; }
.tovar__desc p > a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .25s;
}
.tovar__desc p > a:hover { border-color: var(--ink); }
.tovar__desc--wide { max-width: none; }
