@charset "UTF-8";
/* line 6, theme.scss */
:root {
  --accent:#f9b233;
  --accent-ink:#1b1b1d;
  --dark:#141416;
  --dark-soft:#26262a;
  --bg:#ffffff;
  --soft:#f3f3f4;
  --card:#f4f4f5;
  --ink:#1b1b1d;
  --muted:#6c6c72;
  --line:#e6e6e8;
  --ok:#3ea15a;
  --stock-out:#a5a5ab;
  --badge-sale:#e11d2a;
  --ya:#fc3f1d;
  --font-head:'Inter',system-ui,sans-serif;
  --font-body:'IBM Plex Sans',system-ui,sans-serif;
  --radius:14px;
  --radius-sm:6px;
  --wrap:1440px;
  --pad:24px; }

/* line 24, theme.scss */
*, *::before, *::after {
  box-sizing: border-box; }

/* line 25, theme.scss */
html, body {
  margin: 0; }

/* line 26, theme.scss */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45; }

/* line 27, theme.scss */
h1, h2, h3, h4, h5, p {
  margin: 0; }

/* line 28, theme.scss */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head); }

/* line 29, theme.scss */
a {
  color: inherit;
  text-decoration: none;
  transition: color .15s; }

/* line 30, theme.scss */
a:hover {
  color: var(--accent); }

/* line 31, theme.scss */
img {
  max-width: 100%;
  display: block; }

/* line 32, theme.scss */
button {
  font-family: var(--font-head);
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit; }

/* line 33, theme.scss */
ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* line 34, theme.scss */
input, textarea, select {
  font-family: var(--font-body); }

/* line 35, theme.scss */
::selection {
  background: var(--accent);
  color: var(--dark); }

/* line 36, theme.scss */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0; }

/* line 37, theme.scss */
.icon--menu {
  width: 20px;
  height: 20px; }

/* line 37, theme.scss */
.icon--search {
  width: 21px;
  height: 21px; }

/* line 37, theme.scss */
.icon--chev {
  width: 16px;
  height: 16px; }

/* line 37, theme.scss */
.icon--lg {
  width: 26px;
  height: 26px; }

/* line 39, theme.scss */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad); }

/* line 41, theme.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  transition: background .15s,color .15s,border-color .15s; }

/* line 42, theme.scss */
.btn--accent {
  background: var(--accent);
  color: var(--dark); }

/* line 43, theme.scss */
.btn--accent:hover {
  background: #eaa61f;
  color: var(--dark); }

/* line 44, theme.scss */
.btn--outline {
  border: 2px solid var(--ink);
  color: var(--ink); }

/* line 45, theme.scss */
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent); }

/* line 46, theme.scss */
.btn--ghost {
  border: 2px solid var(--line);
  color: var(--ink); }

/* line 47, theme.scss */
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent); }

/* line 48, theme.scss */
.btn--dark {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 5px; }

/* line 49, theme.scss */
.btn--dark:hover {
  background: var(--dark-soft);
  color: #fff; }

/* line 52, theme.scss */
.imgslot {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 2px dashed #d7d7db;
  border-radius: inherit;
  background: #fafafa;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 16px; }

/* line 53, theme.scss */
.imgslot .icon {
  width: 44px;
  height: 44px;
  color: #c4c4ca;
  margin-bottom: 10px; }

/* line 54, theme.scss */
.imgslot span {
  font-size: 14px;
  line-height: 1.4; }

/* line 55, theme.scss */
.imgslot--sm {
  padding: 8px; }

/* line 55, theme.scss */
.imgslot--sm .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0; }

/* line 55, theme.scss */
.imgslot--sm span {
  display: none; }

/* line 58, theme.scss */
.header {
  background: var(--dark);
  color: #fff;
  position: relative;
  z-index: 60; }

/* line 59, theme.scss */
.header__inner {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px; }

/* line 60, theme.scss */
.header__row {
  display: flex;
  align-items: center;
  gap: 20px; }

/* line 61, theme.scss */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: #fff; }

/* Логотип-картинка: высоту задаём, ширину считает браузер по пропорции.
   Прежние текстовые слои (.logo__mark, .logo__word, .logo__tag) остались в
   стилях — их используют письма и печатная версия. */
/* line 65, theme.scss */
.logo__img {
  height: 46px;
  width: auto;
  display: block; }

/* сборка: логотип-картинка */
/* line 66, theme.scss */
.logo:hover {
  color: #fff; }

/* line 67, theme.scss */
.logo__mark {
  width: 52px;
  height: 52px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--dark);
  display: grid;
  place-items: center; }

/* line 68, theme.scss */
.logo__mark .icon {
  width: 30px;
  height: 30px; }

/* line 69, theme.scss */
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1; }

/* line 70, theme.scss */
.logo__word {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .5px; }

/* line 71, theme.scss */
.logo__word--big {
  font-size: 26px;
  margin-top: 1px; }

/* line 72, theme.scss */
.logo__tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-top: 4px;
  text-transform: uppercase; }

/* line 73, theme.scss */
.catalog {
  flex-shrink: 0; }

/* line 74, theme.scss */
.catalog__btn {
  font-size: 15px;
  padding: 14px 22px; }

/* line 75, theme.scss */
.catalog__btn .icon--chev {
  transition: transform .2s; }

/* line 76, theme.scss */
.catalog.is-open .catalog__btn .icon--chev {
  transform: rotate(180deg); }

/* line 79, theme.scss */
.megamenu {
  position: absolute;
  top: calc(100% + 14px);
  left: var(--pad);
  right: var(--pad);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  z-index: 70;
  display: none;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  height: min(calc(100vh - 180px), 900px);
  min-height: 420px; }

/* line 80, theme.scss */
.catalog.is-open .megamenu {
  display: grid; }

/* line 81, theme.scss */
.megamenu__cats {
  background: #fafafa;
  border-right: 1px solid var(--line);
  padding: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  height: 100%; }

/* line 82, theme.scss */
.megamenu__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink); }

/* Иконка раздела: в покое серая, у выбранного — фирменный жёлтый со свечением.
   Так подсвечен ровно один пункт, и глаз сразу видит, какая панель открыта. */
/* line 86, theme.scss */
.megamenu__cat .icon {
  width: 34px;
  height: 34px;
  color: #9a9aa0;
  transition: color .15s,filter .15s; }

/* line 87, theme.scss */
.megamenu__cat .icon--chev {
  display: none; }

/* line 89, theme.scss */
.megamenu__cat-name {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.3; }

/* line 90, theme.scss */
.megamenu__cat:hover, .megamenu__cat.is-active {
  background: var(--soft);
  color: var(--ink); }

/* line 91, theme.scss */
.megamenu__cat.is-active .icon, .megamenu__cat:hover .icon {
  color: var(--accent);
  filter: drop-shadow(0 0 7px rgba(249, 178, 51, 0.75)) drop-shadow(0 0 2px rgba(249, 178, 51, 0.9)); }

/* line 93, theme.scss */
.megamenu__panels {
  position: relative;
  height: 100%;
  overflow: hidden; }

/* line 94, theme.scss */
.megamenu__panel {
  display: none;
  padding: 28px 32px;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain; }

/* line 95, theme.scss */
.megamenu__panel.is-active {
  display: block; }

/* line 96, theme.scss */
.megamenu__title {
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 20px;
  letter-spacing: -.3px; }

/* line 98, theme.scss */
.megamenu__subs {
  column-count: 4;
  column-gap: 32px;
  column-fill: balance; }

/* line 99, theme.scss */
.megamenu__sub {
  display: block;
  padding: 6px 0;
  break-inside: avoid;
  color: #5a5a60; }

/* line 100, theme.scss */
.megamenu__sub:hover {
  color: var(--accent); }

/* line 102, theme.scss */
.megamenu__sub span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35; }

/* line 103, theme.scss */
.megamenu__sub-count {
  color: #b0b0b6;
  font-size: 13px;
  margin-left: 4px; }

/* line 104, theme.scss */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 50;
  display: none; }

/* line 105, theme.scss */
.overlay.is-visible {
  display: block; }

/* line 106, theme.scss */
.search {
  flex: 1;
  position: relative;
  min-width: 180px; }

/* line 107, theme.scss */
.search__input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 8px;
  padding: 15px 54px 15px 18px;
  font-size: 15px;
  background: #2b2b2f;
  color: #fff; }

/* line 108, theme.scss */
.search__input::placeholder {
  color: #8a8a90; }

/* line 109, theme.scss */
.search__btn {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 46px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #c8c8ce; }

/* line 110, theme.scss */
.search__btn:hover {
  color: var(--accent); }

/* line 112, theme.scss */
.search__clear {
  position: absolute;
  top: 5px;
  right: 52px;
  bottom: 5px;
  width: 38px;
  display: grid;
  place-items: center;
  color: #8a8a90; }

/* line 113, theme.scss */
.search__clear:hover {
  color: #fff; }

/* line 114, theme.scss */
.search__clear .icon {
  width: 18px;
  height: 18px; }

/* line 115, theme.scss */
.search.is-open .search__input {
  border-radius: 8px 8px 0 0; }

/* line 118, theme.scss */
.search__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  width: max(100%, min(1080px, calc(100vw - 32px)));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px -12px rgba(15, 15, 18, 0.35);
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: hidden;
  color: var(--ink);
  max-height: min(640px, calc(100vh - 120px)); }

/* line 125, theme.scss */
.search__panel[hidden] {
  display: none; }

/* line 126, theme.scss */
.search__col {
  padding: 20px;
  min-width: 0;
  overflow-y: auto; }

/* line 127, theme.scss */
.search__col--cats {
  background: #fafafa;
  border-right: 1px solid var(--line); }

/* line 128, theme.scss */
.search__head {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px; }

/* line 129, theme.scss */
.search__count {
  color: var(--muted);
  font-weight: 400; }

/* line 131, theme.scss */
.search__cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 8px;
  color: var(--ink); }

/* line 133, theme.scss */
.search__cat:hover, .search__cat.is-active {
  border-color: var(--accent);
  background: #fffaf0;
  color: var(--ink); }

/* line 134, theme.scss */
.search__cat-body {
  display: block;
  flex: 1;
  min-width: 0; }

/* line 135, theme.scss */
.search__cat-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25; }

/* line 136, theme.scss */
.search__cat-count {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px; }

/* line 137, theme.scss */
.search__cat .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0; }

/* line 139, theme.scss */
.search__good {
  display: grid;
  grid-template-columns: 76px 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--ink); }

/* line 141, theme.scss */
.search__good:last-of-type {
  border-bottom: 0; }

/* line 142, theme.scss */
.search__good:hover {
  color: var(--ink); }

/* line 143, theme.scss */
.search__good:hover .search__good-name {
  color: var(--accent); }

/* line 144, theme.scss */
.search__good-pic {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: #fff;
  flex-shrink: 0; }

/* line 145, theme.scss */
.search__good-pic img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; }

/* line 146, theme.scss */
.search__good-body {
  min-width: 0; }

/* line 147, theme.scss */
.search__good-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3; }

/* line 148, theme.scss */
.search__good-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 7px;
  font-size: 13px;
  color: var(--muted); }

/* line 149, theme.scss */
.search__good-price {
  display: block;
  text-align: right;
  white-space: nowrap; }

/* line 150, theme.scss */
.search__good-old {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through; }

/* line 151, theme.scss */
.search__good-now {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px; }

/* line 152, theme.scss */
.search__fav {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #b6b6bc; }

/* line 153, theme.scss */
.search__fav:hover {
  color: #e5484d; }

/* line 154, theme.scss */
.search__fav.is-fav {
  color: #e5484d; }

/* line 155, theme.scss */
.search__fav.is-fav .icon {
  fill: #e5484d;
  stroke: #e5484d; }

/* line 156, theme.scss */
.search__buy {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0; }

/* line 158, theme.scss */
.search__buy:hover {
  background: #eaa61f;
  color: var(--accent-ink); }

/* line 159, theme.scss */
.search__buy .icon {
  width: 20px;
  height: 20px; }

/* line 161, theme.scss */
.search__mark {
  background: rgba(249, 178, 51, 0.35);
  border-radius: 3px; }

/* line 162, theme.scss */
.search__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px; }

/* line 164, theme.scss */
.search__all:hover {
  border-color: var(--accent);
  color: var(--accent); }

/* line 165, theme.scss */
.search__state {
  grid-column: 1/-1;
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px; }

/* line 167, theme.scss */
.search__panel.is-busy .search__goods {
  opacity: .45;
  transition: opacity .15s; }

/* line 169, theme.scss */
.phone {
  text-align: right;
  flex-shrink: 0;
  line-height: 1.25; }

/* line 170, theme.scss */
.phone__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: #fff; }

/* line 171, theme.scss */
.phone__hours {
  font-size: 12px;
  color: #9a9aa0; }

/* line 172, theme.scss */
.actions {
  display: flex;
  gap: 26px;
  flex-shrink: 0; }

/* line 173, theme.scss */
.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 12px; }

/* line 174, theme.scss */
.action:hover {
  color: var(--accent); }

/* line 175, theme.scss */
.action__ico {
  position: relative;
  display: inline-flex; }

/* line 176, theme.scss */
.action__ico .icon {
  width: 23px;
  height: 23px; }

/* line 177, theme.scss */
.action__count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--accent);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center; }

/* line 180, theme.scss */
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s,transform .18s; }

/* line 183, theme.scss */
.product-card__media {
  position: relative;
  padding: 0 0 6px; }

/* line 184, theme.scss */
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 7px;
  background: var(--ok);
  color: #fff; }

/* line 185, theme.scss */
.product-card__badge--sale {
  background: var(--badge-sale); }

/* line 186, theme.scss */
.product-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative; }

/* line 192, theme.scss */
.product-card__dot--in {
  box-shadow: 0 0 5px rgba(62, 161, 90, 0.45); }

/* line 193, theme.scss */
.product-card__dot--in::after,
.product-card__dot--in::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ok);
  animation: dot-pulse 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite; }

/* line 196, theme.scss */
.product-card__dot--in::before {
  animation-delay: 1.2s; }

@keyframes dot-pulse {
  0% {
    transform: scale(1);
    opacity: .6; }
  75% {
    transform: scale(3.4);
    opacity: 0; }
  100% {
    transform: scale(3.4);
    opacity: 0; } }
/* line 202, theme.scss */
.product-card__dot--in {
  background: var(--ok); }

/* line 202, theme.scss */
.product-card__dot--out {
  background: var(--stock-out); }

/* line 205, theme.scss */
.product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9a9aa2;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  transition: color .15s,background .15s; }

/* line 208, theme.scss */
.product-card__fav:hover {
  color: var(--accent); }

/* line 209, theme.scss */
.product-card__fav .icon {
  width: 20px;
  height: 20px; }

/* Под фотографией лежит серая подложка. Пока снимок не пришёл, покупатель видит
   место товара, а не белое пятно: при быстрой прокрутке список выглядел пустым
   холстом. Подложка гаснет, когда картинка загрузилась (класс ставит theme.js). */
/* line 215, theme.scss */
.product-card__img {
  display: grid;
  place-items: center;
  height: 236px;
  background: var(--soft);
  border-radius: 13px 13px 0 0;
  overflow: hidden; }

/* line 217, theme.scss */
.product-card__img.is-loaded {
  background: transparent; }

/* line 219, theme.scss */
.product-card__img {
  position: relative; }

/* line 220, theme.scss */
.product-card__img picture {
  display: block;
  width: 100%;
  height: 100%; }

/* line 223, theme.scss */
.product-card__img picture {
  transition: opacity .06s linear; }

/* line 224, theme.scss */
.product-card__img img.product-card__shot {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .06s linear;
  pointer-events: none; }

/* line 226, theme.scss */
.product-card__img img.product-card__shot.is-on {
  opacity: 1; }

/* line 228, theme.scss */
.product-card__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: none; }

/* line 229, theme.scss */
.product-card__pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d2d2d8;
  transition: background .12s; }

/* line 230, theme.scss */
.product-card__pip.is-on {
  background: var(--accent); }

@media (hover: none) {
  /* line 232, theme.scss */
  .product-card__dots {
    display: none; } }
/* line 233, theme.scss */
.product-card__img img {
  max-height: 236px;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s; }

/* line 237, theme.scss */
.product-card__img.is-loaded picture img {
  opacity: 1; }

/* line 238, theme.scss */
.product-card__noimg {
  color: #c4c4ca; }

/* line 239, theme.scss */
.product-card__body {
  padding: 6px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1; }

/* line 245, theme.scss */
.product-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.3; }

/* line 251, theme.scss */
.product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 7px; }

/* line 254, theme.scss */
.product-card__rating .icon {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 1.5; }

/* line 255, theme.scss */
.product-card__reviews {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  margin-left: 1px; }

/* line 256, theme.scss */
.product-card__art {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

/* line 257, theme.scss */
.product-card__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  white-space: nowrap; }

/* line 258, theme.scss */
.product-card__qty--out {
  color: var(--stock-out); }

/* line 263, theme.scss */
.product-card__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -.1px;
  margin-top: 10px;
  color: #26262a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

/* line 264, theme.scss */
.product-card__title a:hover {
  color: #c98f14; }

/* line 267, theme.scss */
.product-card__deliv {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--ok);
  font-weight: 600; }

/* line 268, theme.scss */
.product-card__deliv .icon {
  width: 13px;
  height: 13px; }

/* line 272, theme.scss */
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px; }

/* line 273, theme.scss */
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap; }

/* line 274, theme.scss */
.product-card__old {
  color: #a5a5ab;
  font-size: 13px;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px; }

/* line 275, theme.scss */
.product-card__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap; }

/* line 276, theme.scss */
.product-card__buy {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: filter .15s; }

/* line 277, theme.scss */
.product-card__buy:hover {
  filter: brightness(0.95); }

/* line 278, theme.scss */
.product-card__buy .icon {
  width: 17px;
  height: 17px; }

/* line 280, theme.scss */
.product-card--default .product-card__title {
  min-height: 40px;
  -webkit-line-clamp: 2; }

/* line 281, theme.scss */
.product-card--default .product-card__price {
  font-size: 20px; }

/* line 282, theme.scss */
.product-card--default:hover {
  box-shadow: 0 12px 34px rgba(20, 20, 22, 0.1);
  transform: translateY(-2px); }

/* line 284, theme.scss */
.product-card--catalog {
  border-color: #eeeef0; }

/* line 285, theme.scss */
.product-card--catalog .product-card__title {
  min-height: 59px; }

/* line 286, theme.scss */
.product-card--catalog:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08); }

/* line 287, theme.scss */
.product-card--catalog .product-card__price {
  font-size: 20px; }

/* line 288, theme.scss */
.product-card--catalog .product-card__buy {
  width: auto;
  flex: 0 0 auto;
  font-size: 13px;
  padding: 10px 14px;
  white-space: nowrap; }

/* line 290, theme.scss */
.product-card--compact {
  border-color: #eeeef0; }

/* line 291, theme.scss */
.product-card--compact .product-card__media {
  padding-bottom: 4px; }

/* line 292, theme.scss */
.product-card--compact .product-card__img {
  height: 130px; }

/* line 293, theme.scss */
.product-card--compact .product-card__img img {
  max-height: 130px; }

/* line 294, theme.scss */
.product-card--compact .product-card__title {
  font-weight: 400;
  font-size: 14px;
  min-height: 57px;
  margin-top: 9px; }

/* line 295, theme.scss */
.product-card--compact .product-card__price {
  font-size: 18px; }

/* line 296, theme.scss */
.product-card--compact:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px); }

/* line 303, theme.scss */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #101013;
  background-image: radial-gradient(44% 85% at 4% 44%, rgba(122, 130, 150, 0.22) 0%, rgba(122, 130, 150, 0) 70%); }

/* line 306, theme.scss */
.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0; }

/* line 307, theme.scss */
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

/* line 308, theme.scss */
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #101013 0%, rgba(16, 16, 19, 0.88) 16%, rgba(16, 16, 19, 0.34) 46%, rgba(16, 16, 19, 0) 70%); }

/* line 309, theme.scss */
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center; }

/* line 310, theme.scss */
.hero__body {
  max-width: 790px; }

/* line 313, theme.scss */
.hero__title {
  font-weight: 900;
  font-size: clamp(34px, 3.9vw, 56px);
  line-height: 1.02;
  letter-spacing: -.5px;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5); }

/* line 314, theme.scss */
.hero__title em {
  color: var(--accent); }

/* line 315, theme.scss */
.hero__lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 22px;
  max-width: 470px;
  line-height: 1.5; }

/* line 316, theme.scss */
.hero__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  margin-top: 32px; }

/* line 317, theme.scss */
.feat {
  display: flex;
  align-items: center;
  gap: 12px; }

/* line 318, theme.scss */
.feat .icon {
  width: 26px;
  height: 26px;
  color: var(--accent); }

/* line 319, theme.scss */
.feat span {
  font-size: 15px;
  line-height: 1.2; }

/* line 321, theme.scss */
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff; }

/* line 322, theme.scss */
.hero .btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent); }

/* line 323, theme.scss */
.hero .btn--accent {
  box-shadow: 0 10px 30px -10px rgba(249, 178, 51, 0.55); }

/* line 324, theme.scss */
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px; }

/* line 325, theme.scss */
.cats {
  padding-top: 72px;
  padding-bottom: 24px; }

/* Четыре плитки в ряд, как в каталогах, на которые ориентируемся. При трёх
   плитка была 400 px и растягивалась в ленту, при четырёх — 310 px, ближе к
   квадрату: предмет виден крупнее, а весь каталог помещается в три ряда. */
/* line 331, theme.scss */
.cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 19px; }

/* line 332, theme.scss */
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 27px;
  min-height: 214px;
  display: flex;
  align-items: flex-start;
  color: var(--ink); }

/* line 334, theme.scss */
.cat-card:hover {
  color: var(--ink); }

/* line 337, theme.scss */
.cat-card__body {
  position: relative;
  z-index: 1;
  max-width: 52%; }

/* line 341, theme.scss */
.cat-card__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: #000;
  overflow-wrap: break-word; }

/* line 344, theme.scss */
.cat-card__count {
  color: #fea900;
  font-weight: 700;
  font-size: 15px;
  margin-top: 11px; }

/* line 355, theme.scss */
.cat-card__img {
  position: absolute;
  right: 0;
  bottom: -5%;
  height: 110%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: multiply;
  transition: transform .25s;
  transform-origin: right bottom; }

/* line 356, theme.scss */
.cat-card:hover .cat-card__img {
  transform: scale(1.05); }

/* line 360, theme.scss */
.cat-card--tiled .cat-card__img {
  inset: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right bottom;
  mix-blend-mode: normal; }

/* line 361, theme.scss */
.cat-card--tiled:hover .cat-card__img {
  transform: scale(1.03); }

/* line 366, theme.scss */
.cat-card--generatory:not(.cat-card--tiled) .cat-card__img {
  max-width: 60%; }

/* line 367, theme.scss */
.cat-card--dvigateli:not(.cat-card--tiled) .cat-card__img {
  max-width: 60%; }

/* line 368, theme.scss */
.cat-card--avtotovary:not(.cat-card--tiled) .cat-card__img {
  max-width: 58%; }

/* line 369, theme.scss */
.cat-card--akkumulyatory-i-zaryadnye:not(.cat-card--tiled) .cat-card__img {
  max-width: 58%; }

/* line 370, theme.scss */
.cat-card--sadovaya-tehnika:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 371, theme.scss */
.cat-card--bytovaya-tehnika:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 372, theme.scss */
.cat-card--moyki-vysokogo-davleniya:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 373, theme.scss */
.cat-card--osveschenie:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 374, theme.scss */
.cat-card--pylesosy:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 375, theme.scss */
.cat-card--snegouborochnaya-tehnika:not(.cat-card--tiled) .cat-card__img {
  max-width: 57%; }

/* line 376, theme.scss */
.cat-card--turizm-rybalka-ohota:not(.cat-card--tiled) .cat-card__img {
  max-width: 56%; }

/* line 377, theme.scss */
.cat-card--kompressory-i-pnevmoinstrument:not(.cat-card--tiled) .cat-card__img {
  max-width: 53%; }

/* line 378, theme.scss */
.cat-card--elektrotransport:not(.cat-card--tiled) .cat-card__img {
  max-width: 53%; }

/* line 379, theme.scss */
.cat-card--sadovye-traktory-raydery-i-roboty:not(.cat-card--tiled) .cat-card__img {
  max-width: 52%; }

/* line 380, theme.scss */
.cat-card--svarochnoe-oborudovanie:not(.cat-card--tiled) .cat-card__img {
  max-width: 51%; }

/* line 381, theme.scss */
.cat-card--teplovaya-tehnika:not(.cat-card--tiled) .cat-card__img {
  max-width: 51%; }

/* line 382, theme.scss */
.cat-card--elektroinstrument:not(.cat-card--tiled) .cat-card__img {
  max-width: 51%; }

/* line 383, theme.scss */
.cat-card--nasosy-i-motopompy:not(.cat-card--tiled) .cat-card__img {
  max-width: 48%; }

/* line 384, theme.scss */
.cat-card--motobloki-i-kultivatory:not(.cat-card--tiled) .cat-card__img {
  max-width: 47%; }

/* line 385, theme.scss */
.cat-card--pusko-zaryadnye-ustroystva:not(.cat-card--tiled) .cat-card__img {
  max-width: 47%; }

/* Плитка стала уже (четыре в ряд вместо трёх), и прежние размеры снимков —
   до 60 % ширины — налезали на название: «Компрессоры и пневмоинструмент»
   уходило под компрессор. Общий потолок на всю сетку; селектор из трёх классов,
   чтобы перебить индивидуальные правила выше. */
/* line 390, theme.scss */
.cats__grid .cat-card .cat-card__img {
  max-width: 46%;
  object-fit: contain;
  object-position: right bottom;
  inset: auto 0 0 auto;
  height: 88%;
  mix-blend-mode: multiply; }

/* line 392, theme.scss */
.cats__grid .cat-card .cat-card__body {
  max-width: 54%; }

/* Перенос ТОЛЬКО по словам. Общий стиль плитки рвёт слово по буквам — это
   спасало узкую плитку телефона, но на большом экране давало «Электроинстру-
   мент» там, где строка помещалась целиком. */
/* line 396, theme.scss */
.cats__grid .cat-card__name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none; }

/* line 398, theme.scss */
.cat-card--aksessuary-i-rashodniki:not(.cat-card--tiled) .cat-card__img {
  max-width: 46%; }

/* line 400, theme.scss */
.cats__more, .brands__more {
  padding-bottom: 52px;
  display: flex;
  justify-content: center;
  margin-top: 36px; }

/* Лента брендов идёт от края до края экрана: она вынесена из колонки контента
   прямо в разметке (см. index.liquid), а не растянута через 100vw — с vw лента
   промахивалась на ширину полосы прокрутки. Заголовок и кнопка остались в колонке. */
/* line 404, theme.scss */
.brands {
  background: var(--soft);
  overflow: hidden; }

/* line 405, theme.scss */
.brands__inner {
  padding-top: 52px; }

/* line 406, theme.scss */
.brands__title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 32px; }

/* line 410, theme.scss */
.brands__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }

/* line 413, theme.scss */
.brands__track {
  display: flex;
  width: max-content;
  animation: brandsRoll 42s linear infinite; }

/* line 414, theme.scss */
.brands__viewport:hover .brands__track {
  animation-play-state: paused; }

@keyframes brandsRoll {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  /* line 418, theme.scss */
  .product-card__dot--in::after,
  .product-card__dot--in::before {
    animation: none; }

  /* line 420, theme.scss */
  .brands__track {
    animation: none; }

  /* line 421, theme.scss */
  .brands__viewport {
    overflow-x: auto; } }
/* line 423, theme.scss */
.brands__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0; }

/* Без плашек: знаки едут прямо по фону секции. Ширина по содержимому — иначе
   узкий FUBAG и широкий STELS раздвигали бы соседей одинаково и ряд выглядел
   бы дырявым. Общая высота строки фиксирована, чтобы лента не прыгала. */
/* line 427, theme.scss */
.brands__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  margin: 0 34px; }

/* Размеры знака заданы в разметке — они разные и выровнены по оптическому весу.
   CSS их НЕ переопределяет: стоит задать общую высоту, и широкий STELS растянется
   до неё, став вдвое крупнее квадратного FUBAG. Здесь только защита от переполнения. */
/* line 432, theme.scss */
.brands__logo {
  max-width: 100%; }

/* line 434, theme.scss */
.brands__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: #4a4a4f;
  white-space: nowrap; }

/* line 435, theme.scss */
.promos {
  padding-top: 64px;
  padding-bottom: 64px; }

/* line 436, theme.scss */
.promos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }

/* line 437, theme.scss */
.promo {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden; }

/* line 438, theme.scss */
.promo__body {
  flex: 1;
  min-width: 0;
  padding-right: 14px; }

/* line 439, theme.scss */
.promo__title {
  font-weight: 700;
  font-size: 22px; }

/* line 440, theme.scss */
.promo__text {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.4; }

/* line 441, theme.scss */
.promo__btn {
  margin-top: 18px; }

/* line 442, theme.scss */
.promo__media {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center; }

/* line 443, theme.scss */
.promo__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; }

/* line 444, theme.scss */
.goods {
  padding-top: 8px;
  padding-bottom: 64px; }

/* line 445, theme.scss */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px; }

/* line 446, theme.scss */
.section-head__title {
  font-weight: 800;
  font-size: 30px;
  font-style: italic; }

/* line 447, theme.scss */
.section-head__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: #c98f14; }

/* line 448, theme.scss */
.section-head__link:hover {
  color: var(--accent); }

/* line 449, theme.scss */
.section-head__link .icon {
  width: 18px;
  height: 18px; }

/* line 450, theme.scss */
.goods__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; }

/* line 451, theme.scss */
.why {
  border-top: 1px solid var(--line); }

/* line 452, theme.scss */
.why__inner {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 270px repeat(5, 1fr);
  gap: 36px;
  align-items: start; }

/* line 453, theme.scss */
.why__heading {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  font-style: italic; }

/* line 454, theme.scss */
.why__item .icon {
  width: 38px;
  height: 38px;
  color: var(--accent); }

/* line 455, theme.scss */
.why__title {
  font-weight: 700;
  font-size: 16px;
  margin-top: 14px; }

/* line 456, theme.scss */
.why__text {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4; }

/* line 457, theme.scss */
.about {
  background: var(--soft); }

/* line 458, theme.scss */
.about__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center; }

/* line 459, theme.scss */
.about__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  font-style: italic; }

/* line 460, theme.scss */
.about__text {
  color: var(--muted);
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.6; }

/* line 461, theme.scss */
.about__btn {
  margin-top: 28px; }

/* line 462, theme.scss */
.about__media {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(20, 20, 22, 0.45); }

/* line 463, theme.scss */
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* line 466, theme.scss */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding-top: 20px;
  padding-bottom: 8px; }

/* line 467, theme.scss */
.crumbs__sep {
  color: #c2c2c8; }

/* line 468, theme.scss */
.crumbs__cur {
  color: var(--ink);
  font-weight: 600; }

/* ── СТРАНИЦЫ (доставка, оферта, политика) ─────────────────────────────── */
/* line 471, theme.scss */
.page {
  padding-bottom: 64px; }

/* line 472, theme.scss */
.page__title {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 6px 0 18px; }

/* line 474, theme.scss */
.page__lead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 760px; }

/* line 475, theme.scss */
.page__lead--tight {
  margin-top: -6px; }

/* line 476, theme.scss */
.page__h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 44px 0 16px; }

/* line 477, theme.scss */
.page__content {
  font-size: 15px;
  line-height: 1.6;
  max-width: 820px; }

/* line 478, theme.scss */
.page__content p {
  margin-bottom: 12px; }

/* line 479, theme.scss */
.page__content h2, .page__content h3 {
  font-weight: 700;
  margin: 24px 0 10px; }

/* Три способа доставки — равными карточками: покупатель сравнивает их взглядом,
   поэтому колонки одной ширины, а не текст в столбик. */
/* line 483, theme.scss */
.dlv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px; }

/* line 484, theme.scss */
.dlv {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px; }

/* line 486, theme.scss */
.dlv__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--dark);
  margin-bottom: 4px; }

/* line 488, theme.scss */
.dlv__ico .icon {
  width: 26px;
  height: 26px; }

/* line 489, theme.scss */
.dlv__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2; }

/* line 490, theme.scss */
.dlv__sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: -4px; }

/* line 491, theme.scss */
.dlv__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 6px; }

/* line 492, theme.scss */
.dlv__list li {
  padding-left: 18px;
  position: relative; }

/* line 493, theme.scss */
.dlv__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent); }

/* line 495, theme.scss */
.dlv__addr {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600; }

/* line 496, theme.scss */
.dlv__note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45; }

/* line 497, theme.scss */
.dlv__btn {
  align-self: flex-start;
  margin-top: auto; }

/* Таблица условий: три колонки в строке. Не <table> — на телефоне строки
   разворачиваются в карточки, а таблица так не умеет без костылей. */
/* line 501, theme.scss */
.dlv__table {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden; }

/* line 502, theme.scss */
.dlv__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 22px;
  font-size: 15px;
  border-top: 1px solid var(--line); }

/* line 504, theme.scss */
.dlv__row:first-child {
  border-top: 0; }

/* line 505, theme.scss */
.dlv__row--head {
  background: var(--soft);
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em; }

/* line 507, theme.scss */
.dlv__free {
  color: #1a9d4b;
  font-weight: 700; }

/* line 508, theme.scss */
.dlv__small {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 760px; }

/* Перевозчики — плитками, а не списком: восемь названий в столбик выглядят
   как мелкий шрифт в договоре. */
/* line 512, theme.scss */
.dlv__tk {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px; }

/* line 513, theme.scss */
.dlv__tk li {
  background: var(--soft);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 16px; }

/* line 515, theme.scss */
.dlv__steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px; }

/* line 516, theme.scss */
.dlv__steps li {
  counter-increment: s;
  position: relative;
  padding-top: 44px;
  font-size: 15px;
  line-height: 1.45; }

/* line 517, theme.scss */
.dlv__steps li::before {
  content: counter(s);
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 16px; }

/* line 520, theme.scss */
.cat-head {
  padding-top: 8px;
  padding-bottom: 20px; }

/* line 521, theme.scss */
.cat-head__title {
  font-weight: 900;
  font-size: 40px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.5px; }

/* line 522, theme.scss */
.cat-head__desc {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  max-width: 760px;
  line-height: 1.5; }

/* Подкатегории плитками: название и счётчик сверху, крупное фото товара снизу.
   Фото не обрамляем — предмет лежит прямо на подложке плитки, как в каталогах,
   на которые ориентируемся. Маленькая иконка в рамке сбоку читалась хуже:
   товар в ней невозможно было разглядеть. */
/* line 527, theme.scss */
.subcats {
  padding-top: 16px;
  padding-bottom: 12px; }

/* line 528, theme.scss */
.subcats__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px; }

/* line 529, theme.scss */
.subcat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--soft);
  border-radius: 16px;
  min-height: 252px;
  padding: 20px 18px 16px;
  color: var(--ink);
  overflow: hidden;
  transition: background .15s,box-shadow .15s; }

/* line 531, theme.scss */
.subcat:hover {
  background: #eeeef0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: var(--ink); }

/* line 532, theme.scss */
.subcat__body {
  display: flex;
  flex-direction: column;
  min-width: 0; }

/* Место под две строки резервируем всегда: иначе у «Мотобуров» фото начинается
   выше, чем у «Аэраторов и скарификаторов», и ряд плиток идёт рвано. */
/* line 535, theme.scss */
.subcat__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

/* Количество товаров в плитке не показываем: на витрине это служебное число,
   которое отвлекает от названия раздела. */
/* line 539, theme.scss */
.subcat__count {
  color: var(--accent-deep);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px; }

/* Фото занимает низ плитки целиком: предмет крупный и «стоит» на её краю. */
/* line 541, theme.scss */
.subcat__ico {
  height: 168px;
  margin-top: auto;
  display: grid;
  place-items: end center;
  color: #c4c4ca;
  overflow: hidden; }

/* line 542, theme.scss */
.subcat__ico .icon {
  width: 30px;
  height: 30px; }

/* Высота в ПИКСЕЛЯХ, а не в процентах: у grid-элемента процент считается не от
   заданных 170 px, и картинка рисовалась 227 px — вылезала за плитку и обрезалась.
   Значение совпадает с высотой .subcat__ico. */
/* line 546, theme.scss */
.subcat__ico img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply; }

/* line 547, theme.scss */
.listing {
  padding-top: 8px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 28px;
  align-items: start; }

/* В разделе первого уровня панели фильтров нет — товары занимают всю ширину. */
/* line 549, theme.scss */
.listing--nofilters {
  grid-template-columns: 1fr; }

/* line 553, theme.scss */
.filters__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff; }

/* line 555, theme.scss */
.filters__toggle .icon {
  width: 18px;
  height: 18px;
  color: var(--muted); }

/* line 556, theme.scss */
.filters__toggle-chev {
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #9a9aa0;
  border-bottom: 1.5px solid #9a9aa0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s; }

/* line 558, theme.scss */
.filters.is-open .filters__toggle-chev {
  transform: rotate(-135deg) translateY(-2px); }

/* line 559, theme.scss */
.filters.is-open .filters__toggle {
  margin-bottom: 14px; }

/* Панель фильтров едет вместе со списком товаров, а когда показался её низ —
   останавливается и дальше стоит на месте. Поэтому здесь НЕТ ни max-height,
   ни внутренней прокрутки: своя полоса прокрутки внутри панели ломала бы
   это ощущение (страница листается, а панель живёт отдельной жизнью).
   Величину top пересчитывает theme.js: при длинной панели она отрицательная,
   и прилипание срабатывает по нижнему краю, а не по верхнему. */
/* line 566, theme.scss */
.filters {
  position: sticky;
  top: var(--filters-top, 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px; }

/* line 567, theme.scss */
.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }

/* line 568, theme.scss */
.filters__title {
  font-weight: 800;
  font-size: 20px; }

/* line 569, theme.scss */
.filters__reset {
  font-size: 13px;
  color: var(--muted);
  transition: color .15s; }

/* line 570, theme.scss */
.filters__reset:hover {
  color: var(--accent); }

/* line 571, theme.scss */
.fgroup {
  border-top: 1px solid var(--line);
  padding: 18px 0; }

/* line 572, theme.scss */
.fgroup:empty {
  display: none; }

/* line 575, theme.scss */
.fgroup__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
  padding-right: 2px; }

/* line 578, theme.scss */
.fgroup__title::after {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 2px solid #9a9aa2;
  border-bottom: 2px solid #9a9aa2;
  transform: rotate(-135deg) translate(-2px, -2px);
  transition: transform .18s; }

/* line 581, theme.scss */
.fgroup.is-closed .fgroup__title {
  margin-bottom: 0; }

/* line 582, theme.scss */
.fgroup.is-closed .fgroup__title::after {
  transform: rotate(45deg) translate(-1px, -1px); }

/* line 583, theme.scss */
.fgroup.is-closed .fgroup__list,
.fgroup.is-closed .fgroup__search,
.fgroup.is-closed .fprice {
  display: none; }

/* line 590, theme.scss */
.fgroup__list {
  display: flex;
  flex-direction: column;
  gap: 12px; }

/* Отступ справа — под полосу прокрутки: на телефоне она рисуется поверх
   содержимого и срезала счётчики («531» превращалось в «53»). Только в панели
   бренда: в подкатегориях та же мелочь есть, но их вид сейчас не трогаем. */
/* line 594, theme.scss */
.filters--brand .fgroup__list {
  padding-right: 8px; }

/* line 595, theme.scss */
.fopt {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  padding: 1px 0; }

/* line 596, theme.scss */
.fopt__label {
  flex: 1;
  min-width: 0; }

/* line 597, theme.scss */
.fopt__count {
  color: #a0a0a8;
  font-size: 13px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums; }

/* line 598, theme.scss */
.fopt__count:empty {
  display: none; }

/* line 599, theme.scss */
.fopt--img .fopt__img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0; }

/* line 600, theme.scss */
.fopt--img .fopt__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

/* line 602, theme.scss */
.fgroup__row:empty {
  display: none; }

/* line 604, theme.scss */
.fgroup__more {
  display: none; }

/* line 605, theme.scss */
.fopt--over {
  display: none; }

/* line 606, theme.scss */
.fgroup.is-full .fopt--over {
  display: flex; }

/* line 607, theme.scss */
.fgroup__more-btn {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 2px 0;
  text-align: left;
  transition: opacity .15s; }

/* line 611, theme.scss */
.fpop {
  position: absolute;
  z-index: 40;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 190px; }

/* line 614, theme.scss */
.fpop::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px; }

/* line 616, theme.scss */
.fpop__count {
  position: relative;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap; }

/* line 617, theme.scss */
.fpop__go {
  position: relative;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 9px;
  transition: filter .15s; }

/* line 619, theme.scss */
.fpop__go:hover {
  filter: brightness(0.96); }

@media (max-width: 980px) {
  /* line 620, theme.scss */
  .fpop {
    display: none; } }
/* line 621, theme.scss */
.fgroup__more-btn:hover {
  opacity: .72; }

/* line 622, theme.scss */
.fgroup.is-closed .fgroup__more-btn {
  display: none; }

/* line 623, theme.scss */
.filters__preloader {
  padding: 18px 0;
  font-size: 14px;
  color: var(--muted); }

/* line 626, theme.scss */
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #93999e;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color .15s,background .15s; }

/* line 629, theme.scss */
input[type=checkbox]:hover {
  border-color: #6f767c; }

/* line 630, theme.scss */
input[type=checkbox]:checked {
  background: var(--accent);
  border-color: var(--accent); }

/* line 631, theme.scss */
input[type=checkbox]:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg); }

/* line 633, theme.scss */
input[type=checkbox]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px; }

/* line 637, theme.scss */
.frange {
  position: relative;
  height: 22px;
  margin: 2px 2px 12px; }

/* line 638, theme.scss */
.frange__rail {
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  height: 4px;
  border-radius: 2px;
  background: var(--line); }

/* line 639, theme.scss */
.frange__fill {
  position: absolute;
  top: 9px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent); }

/* line 640, theme.scss */
.frange__in {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 22px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  pointer-events: none; }

/* line 642, theme.scss */
.frange__in::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  cursor: pointer; }

/* line 644, theme.scss */
.frange__in::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  cursor: pointer; }

/* line 646, theme.scss */
.frange__in:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--accent);
  outline-offset: 2px; }

/* line 647, theme.scss */
.fprice {
  display: flex;
  align-items: center;
  gap: 10px; }

/* line 648, theme.scss */
.fprice__in {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  transition: border-color .15s; }

/* line 650, theme.scss */
.fprice__in:focus {
  outline: none;
  border-color: var(--accent); }

/* line 651, theme.scss */
.fprice__dash {
  color: var(--muted); }

/* line 652, theme.scss */
.fgroup--single {
  padding-bottom: 4px; }

/* line 653, theme.scss */
.filters__apply {
  width: 100%;
  margin-top: 14px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-sm); }

/* line 654, theme.scss */
.filters__apply:hover {
  filter: brightness(0.96); }

/* line 655, theme.scss */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px; }

/* line 656, theme.scss */
.toolbar__found {
  color: var(--muted);
  font-size: 15px; }

/* line 657, theme.scss */
.toolbar__found b {
  color: var(--ink);
  font-weight: 700; }

/* line 658, theme.scss */
.toolbar__sort {
  display: flex;
  align-items: center;
  gap: 10px; }

/* line 659, theme.scss */
.toolbar__sort span {
  color: var(--muted);
  font-size: 14px; }

/* line 660, theme.scss */
.sort-select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  background: #fff;
  cursor: pointer; }

/* line 664, theme.scss */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; }

/* line 665, theme.scss */
.grid__empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 16px; }

/* line 666, theme.scss */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap; }

/* line 667, theme.scss */
.pager__btn {
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center; }

/* line 668, theme.scss */
.pager__btn:hover {
  border-color: var(--accent);
  color: #c98f14; }

/* line 669, theme.scss */
.pager__btn.is-active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent); }

/* line 671, theme.scss */
.org {
  padding-top: 44px;
  padding-bottom: 8px; }

/* line 672, theme.scss */
.org__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px; }

/* line 673, theme.scss */
.org__h {
  font-weight: 800;
  font-size: 28px; }

/* line 674, theme.scss */
.org__nav {
  display: flex;
  gap: 10px; }

/* line 675, theme.scss */
.org__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: border-color .15s,color .15s; }

/* line 676, theme.scss */
.org__arrow:hover {
  border-color: var(--accent);
  color: var(--accent); }

/* line 677, theme.scss */
.org__arrow .icon {
  width: 20px;
  height: 20px; }

/* line 678, theme.scss */
.org__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none; }

/* line 679, theme.scss */
.org__track::-webkit-scrollbar {
  display: none; }

/* line 680, theme.scss */
.org__card {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--soft);
  border: 1px dashed #d7d7db;
  display: grid;
  place-items: center;
  color: #c4c4ca; }

/* line 681, theme.scss */
.org__card .icon {
  width: 42px;
  height: 42px; }

/* карточка с настоящим снимком: пунктирная рамка-заглушка уже не нужна,
   снимок закрывает всё поле, подпись читается по затемнению снизу */
/* line 684, theme.scss */
.org__card.is-photo {
  border: 0;
  background: var(--dark); }

/* line 685, theme.scss */
.org__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

/* line 686, theme.scss */
.org__card.is-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
  pointer-events: none; }

/* line 687, theme.scss */
.org__card.is-photo .org__cap {
  z-index: 1; }

/* line 688, theme.scss */
.org__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28); }

/* line 689, theme.scss */
.org__play span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center; }

/* line 690, theme.scss */
.org__play .icon {
  width: 26px;
  height: 26px;
  color: var(--dark);
  fill: var(--dark); }

/* line 691, theme.scss */
.org__cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); }

/* line 692, theme.scss */
.related {
  padding-top: 36px;
  padding-bottom: 8px; }

/* line 693, theme.scss */
.related__h {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 24px; }

/* line 694, theme.scss */
.related__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; }

/* line 695, theme.scss */
.trust {
  padding-top: 36px;
  padding-bottom: 56px; }

/* line 696, theme.scss */
.trust__grid {
  background: var(--soft);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; }

/* line 697, theme.scss */
.tr {
  display: flex;
  align-items: center;
  gap: 14px; }

/* line 698, theme.scss */
.tr__ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0; }

/* line 699, theme.scss */
.tr__ico .icon {
  width: 23px;
  height: 23px;
  color: var(--ink); }

/* line 700, theme.scss */
.tr__txt {
  font-size: 14px;
  line-height: 1.35; }

/* line 701, theme.scss */
.tr__txt b {
  font-weight: 700; }

/* line 701, theme.scss */
.tr__txt span {
  color: var(--muted); }

/* line 704, theme.scss */
.cart-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 24px; }

/* line 705, theme.scss */
.cart-head__title {
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.6px; }

/* line 706, theme.scss */
.cart-head__count {
  color: var(--muted);
  font-size: 16px; }

/* line 707, theme.scss */
.cart-head__clear {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px dotted #c2c2c8; }

/* line 708, theme.scss */
.cart-head__clear:hover {
  color: var(--badge-sale);
  border-bottom-color: currentColor; }

/* line 711, theme.scss */
.ship {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4faf5;
  border: 1px solid #d9ecdd;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 22px; }

/* line 712, theme.scss */
.ship--done {
  background: #f3faf4; }

/* line 713, theme.scss */
.ship__ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--ok);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0; }

/* line 714, theme.scss */
.ship__body {
  flex: 1;
  min-width: 0; }

/* line 715, theme.scss */
.ship__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px; }

/* line 716, theme.scss */
.ship__note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px; }

/* line 717, theme.scss */
.ship__bar {
  height: 6px;
  border-radius: 3px;
  background: #e3ece5;
  margin-top: 10px;
  overflow: hidden; }

/* line 718, theme.scss */
.ship__fill {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--grad-accent, var(--accent));
  transition: width .4s; }

/* line 719, theme.scss */
.ship__sum {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap; }

/* line 722, theme.scss */
.cart.is-busy {
  opacity: .6;
  pointer-events: none; }

/* line 723, theme.scss */
.cart {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
  padding-bottom: 64px; }

/* line 724, theme.scss */
.cart__list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden; }

/* line 726, theme.scss */
.citem {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 20px;
  padding: 22px;
  border-top: 1px solid var(--line); }

/* line 727, theme.scss */
.citem:first-child {
  border-top: 0; }

/* line 728, theme.scss */
.citem__media {
  width: 112px;
  height: 112px;
  border-radius: 12px;
  background: var(--card);
  display: grid;
  place-items: center;
  overflow: hidden; }

/* line 729, theme.scss */
.citem__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; }

/* line 730, theme.scss */
.citem__noimg .icon {
  width: 30px;
  height: 30px;
  color: #c4c4ca; }

/* line 731, theme.scss */
.citem__body {
  min-width: 0; }

/* line 732, theme.scss */
.citem__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #b0b0b6; }

/* line 733, theme.scss */
.citem__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5a5a60; }

/* line 734, theme.scss */
.citem__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 6px; }

/* line 735, theme.scss */
.citem__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap; }

/* line 736, theme.scss */
.citem__act {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted); }

/* line 737, theme.scss */
.citem__act:hover {
  color: var(--badge-sale); }

/* line 738, theme.scss */
.citem__prices {
  text-align: right;
  white-space: nowrap; }

/* line 739, theme.scss */
.citem__old {
  color: #a5a5ab;
  font-size: 13px;
  text-decoration: line-through; }

/* line 740, theme.scss */
.citem__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin-top: 2px; }

/* line 741, theme.scss */
.citem__each {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px; }

/* line 743, theme.scss */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden; }

/* line 744, theme.scss */
.qty__btn {
  width: 38px;
  height: 38px;
  font-size: 18px;
  color: var(--muted);
  display: grid;
  place-items: center; }

/* line 745, theme.scss */
.qty__btn:hover {
  background: var(--soft);
  color: var(--ink); }

/* line 746, theme.scss */
.qty__in {
  width: 44px;
  height: 38px;
  border: 0;
  outline: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums; }

/* line 749, theme.scss */
.cart__side {
  position: sticky;
  top: 20px; }

/* line 750, theme.scss */
.sum {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--sh-1, 0 8px 22px -12px rgba(20, 20, 22, 0.18)); }

/* line 751, theme.scss */
.sum__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px; }

/* line 752, theme.scss */
.sum__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px; }

/* line 753, theme.scss */
.sum__count {
  color: var(--muted);
  font-size: 13px; }

/* line 754, theme.scss */
.sum__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--muted); }

/* line 755, theme.scss */
.sum__row b {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-head); }

/* line 756, theme.scss */
.sum__soft {
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  text-align: right; }

/* line 757, theme.scss */
.sum__row--disc b {
  color: var(--ok); }

/* line 758, theme.scss */
.sum__promo {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 16px; }

/* line 759, theme.scss */
.sum__promo-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px; }

/* line 760, theme.scss */
.sum__promo-row {
  display: flex; }

/* line 761, theme.scss */
.sum__promo-in {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  padding: 12px 14px;
  font-size: 14px;
  outline: 0; }

/* line 762, theme.scss */
.sum__promo-in:focus {
  border-color: var(--accent); }

/* line 763, theme.scss */
.sum__promo-btn {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px; }

/* line 764, theme.scss */
.sum__promo-btn:hover {
  background: #e9e9ec; }

/* line 765, theme.scss */
.sum__promo-err {
  color: var(--badge-sale);
  font-size: 13px;
  margin-top: 8px; }

/* line 766, theme.scss */
.sum__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 18px;
  font-size: 16px; }

/* line 767, theme.scss */
.sum__total b {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.5px; }

/* line 768, theme.scss */
.sum__go {
  width: 100%;
  margin-top: 18px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter .15s; }

/* line 769, theme.scss */
.sum__go:hover {
  filter: brightness(0.96); }

/* line 770, theme.scss */
.sum__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
  text-align: center; }

/* line 771, theme.scss */
.sum__trust-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted); }

/* line 772, theme.scss */
.sum__trust-item .icon {
  width: 22px;
  height: 22px;
  color: #8a8a90; }

/* line 775, theme.scss */
.steps {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
  padding-bottom: 22px;
  flex-wrap: wrap; }

/* line 776, theme.scss */
.steps__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted); }

/* line 777, theme.scss */
.steps__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 13px; }

/* line 778, theme.scss */
.steps__item.is-done .steps__num, .steps__item.is-active .steps__num {
  background: var(--accent);
  color: var(--dark); }

/* line 779, theme.scss */
.steps__item.is-active {
  color: var(--ink); }

/* line 780, theme.scss */
.steps__item.is-done {
  color: var(--ink); }

/* line 781, theme.scss */
.steps__line {
  flex: 1;
  min-width: 24px;
  height: 2px;
  background: var(--line);
  border-radius: 1px; }

/* line 784, theme.scss */
.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
  padding-bottom: 64px; }

/* line 785, theme.scss */
.checkout__form {
  display: grid;
  gap: 18px; }

/* line 786, theme.scss */
.checkout__side {
  position: sticky;
  top: 20px; }

/* line 788, theme.scss */
.block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px; }

/* line 789, theme.scss */
.block__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 18px; }

/* line 790, theme.scss */
.block__num {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0; }

/* line 791, theme.scss */
.block--comment {
  padding: 18px 24px; }

/* line 792, theme.scss */
.block__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink); }

/* line 793, theme.scss */
.block__opt {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px; }

/* line 794, theme.scss */
.block__plus {
  margin-left: auto;
  font-size: 22px;
  color: var(--muted);
  line-height: 1; }

/* line 796, theme.scss */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; }

/* line 797, theme.scss */
.field {
  display: grid;
  gap: 6px;
  min-width: 0; }

/* line 798, theme.scss */
.field__label {
  font-size: 13px;
  color: var(--muted); }

/* line 799, theme.scss */
.field__label i {
  color: var(--badge-sale);
  font-style: normal; }

/* line 800, theme.scss */
.field__in {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 15px;
  outline: 0;
  background: #fff;
  transition: border-color .15s,box-shadow .15s; }

/* line 801, theme.scss */
.field__in:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 178, 51, 0.18); }

/* line 802, theme.scss */
.field__in--area {
  resize: vertical;
  min-height: 84px;
  font-family: var(--font-body); }

/* line 803, theme.scss */
.field__hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4; }

/* line 804, theme.scss */
.field__err {
  font-size: 12px;
  color: var(--badge-sale); }

/* line 805, theme.scss */
.field__err:empty {
  display: none; }

/* line 806, theme.scss */
.field.is-bad .field__in {
  border-color: var(--badge-sale); }

/* line 807, theme.scss */
.field--km {
  margin-top: 16px;
  max-width: 320px; }

/* line 810, theme.scss */
.pick {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .15s,background .15s; }

/* line 811, theme.scss */
.pick:hover {
  border-color: #dcdce0; }

/* line 812, theme.scss */
.pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none; }

/* line 813, theme.scss */
.pick__ico {
  width: 26px;
  height: 26px;
  color: var(--muted);
  flex-shrink: 0; }

/* line 814, theme.scss */
.pick__ico .icon {
  width: 26px;
  height: 26px; }

/* line 815, theme.scss */
.pick__body {
  display: grid;
  gap: 3px;
  min-width: 0; }

/* line 816, theme.scss */
.pick__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px; }

/* line 817, theme.scss */
.pick__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35; }

/* line 818, theme.scss */
.pick.is-on {
  border-color: var(--accent);
  background: #fffaf0; }

/* line 819, theme.scss */
.pick.is-on .pick__ico {
  color: var(--accent); }

/* line 820, theme.scss */
.pick--wide {
  max-width: none; }

/* line 822, theme.scss */
.ship-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line); }

/* line 823, theme.scss */
.pickup {
  background: var(--soft);
  border-radius: 12px;
  padding: 18px 20px; }

/* line 824, theme.scss */
.pickup__label {
  font-size: 13px;
  color: var(--muted); }

/* line 825, theme.scss */
.pickup__addr {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  margin-top: 6px; }

/* line 826, theme.scss */
.pickup__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 9px;
  margin-left: 6px;
  white-space: nowrap; }

/* line 827, theme.scss */
.pickup__hours {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px; }

/* line 828, theme.scss */
.pickup__map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent); }

/* line 829, theme.scss */
.pickup__map .icon {
  width: 16px;
  height: 16px; }

/* line 832, theme.scss */
.sum__list {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 6px;
  max-height: 270px;
  overflow-y: auto; }

/* line 833, theme.scss */
.sline {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center; }

/* line 834, theme.scss */
.sline__media {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--card);
  display: grid;
  place-items: center;
  overflow: hidden; }

/* line 835, theme.scss */
.sline__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; }

/* line 836, theme.scss */
.sline__body {
  display: grid;
  gap: 2px;
  min-width: 0; }

/* line 837, theme.scss */
.sline__name {
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

/* line 838, theme.scss */
.sline__qty {
  font-size: 12px;
  color: var(--muted); }

/* line 839, theme.scss */
.sline__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap; }

/* line 840, theme.scss */
.sum__edit {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px dotted #c2c2c8; }

/* line 841, theme.scss */
.sum__edit:hover {
  color: var(--accent); }

/* line 842, theme.scss */
.sum__err {
  margin-top: 12px;
  background: #fdecec;
  border: 1px solid #f6c9c9;
  color: #a51a24;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4; }

/* line 844, theme.scss */
.agree {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer; }

/* line 845, theme.scss */
.agree input {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0; }

/* line 846, theme.scss */
.agree a {
  color: var(--accent);
  text-decoration: underline; }

/* line 849, theme.scss */
.done {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 72px 0 96px; }

/* line 850, theme.scss */
.done__ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  display: grid;
  place-items: center; }

/* line 851, theme.scss */
.done__ico .icon {
  width: 32px;
  height: 32px; }

/* line 852, theme.scss */
.done__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 34px; }

/* line 853, theme.scss */
.done__text {
  color: var(--muted);
  font-size: 16px;
  max-width: 44ch;
  line-height: 1.5; }

/* line 854, theme.scss */
.done__text b {
  color: var(--ink); }

/* line 856, theme.scss */
.cart-empty {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 64px 0 80px; }

/* line 857, theme.scss */
.cart-empty .icon {
  width: 56px;
  height: 56px;
  color: #c4c4ca; }

/* line 858, theme.scss */
.cart-empty__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  margin-top: 6px; }

/* line 859, theme.scss */
.cart-empty__text {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px; }

/* line 862, theme.scss */
.footer {
  background: var(--dark);
  color: #cfcfd2; }

/* line 863, theme.scss */
.footer a:hover {
  color: var(--accent); }

/* line 864, theme.scss */
.footer__inner {
  padding-top: 56px;
  padding-bottom: 24px; }

/* line 865, theme.scss */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 32px; }

/* line 866, theme.scss */
.footer .logo__mark {
  border-radius: 50%;
  width: 46px;
  height: 46px; }

/* line 867, theme.scss */
.footer__brand {
  font-size: 20px; }

/* line 867, theme.scss */
.footer__brand em {
  color: var(--accent);
  font-style: normal; }

/* line 868, theme.scss */
.footer__brandline {
  font-size: 10px;
  color: #8a8a90;
  margin-top: 4px; }

/* line 869, theme.scss */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px; }

/* line 870, theme.scss */
.footer__soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-soft);
  display: grid;
  place-items: center;
  color: #cfcfd2;
  font-weight: 700;
  font-size: 14px; }

/* line 871, theme.scss */
.footer__soc .icon {
  width: 18px;
  height: 18px; }

/* line 872, theme.scss */
.footer__head {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px; }

/* line 873, theme.scss */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px; }

/* line 874, theme.scss */
.footer__phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff; }

/* line 875, theme.scss */
.footer__hours {
  font-size: 13px;
  color: #8a8a90;
  margin-top: 4px; }

/* line 876, theme.scss */
.footer__mail {
  font-size: 14px;
  margin-top: 16px; }

/* line 877, theme.scss */
.footer__addr {
  font-size: 14px;
  margin-top: 8px;
  color: #8a8a90; }

/* line 878, theme.scss */
.footer__bottom {
  border-top: 1px solid var(--dark-soft);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a8a90; }

/* line 879, theme.scss */
.footer__bottom-links {
  display: flex;
  gap: 28px; }

/* line 884, theme.scss */
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease,transform .7s ease; }

/* line 885, theme.scss */
.js-anim [data-reveal].is-in {
  opacity: 1;
  transform: none; }

/* line 889, theme.scss */
.pcard {
  padding-bottom: 80px;
  --pa:#F5A000;
  --pa-h:#E89500;
  --pa-a:#D98200;
  --ptext:#171A1E;
  --pt2:#4B5563;
  --pt3:#7A8088;
  --pline:#E7E9ED;
  --pdiv:#EEF0F2;
  --plink:#1976D2;
  --pin:#18A957;
  --pout:#D97706;
  --pred:#E5484D;
  --pgrey:#F1F2F4;
  --pgrey-h:#E6E8EB;
  --psoft:#F7F8F9;
  font-family: 'Inter',Arial,sans-serif;
  color: var(--ptext); }

/* line 900, theme.scss */
.pcard .crumbs {
  color: var(--pt3);
  font-size: 13px;
  padding-top: 32px;
  padding-bottom: 0; }

/* line 902, theme.scss */
.phead {
  padding-top: 26px;
  padding-bottom: 36px; }

/* line 903, theme.scss */
.phead__title {
  font-family: 'Inter',sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -.3px; }

/* line 904, theme.scss */
.phead__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap; }

/* line 905, theme.scss */
.phead__art {
  font-size: 14px;
  color: var(--pt3); }

/* line 906, theme.scss */
.phead__sep {
  color: var(--pline); }

/* line 907, theme.scss */
.phead__stars {
  display: inline-flex;
  gap: 2px; }

/* line 908, theme.scss */
.phead__stars .icon {
  width: 16px;
  height: 16px;
  fill: var(--pa);
  stroke: var(--pa); }

/* line 909, theme.scss */
.phead__stars .icon.off {
  fill: #e4e6ea;
  stroke: #e4e6ea; }

/* line 910, theme.scss */
.phead__rate {
  font-weight: 600;
  font-size: 14px; }

/* line 911, theme.scss */
.phead__reviews {
  color: var(--plink);
  font-size: 14px; }

/* line 912, theme.scss */
.phead__reviews:hover {
  color: var(--plink);
  text-decoration: underline; }

/* line 914, theme.scss */
.phead__warranty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ptext); }

/* line 915, theme.scss */
.phead__warranty .icon {
  width: 18px;
  height: 18px;
  color: var(--pa);
  stroke: var(--pa); }

/* line 922, theme.scss */
.phero {
  display: grid;
  grid-template-columns: 96px minmax(420px, 1fr) 286px 360px;
  column-gap: 24px;
  row-gap: 24px;
  align-items: start;
  padding-bottom: 8px; }

/* line 923, theme.scss */
.phero__key {
  padding-right: 24px; }

/* line 924, theme.scss */
.phero__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px; }

/* line 925, theme.scss */
.pthumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid var(--pline);
  background: #fff;
  padding: 5px;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: border-color .15s; }

/* line 926, theme.scss */
.pthumb img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

/* line 927, theme.scss */
.pthumb.is-active {
  border: 2px solid var(--pa); }

/* line 928, theme.scss */
.pthumb:hover {
  border-color: var(--pa); }

/* line 929, theme.scss */
.pthumb--video {
  background: #111315;
  color: #fff;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  border-color: #111315; }

/* line 930, theme.scss */
.pthumb__play {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center; }

/* line 931, theme.scss */
.pthumb__play .icon {
  width: 12px;
  height: 12px;
  fill: #111315;
  stroke: #111315; }

/* line 933, theme.scss */
.phero__photo {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: zoom-in; }

/* line 934, theme.scss */
.phero__photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

/* line 935, theme.scss */
.imgslot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--pt3); }

/* line 937, theme.scss */
.pkey__h {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px; }

/* line 938, theme.scss */
.pkey__list {
  display: flex;
  flex-direction: column; }

/* line 939, theme.scss */
.phero__key {
  min-width: 0; }

/* line 940, theme.scss */
.pkey {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 36px;
  padding: 8px 0;
  border-bottom: 1px solid var(--pdiv);
  font-size: 13px;
  line-height: 1.35; }

/* line 941, theme.scss */
.pkey__k {
  color: var(--pt3);
  flex: 0 0 auto;
  max-width: 52%; }

/* line 942, theme.scss */
.pkey__v {
  font-weight: 600;
  color: #1A1D21;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere; }

/* line 943, theme.scss */
.pkey__all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--ptext);
  font-weight: 600;
  font-size: 13px;
  transition: gap .15s,color .15s; }

/* line 944, theme.scss */
.pkey__all:hover {
  gap: 11px;
  color: var(--pa-a); }

/* line 945, theme.scss */
.pkey__all .icon {
  width: 15px;
  height: 15px; }

/* line 947, theme.scss */
.pbuy {
  width: 100%;
  background: #fff;
  border: 1px solid var(--pline);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column; }

/* line 949, theme.scss */
.pbuy__fav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  color: #4B5563;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 16px; }

/* line 950, theme.scss */
.pbuy__fav .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.6; }

/* line 951, theme.scss */
.pbuy__fav:hover {
  color: var(--pa); }

/* line 952, theme.scss */
.pbuy__fav.is-fav {
  color: var(--pred); }

/* line 952, theme.scss */
.pbuy__fav.is-fav .icon {
  fill: var(--pred);
  stroke: var(--pred); }

/* line 954, theme.scss */
.pbuy__price {
  display: flex;
  flex-direction: column;
  gap: 2px; }

/* line 955, theme.scss */
.pbuy__plabel {
  font-size: 13px;
  color: var(--pt3); }

/* line 956, theme.scss */
.pbuy__prow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap; }

/* line 957, theme.scss */
.pbuy__now {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #111315; }

/* line 958, theme.scss */
.pbuy__unit {
  font-size: 15px;
  color: var(--pt2); }

/* line 959, theme.scss */
.pbuy__old {
  font-size: 17px;
  color: var(--pt3);
  text-decoration: line-through; }

/* line 960, theme.scss */
.pbuy__promo {
  height: 56px;
  padding: 10px 12px;
  border: 1px dashed #D9DDE2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  margin-top: 16px; }

/* line 961, theme.scss */
.pbuy__promo b {
  font-weight: 600;
  font-size: 14px; }

/* line 962, theme.scss */
.pbuy__promo span {
  font-size: 12px;
  color: var(--pt3); }

/* line 963, theme.scss */
.pbuy__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  border-radius: 8px;
  background: var(--pa);
  color: #111315;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  margin-top: 14px;
  transition: background .15s; }

/* line 964, theme.scss */
.pbuy__cart:hover {
  background: var(--pa-h);
  color: #111315; }

/* line 964, theme.scss */
.pbuy__cart:active {
  background: var(--pa-a); }

/* line 965, theme.scss */
.pbuy__cart .icon {
  width: 20px;
  height: 20px; }

/* line 966, theme.scss */
.pbuy__stock {
  display: flex;
  justify-content: center;
  margin-top: 12px; }

/* line 967, theme.scss */
.pstock {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  color: #1A1D21; }

/* line 968, theme.scss */
.pstock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0; }

/* line 969, theme.scss */
.pstock--in .pstock__dot {
  background: var(--pin);
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.14); }

/* line 970, theme.scss */
.pstock--out {
  color: var(--pout); }

/* line 970, theme.scss */
.pstock--out .pstock__dot {
  background: var(--pout);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14); }

/* line 973, theme.scss */
.pbuy__quick {
  height: 48px;
  border-radius: 8px;
  background: var(--pgrey);
  color: var(--ptext);
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  margin-top: 14px;
  transition: background .15s; }

/* line 974, theme.scss */
.pbuy__quick:hover {
  background: var(--pgrey-h); }

/* line 977, theme.scss */
.pget {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px; }

/* line 978, theme.scss */
.pget__i {
  display: flex;
  gap: 12px;
  align-items: flex-start; }

/* line 979, theme.scss */
.pget__ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--ptext);
  margin-top: 1px; }

/* line 980, theme.scss */
.pget__ic .icon {
  width: 26px;
  height: 26px; }

/* line 981, theme.scss */
.pget__t {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.4; }

/* line 982, theme.scss */
.pget__t b {
  font-weight: 600;
  font-size: 16px; }

/* line 983, theme.scss */
.pget__t span {
  font-size: 14px;
  color: var(--pt3); }

/* line 988, theme.scss */
.pnav {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  height: 56px;
  align-items: stretch;
  border-bottom: 1px solid var(--pline);
  margin-top: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 20; }

/* line 989, theme.scss */
.pnav::-webkit-scrollbar {
  display: none; }

/* line 990, theme.scss */
.pnav__i {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #171A1E;
  white-space: nowrap;
  transition: color .15s; }

/* line 991, theme.scss */
.pnav__i:hover {
  color: var(--pa-a); }

/* line 992, theme.scss */
.pnav__i.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--pa);
  border-radius: 3px 3px 0 0; }

/* line 994, theme.scss */
.psec {
  padding-top: 48px;
  scroll-margin-top: 96px; }

/* line 995, theme.scss */
#s-specs {
  padding-top: 28px; }

/* line 997, theme.scss */
.psec__h {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px; }

/* line 998, theme.scss */
.psec__h--lg {
  font-size: 24px;
  line-height: 30px; }

/* line 999, theme.scss */
.psplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start; }

/* line 1000, theme.scss */
.pspecs__list {
  display: flex;
  flex-direction: column; }

/* line 1001, theme.scss */
.pspec {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 8px;
  min-height: 24px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--pdiv);
  font-size: 13px; }

/* line 1002, theme.scss */
.pspec__k {
  color: var(--pt3); }

/* line 1003, theme.scss */
.pspec__v {
  font-weight: 500;
  color: #1A1D21; }

/* line 1004, theme.scss */
.pdesc__body {
  font-size: 15px;
  line-height: 24px;
  color: var(--pt2); }

/* line 1005, theme.scss */
.pdesc__body p {
  margin-bottom: 16px; }

/* line 1007, theme.scss */
#s-delivery {
  padding-top: 64px; }

/* line 1009, theme.scss */
.pdeliv {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) 190px;
  gap: 36px;
  align-items: start; }

/* line 1010, theme.scss */
.pcalc__h {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px; }

/* line 1011, theme.scss */
.pcalc__field {
  position: relative; }

/* line 1013, theme.scss */
.pcalc__hints {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--pline);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 30;
  overflow: hidden;
  max-height: 260px;
  overflow-y: auto; }

/* line 1014, theme.scss */
.pcalc__hints[hidden] {
  display: none; }

/* line 1015, theme.scss */
.pcalc__hint {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ptext);
  transition: background .12s; }

/* line 1016, theme.scss */
.pcalc__hint:hover {
  background: var(--psoft); }

/* line 1017, theme.scss */
.pcalc__hint + .pcalc__hint {
  border-top: 1px solid var(--pdiv); }

/* line 1018, theme.scss */
.pcalc__in {
  width: 100%;
  height: 40px;
  border: 1px solid #D8DCE1;
  border-radius: 8px;
  padding: 0 40px 0 12px;
  font-size: 14px; }

/* line 1019, theme.scss */
.pcalc__in:focus {
  outline: none;
  border-color: var(--pa); }

/* line 1020, theme.scss */
.pcalc__ic {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--pt3); }

/* line 1021, theme.scss */
.pcalc__ic .icon {
  width: 18px;
  height: 18px; }

/* line 1022, theme.scss */
.pcalc__go {
  height: 40px;
  width: 100%;
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--pa);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ptext);
  transition: background .15s; }

/* line 1023, theme.scss */
.pcalc__go:hover {
  background: #fff7ea; }

/* line 1024, theme.scss */
.pcalc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pt2); }

/* line 1025, theme.scss */
.pcalc__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start; }

/* line 1026, theme.scss */
.pcalc__ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ptext); }

/* line 1027, theme.scss */
.pcalc__ico .icon {
  width: 20px;
  height: 20px; }

/* line 1029, theme.scss */
.pcalc__result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--psoft);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ptext); }

/* line 1030, theme.scss */
.pcalc__result--ok {
  background: #fff7ea;
  border: 1px solid rgba(245, 160, 0, 0.35); }

/* line 1031, theme.scss */
.pcalc__note {
  color: var(--pt3);
  font-size: 13px; }

/* line 1033, theme.scss */
.pmap {
  position: relative;
  width: 100%;
  height: 420px;
  background: #F5F6F7;
  overflow: hidden;
  border-radius: 12px; }

/* line 1034, theme.scss */
.pmap--fail::after {
  content: 'Карта не загрузилась';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--pt3);
  font-size: 14px; }

/* line 1035, theme.scss */
.pmap ymaps {
  border-radius: 0; }

/* line 1037, theme.scss */
.pmap__zone {
  position: absolute;
  border-radius: 50%; }

/* line 1038, theme.scss */
.pmap__zone--ckad {
  width: 270px;
  height: 270px;
  background: rgba(255, 207, 77, 0.2);
  border: 1px solid #B2B7BD; }

/* line 1039, theme.scss */
.pmap__zone--mkad {
  width: 170px;
  height: 170px;
  background: rgba(245, 160, 0, 0.22);
  border: 1px solid #8B9198; }

/* line 1040, theme.scss */
.pmap__pin {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pa);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2; }

/* line 1041, theme.scss */
.pmap__pin .icon {
  width: 18px;
  height: 18px;
  fill: #fff;
  stroke: #fff; }

/* line 1042, theme.scss */
.pmap__ring {
  position: absolute;
  border-radius: 50%;
  display: grid;
  justify-items: center;
  pointer-events: none; }

/* line 1043, theme.scss */
.pmap__ring--mkad {
  width: 170px;
  height: 170px; }

/* line 1043, theme.scss */
.pmap__ring--ckad {
  width: 270px;
  height: 270px; }

/* line 1044, theme.scss */
.pmap__lbl {
  font-size: 11px;
  font-weight: 700;
  color: #5b6066;
  background: #F5F6F7;
  padding: 0 4px;
  margin-top: -7px; }

/* line 1045, theme.scss */
.pmap__legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px; }

/* line 1046, theme.scss */
.pmap__legend li {
  display: flex;
  align-items: center;
  gap: 10px; }

/* line 1047, theme.scss */
.pmap__key {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0; }

/* line 1049, theme.scss */
.pmap__key--mkad {
  background: rgba(24, 169, 87, 0.3);
  border: 1px solid #18A957; }

/* line 1050, theme.scss */
.pmap__key--ckad {
  background: rgba(255, 214, 0, 0.38);
  border: 1px solid #E0A800; }

/* line 1052, theme.scss */
#s-docs {
  padding-top: 64px; }

/* line 1053, theme.scss */
.pdocs {
  display: flex;
  flex-direction: column; }

/* line 1054, theme.scss */
.pdoc {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  border-bottom: 1px solid var(--pdiv); }

/* line 1055, theme.scss */
.pdoc__ico {
  color: var(--pred);
  display: grid;
  place-items: center; }

/* line 1056, theme.scss */
.pdoc__ico .icon {
  width: 18px;
  height: 18px; }

/* line 1057, theme.scss */
.pdoc__name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column; }

/* line 1058, theme.scss */
.pdoc__meta {
  font-weight: 400;
  font-size: 12px;
  color: var(--pt3); }

/* line 1059, theme.scss */
.pdoc__dl {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--pt3);
  border-radius: 8px; }

/* line 1060, theme.scss */
.pdoc__dl:hover {
  color: var(--pa);
  background: var(--psoft); }

/* line 1061, theme.scss */
.pdocs__empty {
  color: var(--pt3);
  font-size: 15px; }

/* line 1063, theme.scss */
#s-reviews {
  padding-top: 64px; }

/* line 1064, theme.scss */
.prev {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 64px;
  align-items: start; }

/* line 1065, theme.scss */
.prev__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px; }

/* line 1066, theme.scss */
.pchip {
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  background: var(--pgrey);
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--ptext);
  transition: background .15s; }

/* line 1067, theme.scss */
.pchip.is-active {
  background: #fff;
  border-color: #1A1D21; }

/* line 1068, theme.scss */
.prev__list {
  display: flex;
  flex-direction: column; }

/* line 1069, theme.scss */
.prc {
  padding: 18px 0;
  border-bottom: 1px solid var(--pline); }

/* line 1070, theme.scss */
.prc:first-child {
  padding-top: 0; }

/* line 1071, theme.scss */
.prc__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px; }

/* line 1072, theme.scss */
.prc__stars .icon {
  width: 18px;
  height: 18px;
  fill: var(--pa);
  stroke: var(--pa); }

/* line 1073, theme.scss */
.prc__stars .icon.off {
  fill: #e4e6ea;
  stroke: #e4e6ea; }

/* line 1074, theme.scss */
.prc__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px; }

/* line 1075, theme.scss */
.prc__name {
  font-weight: 700;
  font-size: 16px; }

/* line 1076, theme.scss */
.prc__date {
  font-size: 13px;
  color: var(--pt3); }

/* line 1077, theme.scss */
.prc__text {
  font-size: 15px;
  line-height: 22px;
  color: var(--ptext); }

/* line 1078, theme.scss */
.prc__acts {
  display: flex;
  gap: 10px;
  margin-top: 12px; }

/* line 1079, theme.scss */
.prc__act {
  height: 28px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--pgrey);
  font-size: 13px;
  color: var(--ptext);
  transition: background .15s; }

/* line 1080, theme.scss */
.prc__act:hover {
  background: var(--pgrey-h); }

/* line 1081, theme.scss */
.prev__empty {
  color: var(--pt3);
  font-size: 15px; }

/* line 1082, theme.scss */
.prev__sum {
  position: sticky;
  top: 72px; }

/* line 1083, theme.scss */
.psum__score {
  font-weight: 700;
  font-size: 32px;
  line-height: 1; }

/* line 1084, theme.scss */
.psum__stars {
  display: flex;
  gap: 3px;
  margin: 8px 0; }

/* line 1085, theme.scss */
.psum__stars .icon {
  width: 22px;
  height: 22px;
  fill: var(--pa);
  stroke: var(--pa); }

/* line 1086, theme.scss */
.psum__stars .icon.off {
  fill: #e4e6ea;
  stroke: #e4e6ea; }

/* line 1087, theme.scss */
.psum__count {
  font-size: 14px;
  color: var(--pt3); }

/* line 1088, theme.scss */
.psum__btn {
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  background: var(--pgrey);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  margin: 16px 0 20px;
  transition: background .15s; }

/* line 1089, theme.scss */
.psum__btn:hover {
  background: var(--pgrey-h); }

/* line 1091, theme.scss */
.psum__dist {
  display: flex;
  flex-direction: column; }

/* line 1092, theme.scss */
.pdist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 28px;
  font-size: 13px; }

/* line 1093, theme.scss */
.pdist__stars {
  display: inline-flex;
  gap: 2px; }

/* line 1094, theme.scss */
.pdist__stars .icon {
  width: 14px;
  height: 14px;
  fill: var(--pa);
  stroke: var(--pa); }

/* line 1095, theme.scss */
.pdist__stars .icon.off {
  fill: #e4e6ea;
  stroke: #e4e6ea; }

/* line 1096, theme.scss */
.pdist__cnt {
  color: var(--pt3);
  white-space: nowrap; }

/* line 1098, theme.scss */
.prform {
  margin-top: 32px;
  max-width: 640px; }

/* line 1099, theme.scss */
.prform__h {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px; }

/* line 1100, theme.scss */
.prform__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px; }

/* line 1101, theme.scss */
.prform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px; }

/* line 1102, theme.scss */
.prform__in, .prform__area {
  width: 100%;
  border: 1px solid var(--pline);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px; }

/* line 1103, theme.scss */
.prform__in:focus, .prform__area:focus {
  outline: none;
  border-color: var(--pa); }

/* line 1104, theme.scss */
.prform__area {
  margin-bottom: 12px; }

/* line 1105, theme.scss */
.pbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px; }

/* line 1106, theme.scss */
.pbtn--dark {
  background: #0B0D0F;
  color: #fff; }

/* line 1107, theme.scss */
.pbtn--dark:hover {
  background: #22252a;
  color: #fff; }

/* line 1109, theme.scss */
.ptrust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 88px;
  margin-top: 48px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--pline); }

/* line 1110, theme.scss */
.ptrust__i {
  display: flex;
  gap: 12px;
  align-items: center; }

/* line 1111, theme.scss */
.ptrust__ic {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ptext); }

/* line 1112, theme.scss */
.ptrust__ic .icon {
  width: 24px;
  height: 24px; }

/* line 1113, theme.scss */
.ptrust__t {
  display: flex;
  flex-direction: column; }

/* line 1114, theme.scss */
.ptrust__t b {
  font-weight: 600;
  font-size: 14px; }

/* line 1115, theme.scss */
.ptrust__t span {
  font-size: 12px;
  color: var(--pt3); }

/* line 1118, theme.scss */
.pbrand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--pdiv); }

/* line 1119, theme.scss */
.pbrand__label {
  font-size: 13px;
  color: var(--pt3); }

/* line 1120, theme.scss */
.pbrand__logo {
  max-width: 180px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain; }

/* line 1121, theme.scss */
.pbrand__name {
  font-weight: 700;
  font-size: 20px;
  color: var(--ptext); }

/* line 1124, theme.scss */
.rvw {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; }

/* line 1125, theme.scss */
.rvw[hidden] {
  display: none; }

/* line 1126, theme.scss */
.rvw__back {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 15, 0.55); }

/* line 1127, theme.scss */
.rvw__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28); }

/* line 1128, theme.scss */
.rvw__x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #7A8088; }

/* line 1129, theme.scss */
.rvw__x:hover {
  background: #F1F2F4;
  color: #171A1E; }

/* line 1130, theme.scss */
.rvw__x .icon {
  width: 20px;
  height: 20px; }

/* line 1131, theme.scss */
.rvw__h {
  font-family: 'Inter',sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px; }

/* line 1132, theme.scss */
.rvw__sub {
  font-size: 14px;
  color: #7A8088;
  margin-bottom: 22px; }

/* line 1133, theme.scss */
.rvw__stars {
  margin-bottom: 18px; }

/* line 1134, theme.scss */
.rvw__lbl {
  display: block;
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 8px; }

/* line 1135, theme.scss */
.rvw__set {
  display: flex;
  gap: 6px; }

/* line 1136, theme.scss */
.rvw__star {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #e4e6ea; }

/* line 1137, theme.scss */
.rvw__star .icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor; }

/* line 1138, theme.scss */
.rvw__star.is-on {
  color: #F5A000; }

/* line 1139, theme.scss */
.rvw__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px; }

/* line 1140, theme.scss */
.rvw__in, .rvw__area {
  width: 100%;
  border: 1px solid #E7E9ED;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px; }

/* line 1141, theme.scss */
.rvw__in:focus, .rvw__area:focus {
  outline: none;
  border-color: #F5A000; }

/* line 1142, theme.scss */
.rvw__area {
  margin-bottom: 14px;
  resize: vertical;
  font-family: inherit; }

/* line 1143, theme.scss */
.rvw__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap; }

/* line 1144, theme.scss */
.rvw__send {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #F5A000;
  color: #111315;
  font-weight: 700;
  font-size: 16px;
  transition: background .15s; }

/* line 1145, theme.scss */
.rvw__send:hover {
  background: #E89500; }

/* line 1146, theme.scss */
.rvw__note {
  font-size: 12px;
  color: #7A8088;
  margin-top: 12px;
  text-align: center; }

@media (max-width: 640px) {
  /* line 1148, theme.scss */
  .rvw__box {
    padding: 24px 20px; }

  /* line 1149, theme.scss */
  .rvw__row {
    grid-template-columns: 1fr; } }
/* line 1153, theme.scss */
.rel {
  padding-top: 64px; }

/* line 1154, theme.scss */
.rel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px; }

/* line 1155, theme.scss */
.rel__h {
  font-family: 'Inter',sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px; }

/* line 1156, theme.scss */
.rel__nav {
  display: flex;
  gap: 10px; }

/* line 1157, theme.scss */
.rel__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #E7E9ED;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #171A1E;
  transition: border-color .15s,color .15s; }

/* line 1158, theme.scss */
.rel__arrow:hover {
  border-color: #F5A000;
  color: #F5A000; }

/* line 1159, theme.scss */
.rel__arrow .icon {
  width: 18px;
  height: 18px; }

/* line 1160, theme.scss */
.rel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px; }

/* line 1161, theme.scss */
.rel__track::-webkit-scrollbar {
  display: none; }

/* line 1162, theme.scss */
.relcard {
  position: relative;
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid #E7E9ED;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow .15s; }

/* line 1163, theme.scss */
.relcard:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }

/* line 1164, theme.scss */
.relcard__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #9aa0a6; }

/* line 1165, theme.scss */
.relcard__fav .icon {
  width: 18px;
  height: 18px; }

/* line 1166, theme.scss */
.relcard__fav:hover {
  color: #e5484d; }

/* line 1167, theme.scss */
.relcard__fav.is-fav {
  color: #e5484d; }

/* line 1168, theme.scss */
.relcard__fav.is-fav .icon {
  fill: #e5484d;
  stroke: #e5484d; }

/* line 1169, theme.scss */
.relcard__pic {
  height: 150px;
  display: grid;
  place-items: center; }

/* line 1170, theme.scss */
.relcard__pic img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain; }

/* line 1171, theme.scss */
.relcard__name {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  min-height: 36px;
  color: #171A1E; }

/* line 1172, theme.scss */
.relcard__name:hover {
  color: #F5A000; }

/* line 1173, theme.scss */
.relcard__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto; }

/* line 1174, theme.scss */
.relcard__price {
  font-weight: 700;
  font-size: 17px; }

/* line 1175, theme.scss */
.relcard__stock {
  font-size: 12px;
  font-weight: 600; }

/* line 1176, theme.scss */
.relcard__stock--in {
  color: #18A957; }

/* line 1177, theme.scss */
.relcard__stock--out {
  color: #D97706; }

/* line 1180, theme.scss */
.favpage {
  padding-top: 8px;
  padding-bottom: 64px; }

/* line 1181, theme.scss */
.favpage__h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.4px; }

/* line 1182, theme.scss */
.favpage__sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px; }

/* line 1183, theme.scss */
.favpage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px; }

/* line 1184, theme.scss */
.favcard {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .15s; }

/* line 1185, theme.scss */
.favcard:hover {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }

/* line 1186, theme.scss */
.favcard__del {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #e5484d;
  background: #fff; }

/* line 1187, theme.scss */
.favcard__del .icon {
  width: 19px;
  height: 19px;
  fill: #e5484d;
  stroke: #e5484d; }

/* line 1188, theme.scss */
.favcard__del:hover {
  background: #fdeaea; }

/* line 1189, theme.scss */
.favcard__pic {
  height: 170px;
  display: grid;
  place-items: center; }

/* line 1190, theme.scss */
.favcard__pic img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain; }

/* line 1191, theme.scss */
.favcard__name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  min-height: 38px; }

/* line 1192, theme.scss */
.favcard__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto; }

/* line 1193, theme.scss */
.favcard__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px; }

/* line 1194, theme.scss */
.favcard__stock {
  font-size: 12px;
  font-weight: 600; }

/* line 1195, theme.scss */
.favcard__stock--in {
  color: #2d7a45; }

/* line 1196, theme.scss */
.favcard__stock--out {
  color: #a5a5ab; }

/* line 1197, theme.scss */
.favpage__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 70px 0; }

/* line 1199, theme.scss */
.favpage__empty[hidden] {
  display: none; }

/* line 1200, theme.scss */
.favpage__ico {
  width: 52px;
  height: 52px;
  color: #d7d7dc; }

/* line 1201, theme.scss */
.favpage__note {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
  max-width: 420px; }

/* line 1202, theme.scss */
.favpage__btn {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px; }

/* line 1203, theme.scss */
.favpage__btn:hover {
  background: #eaa61f;
  color: var(--dark); }

@media (max-width: 1340px) {
  /* line 1211, theme.scss */
  .phero {
    grid-template-columns: 88px minmax(320px, 1fr) 280px 330px;
    gap: 20px; }

  /* line 1212, theme.scss */
  .pthumb {
    width: 64px;
    height: 64px; } }
@media (max-width: 1100px) {
  /* line 1217, theme.scss */
  :root {
    --pad:18px; }

  /* line 1218, theme.scss */
  .hero__inner {
    grid-template-columns: 1fr; }

  /* line 1219, theme.scss */
  .hero__photo {
    width: 100%;
    opacity: .62; }

  /* line 1220, theme.scss */
  .hero__photo::after {
    background: linear-gradient(180deg, rgba(14, 14, 17, 0.62) 0%, rgba(14, 14, 17, 0.86) 62%, rgba(14, 14, 17, 0.95) 100%); }

  /* line 1221, theme.scss */
  .cats__grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1222, theme.scss */
  .goods__grid {
    grid-template-columns: repeat(3, 1fr); }

  /* line 1223, theme.scss */
  .promos__grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1224, theme.scss */
  .why__inner {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1224, theme.scss */
  .why__heading {
    grid-column: 1/-1; }

  /* line 1225, theme.scss */
  .about__inner {
    grid-template-columns: 1fr; }

  /* line 1226, theme.scss */
  .listing {
    grid-template-columns: 1fr; }

  /* line 1227, theme.scss */
  .grid {
    grid-template-columns: repeat(3, 1fr); }

  /* line 1228, theme.scss */
  .subcats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; }

  /* line 1229, theme.scss */
  .subcat__ico {
    height: 126px; }

  /* line 1230, theme.scss */
  .subcat__ico img {
    height: 126px; }

  /* line 1232, theme.scss */
  .phero {
    grid-template-columns: 96px minmax(240px, 1fr) 300px; }

  /* line 1233, theme.scss */
  .phero__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1; }

  /* line 1234, theme.scss */
  .phero__key {
    grid-column: 1/-1;
    margin-top: 8px; }

  /* line 1235, theme.scss */
  .pbuy {
    width: 100%; }

  /* line 1236, theme.scss */
  .psplit {
    gap: 32px; }

  /* line 1237, theme.scss */
  .pdeliv {
    grid-template-columns: 1fr;
    gap: 24px; }

  /* line 1237, theme.scss */
  .pmap {
    width: 100%; }

  /* line 1238, theme.scss */
  .pmap__legend {
    flex-direction: row;
    gap: 24px; }

  /* line 1239, theme.scss */
  .prev {
    grid-template-columns: 1fr;
    gap: 32px; }

  /* line 1239, theme.scss */
  .prev__sum {
    position: static; }

  /* line 1240, theme.scss */
  .pnav__i {
    font-size: 16px; }

  /* line 1241, theme.scss */
  .related__grid {
    grid-template-columns: repeat(3, 1fr); }

  /* line 1242, theme.scss */
  .trust__grid {
    grid-template-columns: 1fr 1fr; }

  /* line 1243, theme.scss */
  .footer__grid {
    grid-template-columns: 1fr 1fr; }

  /* line 1244, theme.scss */
  .phone {
    display: none; }

  /* line 1245, theme.scss */
  .cart, .checkout {
    grid-template-columns: 1fr; }

  /* line 1246, theme.scss */
  .cart__side, .checkout__side {
    position: static; }

  /* line 1249, theme.scss */
  .filters {
    position: static;
    max-height: none;
    overflow: visible; }

  /* line 1250, theme.scss */
  .filters__toggle {
    display: flex; }

  /* line 1251, theme.scss */
  .filters__body {
    display: none; }

  /* line 1252, theme.scss */
  .filters.is-open .filters__body {
    display: block; }

  /* В панели бренда заголовок на телефоне не нужен: над ним кнопка «Фильтр»,
     и в раскрытом виде получалось «Фильтр» и сразу «Бренд». «Сбросить» остаётся.
     Панель подкатегорий не трогаем — её вид менять не просили. */
  /* line 1256, theme.scss */
  .filters--brand .filters__title {
    display: none; }

  /* line 1259, theme.scss */
  .filters .fopt {
    padding: 7px 0; }

  /* line 1260, theme.scss */
  .filters input[type=checkbox] {
    width: 22px;
    height: 22px; }

  /* line 1261, theme.scss */
  .filters input[type=checkbox]:checked::after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px; }

  /* line 1262, theme.scss */
  .frange {
    height: 32px;
    margin-bottom: 14px; }

  /* line 1263, theme.scss */
  .frange__rail, .frange__fill {
    top: 14px; }

  /* line 1264, theme.scss */
  .frange__in {
    height: 32px; }

  /* line 1265, theme.scss */
  .frange__in::-webkit-slider-thumb {
    width: 24px;
    height: 24px; }

  /* line 1266, theme.scss */
  .frange__in::-moz-range-thumb {
    width: 24px;
    height: 24px; } }
@media (max-width: 860px) {
  /* line 1271, theme.scss */
  .goods__grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1272, theme.scss */
  .related__grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1274, theme.scss */
  .phero {
    grid-template-columns: 1fr;
    gap: 20px; }

  /* line 1275, theme.scss */
  .phero__thumbs {
    flex-direction: row;
    flex-wrap: wrap;
    order: 2; }

  /* line 1276, theme.scss */
  .phero__photo {
    order: 1;
    margin: 0 auto; }

  /* line 1277, theme.scss */
  .phero__key {
    order: 3; }

  /* line 1277, theme.scss */
  .phero__buy {
    order: 4; }

  /* line 1278, theme.scss */
  .psplit {
    grid-template-columns: 1fr;
    gap: 28px; }

  /* line 1279, theme.scss */
  .prev__sum {
    margin-bottom: 8px; } }
@media (max-width: 640px) {
  /* line 1284, theme.scss */
  :root {
    --pad:14px;
    --radius:12px; }

  /* line 1286, theme.scss */
  .phead__title {
    font-size: 24px;
    line-height: 30px; }

  /* line 1287, theme.scss */
  .phero__photo {
    width: 100%;
    max-width: none; }

  /* line 1288, theme.scss */
  .phero__thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none; }

  /* line 1289, theme.scss */
  .phero__thumbs::-webkit-scrollbar {
    display: none; }

  /* line 1290, theme.scss */
  .pthumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0; }

  /* line 1291, theme.scss */
  .pbuy {
    width: 100%; }

  /* line 1292, theme.scss */
  .pnav {
    gap: 24px; }

  /* line 1292, theme.scss */
  .pnav__i {
    font-size: 15px; }

  /* line 1293, theme.scss */
  .pdeliv {
    grid-template-columns: 1fr; }

  /* line 1293, theme.scss */
  .pmap {
    height: 260px; }

  /* line 1294, theme.scss */
  .prev__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none; }

  /* line 1295, theme.scss */
  .prc__name {
    font-size: 15px; }

  /* line 1296, theme.scss */
  .ptrust {
    grid-template-columns: 1fr 1fr;
    gap: 20px; }

  /* line 1301, theme.scss */
  .header {
    position: sticky;
    top: 0; }

  /* line 1302, theme.scss */
  .header__inner {
    padding-top: 12px;
    padding-bottom: 12px; }

  /* line 1306, theme.scss */
  .header__row {
    flex-wrap: wrap;
    gap: 16px;
    align-items: center; }

  /* line 1307, theme.scss */
  .logo {
    order: 1; }

  /* line 1308, theme.scss */
  .logo__img {
    height: 38px; }

  /* line 1309, theme.scss */
  .logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 9px; }

  /* line 1310, theme.scss */
  .logo__mark .icon {
    width: 24px;
    height: 24px; }

  /* line 1311, theme.scss */
  .logo__word {
    font-size: 12px; }

  /* line 1311, theme.scss */
  .logo__word--big {
    font-size: 19px; }

  /* line 1311, theme.scss */
  .logo__tag {
    font-size: 8px;
    letter-spacing: 1px; }

  /* line 1312, theme.scss */
  .actions {
    order: 3;
    margin-left: auto;
    gap: 22px;
    align-items: center; }

  /* line 1313, theme.scss */
  .action {
    font-size: 0;
    height: 44px;
    justify-content: center; }

  /* line 1314, theme.scss */
  .action__ico .icon {
    width: 26px;
    height: 26px; }

  /* line 1315, theme.scss */
  .catalog {
    order: 4; }

  /* line 1317, theme.scss */
  .catalog__btn {
    padding: 11px;
    gap: 0;
    font-size: 0; }

  /* line 1318, theme.scss */
  .catalog__btn .icon--menu {
    width: 22px;
    height: 22px; }

  /* line 1319, theme.scss */
  .catalog__btn .icon--chev {
    display: none; }

  /* line 1320, theme.scss */
  .search {
    order: 5;
    flex-basis: 100%;
    min-width: 0; }

  /* line 1321, theme.scss */
  .search__input {
    padding: 13px 52px 13px 14px;
    font-size: 15px; }

  /* line 1322, theme.scss */
  .search__btn {
    width: 42px; }

  /* line 1325, theme.scss */
  .megamenu {
    left: 0;
    right: 0;
    border-radius: 0;
    grid-template-columns: 1fr; }

  /* line 1326, theme.scss */
  .megamenu__cats {
    display: block;
    max-height: none;
    height: auto;
    border-right: 0; }

  /* line 1327, theme.scss */
  .megamenu__panels {
    display: none; }

  /* line 1330, theme.scss */
  .hero__inner {
    padding-top: 26px;
    padding-bottom: 30px; }

  /* line 1331, theme.scss */
  .hero__title {
    font-size: 29px;
    line-height: 1.1; }

  /* line 1332, theme.scss */
  .hero__lead {
    font-size: 15px;
    margin-top: 14px; }

  /* line 1335, theme.scss */
  .hero__feats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px; }

  /* line 1336, theme.scss */
  .feat {
    gap: 8px;
    min-width: 0; }

  /* line 1337, theme.scss */
  .feat .icon {
    width: 22px;
    height: 22px; }

  /* line 1338, theme.scss */
  .feat span {
    font-size: 12px;
    line-height: 1.15; }

  /* line 1339, theme.scss */
  .hero__btns {
    gap: 10px;
    margin-top: 22px; }

  /* line 1340, theme.scss */
  .hero__btns .btn {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    font-size: 14px; }

  /* line 1344, theme.scss */
  .page__title {
    font-size: 26px; }

  /* line 1345, theme.scss */
  .page__lead {
    font-size: 15px; }

  /* line 1346, theme.scss */
  .page__h2 {
    font-size: 20px;
    margin: 32px 0 12px; }

  /* line 1347, theme.scss */
  .dlv__grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  /* line 1348, theme.scss */
  .dlv {
    padding: 20px 18px; }

  /* line 1349, theme.scss */
  .dlv__tk {
    grid-template-columns: 1fr 1fr;
    gap: 10px; }

  /* line 1350, theme.scss */
  .dlv__tk li {
    padding: 14px 10px;
    font-size: 14px; }

  /* line 1351, theme.scss */
  .dlv__steps {
    grid-template-columns: 1fr;
    gap: 14px; }

  /* line 1352, theme.scss */
  .dlv__steps li {
    padding-top: 0;
    padding-left: 46px;
    min-height: 34px; }

  /* line 1353, theme.scss */
  .dlv__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px; }

  /* line 1354, theme.scss */
  .dlv__row--head {
    display: none; }

  /* line 1355, theme.scss */
  .dlv__row span:first-child {
    font-weight: 700; }

  /* line 1357, theme.scss */
  .cats {
    padding-top: 34px; }

  /* line 1358, theme.scss */
  .cats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px; }

  /* line 1368, theme.scss */
  .cat-card {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 196px;
    padding: 11px 11px 0; }

  /* line 1377, theme.scss */
  .cats__grid .cat-card .cat-card__img {
    position: absolute;
    inset: auto 0 0 auto;
    width: 92%;
    height: 70%;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
    mix-blend-mode: multiply; }

  /* line 1380, theme.scss */
  .cats__grid .cat-card .cat-card__body {
    max-width: 100%; }

  /* line 1385, theme.scss */
  .cats__grid .cat-card__name {
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none; }

  /* line 1387, theme.scss */
  .cat-card__body {
    position: relative;
    z-index: 1;
    max-width: 100%; }

  /* line 1391, theme.scss */
  .search__panel {
    position: fixed;
    left: 8px;
    right: 8px;
    width: auto;
    top: auto;
    max-height: calc(100vh - 150px);
    grid-template-columns: 1fr; }

  /* line 1393, theme.scss */
  .search__col--cats {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
    overflow: visible; }

  /* line 1394, theme.scss */
  .search__cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px; }

  /* line 1395, theme.scss */
  .search__cat {
    margin-bottom: 0;
    flex: 0 0 auto;
    padding: 9px 12px; }

  /* line 1396, theme.scss */
  .search__cat .icon {
    display: none; }

  /* line 1397, theme.scss */
  .search__col--goods {
    padding: 14px; }

  /* line 1400, theme.scss */
  .search__good {
    grid-template-columns: 56px minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 11px 2px; }

  /* line 1401, theme.scss */
  .search__good-pic {
    width: 56px;
    height: 56px; }

  /* line 1403, theme.scss */
  .search__good-name {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

  /* line 1404, theme.scss */
  .search__good-now {
    font-size: 15px; }

  /* line 1405, theme.scss */
  .search__fav {
    display: none; }

  /* line 1406, theme.scss */
  .search__buy {
    width: 38px;
    height: 38px; }

  /* line 1407, theme.scss */
  .cat-card__body {
    max-width: 100%; }

  /* line 1410, theme.scss */
  .cat-card__name {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: break-word; }

  /* line 1411, theme.scss */
  .cat-card__count {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px; }

  /* line 1412, theme.scss */
  .cat-card:hover .cat-card__img {
    transform: none; }

  /* line 1415, theme.scss */
  .brands__inner {
    padding-top: 30px;
    padding-bottom: 30px; }

  /* line 1416, theme.scss */
  .brands__title {
    font-size: 18px;
    margin-bottom: 16px; }

  /* line 1418, theme.scss */
  .brands__track {
    animation-duration: 28s; }

  /* line 1419, theme.scss */
  .brands__item {
    height: 52px;
    margin: 0 18px; }

  /* line 1420, theme.scss */
  .brands__logo {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 44px; }

  /* line 1421, theme.scss */
  .brands__name {
    font-size: 15px; }

  /* line 1423, theme.scss */
  .promos {
    padding-top: 30px;
    padding-bottom: 30px; }

  /* line 1424, theme.scss */
  .promos__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px; }

  /* line 1425, theme.scss */
  .promo {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 10px; }

  /* line 1426, theme.scss */
  .promo__body {
    padding-right: 0; }

  /* line 1427, theme.scss */
  .promo__title {
    font-size: 16px; }

  /* line 1428, theme.scss */
  .promo__text {
    font-size: 12px; }

  /* line 1429, theme.scss */
  .promo__media {
    width: 100%;
    height: 84px; }

  /* line 1431, theme.scss */
  .goods {
    padding-top: 30px; }

  /* line 1432, theme.scss */
  .section-head__title {
    font-size: 20px; }

  /* line 1433, theme.scss */
  .section-head__link {
    font-size: 13px; }

  /* line 1434, theme.scss */
  .goods__grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px; }

  /* line 1436, theme.scss */
  .goods__grid .product-card {
    flex: 0 0 62%;
    scroll-snap-align: start; }

  /* line 1438, theme.scss */
  .why__inner {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 34px;
    padding-bottom: 34px; }

  /* line 1439, theme.scss */
  .why__heading {
    font-size: 19px; }

  /* На телефоне из пяти доводов оставляем три: пять карточек — это ещё экран
     прокрутки перед следующим блоком, а последние два («оплата при получении»,
     «консультация») повторяют то, что и так написано в шапке и в карточке. */
  /* line 1443, theme.scss */
  .why__item:nth-of-type(n+4) {
    display: none; }

  /* line 1444, theme.scss */
  .why__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px; }

  /* line 1445, theme.scss */
  .why__item .icon {
    width: 28px;
    height: 28px; }

  /* line 1446, theme.scss */
  .why__title {
    font-size: 14px;
    margin-top: 10px; }

  /* line 1447, theme.scss */
  .why__text {
    font-size: 12px; }

  /* line 1449, theme.scss */
  .about__inner {
    padding-top: 34px;
    padding-bottom: 34px;
    gap: 20px; }

  /* line 1450, theme.scss */
  .about__title {
    font-size: 20px; }

  /* line 1451, theme.scss */
  .about__text {
    font-size: 14px; }

  /* line 1452, theme.scss */
  .about__media {
    height: 200px; }

  /* line 1455, theme.scss */
  .cat-head__title {
    font-size: 26px; }

  /* Подкатегории на телефоне: в один столбец 12 разделов занимали почти тысячу
     пикселей, и до товаров приходилось листать целый экран. Сеткой из трёх — всё
     равно четыре ряда. Поэтому лента с прокруткой вбок: занимает одну строку,
     а весь набор доступен пальцем. Полосу прокрутки прячем, «прилипание»
     останавливает ленту на карточке, а не посередине. */
  /* Три плитки в ряд, как в каталогах, на которые ориентируемся. Ленту
     с прокруткой пробовали — так половина разделов прячется за краем экрана,
     а сеткой все двенадцать видно сразу. */
  /* line 1464, theme.scss */
  .subcats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; }

  /* line 1465, theme.scss */
  .subcat {
    gap: 6px;
    padding: 12px 10px 12px;
    border-radius: 12px;
    text-align: left; }

  /* line 1466, theme.scss */
  .subcat__body {
    flex: 0 0 auto; }

  /* Количество товаров на телефоне не показываем: в плитке шириной 110 px
     строка со счётчиком съедает место, нужное самому названию. */
  /* line 1469, theme.scss */
  .subcat__count {
    display: block;
    font-size: 11px;
    line-height: 1.15;
    margin-top: 3px; }

  /* line 1470, theme.scss */
  .subcat__ico {
    height: 83px; }

  /* line 1471, theme.scss */
  .subcat__ico img {
    height: 83px; }

  /* line 1472, theme.scss */
  .subcat__ico .icon {
    width: 24px;
    height: 24px; }

  /* Длинные слова («скарификаторы») в плитку 110 px не влезают и обрезались
     по букве — получалось «скарификаторь». Разрешаем перенос по слогам. */
  /* Жирное начертание в кегле 13 px на плитке 110 px читается как чёрное пятно,
     особенно на трёх строках с переносами. Полужирного хватает, чтобы название
     оставалось главным в плитке. */
  /* line 1478, theme.scss */
  .subcat__name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    hyphens: auto;
    overflow-wrap: break-word; }

  /* line 1482, theme.scss */
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px; }

  /* line 1483, theme.scss */
  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px; }

  /* line 1486, theme.scss */
  .product-card {
    min-width: 0; }

  /* line 1487, theme.scss */
  .product-card__meta {
    gap: 7px;
    font-size: 12px; }

  /* line 1488, theme.scss */
  .product-card__art {
    white-space: normal;
    min-width: 0; }

  /* line 1489, theme.scss */
  .product-card__qty {
    white-space: normal; }

  /* line 1490, theme.scss */
  .product-card__body {
    min-width: 0; }

  /* line 1491, theme.scss */
  .product-card__title {
    font-size: 13px;
    -webkit-line-clamp: 3; }

  /* line 1493, theme.scss */
  .product-card--catalog .product-card__title,
  .product-card--default .product-card__title {
    min-height: 0; }

  /* line 1498, theme.scss */
  .product-card--catalog .product-card__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px; }

  /* line 1499, theme.scss */
  .product-card--catalog .product-card__price {
    font-size: 18px; }

  /* line 1500, theme.scss */
  .product-card--catalog .product-card__buyform {
    width: 100%; }

  /* line 1501, theme.scss */
  .product-card--catalog .product-card__buy {
    width: 100%;
    font-size: 13px;
    padding: 12px; }

  /* line 1502, theme.scss */
  .product-card__price {
    font-size: 17px;
    white-space: nowrap; }

  /* line 1503, theme.scss */
  .product-card--default .product-card__price,
  .product-card--catalog .product-card__price {
    font-size: 17px; }

  /* line 1507, theme.scss */
  .product-card__img {
    height: 168px; }

  /* line 1508, theme.scss */
  .product-card__img img {
    max-height: 168px; }

  /* line 1509, theme.scss */
  .pager__btn {
    width: 38px;
    height: 38px; }

  /* line 1513, theme.scss */
  .crumbs {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px; }

  /* line 1514, theme.scss */
  .crumbs__cur {
    display: none; }

  /* line 1515, theme.scss */
  .crumbs__sep:last-of-type {
    display: none; }

  /* line 1516, theme.scss */
  .buy__title {
    font-size: 22px; }

  /* line 1517, theme.scss */
  .gallery {
    grid-template-columns: 1fr;
    gap: 12px; }

  /* line 1518, theme.scss */
  .gallery__main {
    height: 300px;
    padding: 16px; }

  /* line 1519, theme.scss */
  .gallery__main img {
    max-height: 268px; }

  /* line 1521, theme.scss */
  .gallery__thumbs {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    gap: 8px;
    padding-right: 0; }

  /* line 1522, theme.scss */
  .thumb {
    width: 60px;
    height: 60px;
    aspect-ratio: auto; }

  /* line 1523, theme.scss */
  .buy__panel {
    padding: 18px;
    border-radius: 14px; }

  /* line 1524, theme.scss */
  .buy__now {
    font-size: 30px; }

  /* line 1525, theme.scss */
  .buy__row {
    flex-direction: column;
    align-items: stretch; }

  /* line 1526, theme.scss */
  .buy__cart, .buy__oneclick {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 15px; }

  /* line 1527, theme.scss */
  .specs {
    padding: 18px; }

  /* line 1528, theme.scss */
  .info__title {
    font-size: 19px; }

  /* line 1529, theme.scss */
  .spec {
    flex-wrap: wrap;
    gap: 2px; }

  /* line 1530, theme.scss */
  .spec__dots {
    min-width: 20px; }

  /* line 1533, theme.scss */
  .cart-head {
    gap: 8px;
    padding-bottom: 16px; }

  /* line 1534, theme.scss */
  .cart-head__title {
    font-size: 26px; }

  /* line 1535, theme.scss */
  .cart-head__clear {
    margin-left: 0;
    flex-basis: 100%; }

  /* line 1536, theme.scss */
  .steps {
    gap: 8px;
    font-size: 13px; }

  /* line 1537, theme.scss */
  .steps__item {
    font-size: 13px; }

  /* line 1538, theme.scss */
  .steps__line {
    min-width: 12px; }

  /* line 1539, theme.scss */
  .ship {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px; }

  /* line 1540, theme.scss */
  .ship__sum {
    margin-left: auto; }

  /* line 1541, theme.scss */
  .citem {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 16px; }

  /* line 1542, theme.scss */
  .citem__media {
    width: 76px;
    height: 76px; }

  /* line 1543, theme.scss */
  .citem__prices {
    grid-column: 1/-1;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px; }

  /* line 1544, theme.scss */
  .citem__price {
    font-size: 19px; }

  /* line 1545, theme.scss */
  .citem__each {
    margin-top: 0; }

  /* line 1546, theme.scss */
  .grid2 {
    grid-template-columns: 1fr; }

  /* line 1547, theme.scss */
  .block {
    padding: 18px; }

  /* line 1548, theme.scss */
  .sum {
    padding: 18px; }

  /* line 1549, theme.scss */
  .sum__total b {
    font-size: 24px; }

  /* line 1550, theme.scss */
  .done__title {
    font-size: 26px; }

  /* line 1553, theme.scss */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0; }

  /* line 1554, theme.scss */
  .footer__col {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }

  /* line 1555, theme.scss */
  .footer__col--brand {
    border-top: 0; }

  /* line 1556, theme.scss */
  .footer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 0;
    margin: 0;
    font-size: 15px; }

  /* line 1558, theme.scss */
  .footer__head::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 1.5px solid #8a8a90;
    border-bottom: 1.5px solid #8a8a90;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s; }

  /* line 1560, theme.scss */
  .footer__col.is-open .footer__head::after {
    transform: rotate(-135deg) translateY(-2px); }

  /* line 1561, theme.scss */
  .footer__links {
    display: none;
    padding-bottom: 14px; }

  /* line 1562, theme.scss */
  .footer__col.is-open .footer__links {
    display: grid; }

  /* line 1563, theme.scss */
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left; } }
@media (max-width: 400px) {
  /* line 1568, theme.scss */
  .promos__grid, .why__inner {
    grid-template-columns: 1fr; }

  /* line 1570, theme.scss */
  .goods__grid .product-card {
    flex: 0 0 76%; }

  /* line 1571, theme.scss */
  .hero__title {
    font-size: 25px; } }
/* ---------- Фильтры каталога ---------- */
/* Спрятанные группы не удаляем из разметки: они нужны по кнопке «Все фильтры»,
   и их отметки читает сам InSales при восстановлении состояния из адреса. */
/* line 1577, theme.scss */
.fgroup--hidden {
  display: none; }

/* line 1578, theme.scss */
.filters__items--all .fgroup--hidden {
  display: block; }

/* Раскрытый полный список — это полторы сотни групп и панель в двадцать экранов.
   Тогда «едет и фиксируется» теряет смысл: до низа не долистать. Поэтому в
   раскрытом виде список получает свою прокрутку и остаётся в пределах экрана. */
/* line 1582, theme.scss */
.filters__items--all {
  max-height: 62vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px; }

/* line 1584, theme.scss */
.filters__all {
  width: 100%;
  margin-top: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: 600 14px/1 var(--font-body);
  color: #1b1b1d;
  cursor: pointer;
  transition: border-color .18s; }

/* line 1587, theme.scss */
.filters__all:hover {
  border-color: var(--accent); }

/* line 1588, theme.scss */
.fgroup__search {
  width: 100%;
  margin: 0 0 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font: 400 13px/1.2 var(--font-body);
  background: #fff; }

/* line 1590, theme.scss */
.fgroup__search:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px; }

/* line 1591, theme.scss */
.fopt--hidden {
  display: none; }

/* line 1596, theme.scss */
.fopt--empty {
  cursor: default; }

/* line 1597, theme.scss */
.fopt--empty .fopt__label,
.fopt--empty .fopt__count {
  color: #b6b6be; }

/* line 1599, theme.scss */
.fopt--empty input[type=checkbox] {
  border-color: #dcdce2;
  background: #fafafb;
  cursor: default; }

/* Выбранные условия над списком товаров: прокрутив каталог, покупатель
   не помнит, чем он его сузил. */
/* line 1603, theme.scss */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px; }

/* line 1604, theme.scss */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font: 500 13px/1 var(--font-body);
  color: #1b1b1d;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .18s; }

/* line 1607, theme.scss */
.chip::after {
  content: '×';
  font-size: 15px;
  line-height: 1;
  color: #8a8a92; }

/* line 1608, theme.scss */
.chip:hover {
  border-color: var(--accent); }

/* line 1609, theme.scss */
.chip--reset {
  border-style: dashed;
  color: #6a6a72; }

/* line 1610, theme.scss */
.chip--reset::after {
  content: ''; }

@media (min-width: 981px) {
  /* line 1613, theme.scss */
  .filters {
    align-self: start; } }
