:root {
  --col-white: #fff;
  --col-transparent: transparent;
  --col-primary-50: #eef9ff;
  --col-primary-100: #d9f1ff;
  --col-primary-200: #bce8ff;
  --col-primary-300: #8edbff;
  --col-primary-400: #58c4ff;
  --col-primary-500: #31a7ff;
  --col-primary-600: #1b89f5;
  --col-primary-700: #1371e2;
  --col-primary-800: #175ab6;
  --col-primary: #15437b;
  --col-primary-950: #143057;
  --col-green-50: #f0fdf4;
  --col-green-100: #dcfce7;
  --col-green-200: #bbf7d0;
  --col-green-300: #86efac;
  --col-green: #4ade80;
  --col-green-500: #22c55e;
  --col-green-600: #16a34a;
  --col-green-700: #15803d;
  --col-green-800: #166534;
  --col-green-900: #14532d;
  --col-green-950: #052e16;
  --col-red-50: #fff0f1;
  --col-red-100: #ffe1e3;
  --col-red-200: #ffc8ce;
  --col-red-300: #ff9ba6;
  --col-red-400: #ff6378;
  --col-red-500: #ff2c4e;
  --col-red-600: #f60838;
  --col-red: #d30030;
  --col-red-800: #ae032f;
  --col-red-900: #940730;
  --col-red-950: #530015;
  --col-orange-50: #fff7ed;
  --col-orange-100: #ffedd5;
  --col-orange-200: #fed7aa;
  --col-orange-300: #fdba74;
  --col-orange: #fb923c;
  --col-orange-500: #f97316;
  --col-orange-600: #ea580c;
  --col-orange-700: #c2410c;
  --col-orange-800: #9a3412;
  --col-orange-900: #7c2d12;
  --col-orange-950: #431407;
  --col-gray-50: #f9fafb;
  --col-gray-100: #f3f4f6;
  --col-gray-200: #e5e7eb;
  --col-gray-300: #d1d5db;
  --col-gray: #9ca3af;
  --col-gray-500: #6b7280;
  --col-gray-600: #4b5563;
  --col-gray-700: #374151;
  --col-gray-800: #1f2937;
  --col-gray-900: #111827;
  --col-gray-950: #030712;
  --col-slate-50: #f8fafc;
  --col-slate-100: #f1f5f9;
  --col-slate-200: #e2e8f0;
  --col-slate-300: #cbd5e1;
  --col-slate: #94a3b8;
  --col-slate-500: #64748b;
  --col-slate-600: #475569;
  --col-slate-700: #334155;
  --col-slate-800: #1e293b;
  --col-slate-900: #0f172a;
  --col-slate-950: #020617;
  --bg: var(--col-slate-50);
  --surface: var(--col-white);
  --surface-soft: var(--col-primary-50);
  --text: var(--col-slate-900);
  --muted: var(--col-slate-500);
  --line: var(--col-slate-200);
  --primary: var(--col-primary);
  --primary-dark: var(--col-primary-950);
  --accent: var(--col-red);
  --accent-soft: var(--col-red-50);
  --blue: var(--col-primary-800);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --container: 1240px;
  --catalog-filter-accent: var(--col-primary);
  --catalog-filter-muted: var(--col-slate-500);
  --catalog-filter-chip-bg: var(--col-primary-50);
  --catalog-filter-chip-bg-hover: var(--col-primary-100);
  --catalog-filter-count-bg: var(--col-white);
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* До <main> идут утилитарная строка, шапка, поиск и мегаменю — это сотни ссылок,
   которые клавиатурник иначе проходит на каждой странице. */
.skip-link {
  position: absolute;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary-800);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.16s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--col-primary-100);
  outline-offset: 2px;
}
#main-content:focus {
  outline: none;
}
.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.topbar {
  color: #d8e8ee;
  background: var(--primary-dark);
  font-size: 13px;
}
.topbar__inner,
.topbar__phones,
.topbar__links,
.mainbar {
  display: flex;
  align-items: center;
}
.topbar__inner {
  min-height: 38px;
  gap: 24px;
}
.topbar__phones {
  gap: 18px;
  flex: 1;
}
.topbar__links {
  gap: 16px;
}
.plain-btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.topbar__city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-weight: 700;
}
.city-menu,
.catalog-panel,
.mobile-nav {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.city-menu__grid,
.catalog-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-block: 16px;
}
.city-menu a,
.catalog-panel a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}
.mainbar {
  gap: 16px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  font-weight: 900;
}
.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}
.brand small,
.cart small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.catalog-btn,
.btn,
.cart,
.header-action,
.mobile-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 16px;
  color: var(--text);
  border-color: #cbd9e5;
  background: linear-gradient(180deg, #ffffff, #f3f8fa);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(13, 107, 120, 0.08);
}
.catalog-btn:hover,
.catalog-btn[aria-expanded="true"] {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.catalog-btn small {
  display: block;
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.catalog-btn strong {
  display: block;
  line-height: 1.1;
}
.catalog-btn__bars,
.mobile-menu span {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}
.search {
  display: flex;
  flex: 1;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.search input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 16px;
  outline: 0;
}
.search button {
  width: 54px;
  border: 0;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  font-size: 24px;
}
.header-action {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--primary);
  font-size: 24px;
}
.cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 14px;
}
.cart__icon {
  color: var(--primary);
  font-size: 24px;
}
.mobile-menu {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--primary);
}
.mobile-menu span {
  display: block;
  margin: auto;
}
.catalog-panel {
  position: absolute;
  inset: 100% 0 auto;
  z-index: 30;
  padding: 14px 0;
  box-shadow: 0 24px 60px rgba(22, 32, 51, 0.16);
}
.catalog-panel__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 16px;
  align-items: stretch;
}
.catalog-column,
.catalog-panel__promo {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.catalog-column__head {
  margin-bottom: 14px;
}
.catalog-column__head span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-column__head strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.catalog-list a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.catalog-list a:hover {
  border-color: rgba(13, 107, 120, 0.25);
  color: var(--primary-dark);
  background: #fff;
}
.catalog-list--soft a {
  background: #f8f6ef;
}
.catalog-panel__promo {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--primary-dark), var(--blue));
}
.catalog-panel__promo strong {
  display: block;
  font-size: 22px;
  line-height: 1.18;
}
.catalog-panel__promo p {
  margin: 10px 0 22px;
  color: #d7ecef;
  font-size: 14px;
}
.entry-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.entry-nav__inner {
  display: flex;
  gap: 8px;
  min-height: 54px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.entry-nav__inner::-webkit-scrollbar {
  display: none;
}
.entry-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: #f7fafc;
  font-size: 14px;
  font-weight: 700;
}
.entry-nav a:hover {
  color: var(--primary-dark);
  background: var(--surface-soft);
}
.mobile-nav {
  display: grid;
  gap: 4px;
  padding: 12px 16px 18px;
}
.mobile-nav a {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.hero-slider {
  padding-block: 22px 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef4f7 100%);
}
.hero-slider__shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(22, 32, 51, 0.1);
}
.hero-slider__track {
  position: relative;
  min-height: 430px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: center;
  padding: 46px;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(237, 247, 249, 0.98), rgba(255, 255, 255, 0.84) 54%, rgba(240, 245, 248, 0.92)), radial-gradient(circle at 80% 25%, rgba(230, 95, 50, 0.14), transparent 30%);
  z-index: -1;
}
.hero-slide__content {
  max-width: 720px;
}
.hero-slide__image {
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}
.hero-slide__image img {
  width: 86%;
  height: 280px;
  object-fit: contain;
}
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.02;
  font-weight: 800;
}
h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 800;
}
.hero p,
.hero-slide p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}
.hero__actions,
.hero__stats,
.price-row {
  display: flex;
  align-items: center;
}
.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
}
.btn--primary {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.btn--ghost {
  color: var(--primary);
  background: #fff;
}
.hero__stats {
  flex-wrap: wrap;
  gap: 18px;
}
.hero__stats span {
  color: var(--muted);
  font-size: 14px;
}
.hero__stats strong {
  display: block;
  color: var(--text);
  font-size: 24px;
}
.hero-slider__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 46px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}
.slider-dots {
  display: flex;
  gap: 7px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: #cad6df;
  font-size: 0;
}
.slider-dots button.is-active {
  background: var(--accent);
}
.product-card__code,
.availability {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.quick-cats,
.products-section,
.news,
.delivery-section {
  padding-block: 68px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
.section-head > a {
  color: var(--primary);
  font-weight: 800;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 14px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.category-card:hover,
.product-card:hover,
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-card strong,
.footer strong {
  display: block;
}
.category-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.category-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  align-self: end;
}
.benefits {
  padding-block: 22px;
  background: var(--primary-dark);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefit {
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}
.benefit span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--primary-dark);
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
}
.benefit p {
  margin: 8px 0 0;
  color: #c7d9de;
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-carousel-section {
  overflow: hidden;
}
.section-head__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-controls {
  display: flex;
  gap: 8px;
}
.carousel-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}
.product-carousel {
  overflow: hidden;
}
.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.product-track::-webkit-scrollbar {
  display: none;
}
.product-track .product-card {
  scroll-snap-align: start;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  height: 210px;
  background: linear-gradient(180deg, #f8fbfd, #eef5f7);
}
.product-card__media img {
  width: 78%;
  height: 160px;
  object-fit: contain;
}
.product-image-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.product-image-viewer__slides {
  position: relative;
  width: 78%;
  height: 160px;
}
.product-image-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.product-image-slide.is-active {
  opacity: 1;
}
.product-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image-dots {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}
.product-image-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c6d0da;
}
.product-image-dots span.is-active {
  background: var(--primary);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  color: #fff;
  border-radius: 999px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
  z-index: 4;
}
.product-card__body {
  padding: 18px;
}
.product-card h3 {
  min-height: 54px;
  margin: 7px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}
.product-card p {
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}
.availability {
  margin-bottom: 12px;
}
.price-row {
  gap: 10px;
  margin-bottom: 14px;
}
.price-row strong {
  font-size: 22px;
}
.price-row del {
  color: #9ca7b5;
}
.btn--cart {
  width: 100%;
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}
.solutions {
  padding-block: 16px 68px;
}
.solutions__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}
.solution {
  min-height: 230px;
  padding: 26px;
  color: #fff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 74, 87, 0.92), rgba(23, 59, 102, 0.86));
}
.solution--home {
  background: linear-gradient(135deg, rgba(13, 107, 120, 0.9), rgba(8, 74, 87, 0.84));
}
.solution--beauty {
  background: linear-gradient(135deg, rgba(23, 59, 102, 0.92), rgba(13, 107, 120, 0.8));
}
.solution span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}
.solution strong {
  display: block;
  max-width: 390px;
  font-size: 26px;
  line-height: 1.16;
}
.solution small {
  display: block;
  max-width: 320px;
  margin-top: 12px;
  color: #d7ecef;
}
.delivery-section {
  padding-top: 0;
}
.delivery-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 249, 0.94));
  box-shadow: 0 18px 44px rgba(22, 32, 51, 0.08);
}
.delivery-card__content h2 {
  max-width: 620px;
  margin: 6px 0 14px;
}
.delivery-card__content p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.delivery-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.delivery-card__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.delivery-card__steps div {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(13, 107, 120, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}
.delivery-card__steps span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.delivery-card__steps strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}
.delivery-card__steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.news--company {
  background: #fff;
}
.news--industry {
  padding-top: 0;
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-card__media {
  display: block;
  height: 184px;
  background: linear-gradient(180deg, #f8fbfd, #eef5f7);
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-card__body {
  padding: 20px;
}
.news time {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.news h3 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.25;
}
.news-card--compact {
  display: grid;
  grid-template-columns: 140px 1fr;
}
.news-card--compact .news-card__media {
  height: auto;
  min-height: 178px;
}
.news-card--compact h3 {
  font-size: 18px;
}
.news p,
.about-strip p,
.footer p {
  color: var(--muted);
}
.about-strip {
  padding-block: 54px;
  color: #fff;
  background: var(--blue);
}
.about-strip__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.about-strip .eyebrow,
.about-strip p {
  color: #cfeef1;
}
.footer {
  padding-block: 42px;
  color: #c8d2de;
  background: #101926;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.brand--footer {
  min-width: 0;
  color: #fff;
}
.footer a,
.footer span {
  display: block;
  margin-top: 9px;
}
.footer strong {
  color: #fff;
  margin-bottom: 10px;
}
.company-subscribe {
  padding-block: 64px;
  background: #fff;
}
.company-subscribe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.company-mini,
.subscribe-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.company-mini {
  background: linear-gradient(135deg, rgba(237, 247, 249, 0.96), rgba(255, 255, 255, 0.98));
}
.company-mini h2,
.subscribe-box h2 {
  margin: 8px 0 14px;
}
.company-mini p,
.subscribe-box p,
.subscribe-box small {
  color: var(--muted);
}
.company-mini__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.company-mini__links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}
.subscribe-box {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--primary-dark), var(--blue));
}
.subscribe-box .eyebrow,
.subscribe-box p,
.subscribe-box small {
  color: #d7ecef;
}
.subscribe-box__form {
  display: flex;
  gap: 10px;
  margin: 24px 0 12px;
}
.subscribe-box input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.subscribe-box input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: #c8d2de;
  font-size: 14px;
}
.footer__phones a,
.footer__phones span {
  margin: 0;
}
.footer__grid--extended {
  grid-template-columns: repeat(5, 1fr);
}
/* Visual system placeholders */
.visual-placeholder,
.category-card__icon,
.product-card__placeholder,
.news-card__placeholder,
.proof-icon {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(13, 107, 120, 0.14), rgba(23, 59, 102, 0.1)), #f6fafb;
}
.visual-placeholder::before,
.category-card__icon::before,
.product-card__placeholder::before,
.news-card__placeholder::before,
.proof-icon::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 3px solid currentColor;
  border-radius: 8px;
  color: var(--primary);
  opacity: 0.86;
}
.visual-placeholder::after,
.category-card__icon::after,
.product-card__placeholder::after,
.news-card__placeholder::after,
.proof-icon::after {
  content: "";
  position: absolute;
  width: 34%;
  height: 34%;
  right: 14%;
  bottom: 14%;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 2px rgba(230, 95, 50, 0.22);
}
.visual-placeholder {
  width: min(88%, 360px);
  aspect-ratio: 1.18;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(237, 247, 249, 0.92)), radial-gradient(circle at 80% 25%, rgba(230, 95, 50, 0.18), transparent 34%);
  box-shadow: inset 0 0 0 1px rgba(13, 107, 120, 0.1);
}
.visual-placeholder--bed::before {
  inset: auto 14% 31% 14%;
  height: 26%;
  border-radius: 7px;
}
.visual-placeholder--bed::after {
  width: 13%;
  height: 48%;
  left: 16%;
  right: auto;
  bottom: 28%;
  border-radius: 5px;
}
.visual-placeholder--rehab::before {
  inset: 20% 23% 28% 23%;
  border-radius: 50%;
}
.visual-placeholder--rehab::after {
  width: 42%;
  height: 10%;
  right: 18%;
  bottom: 30%;
  border-radius: 999px;
  background: var(--primary);
}
.visual-placeholder--sale::before {
  inset: 18% 20%;
  transform: rotate(-8deg);
}
.visual-placeholder--sale::after {
  content: "%";
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  right: 16%;
  bottom: 18%;
  color: var(--accent);
  background: #fff;
  font-size: 34px;
  font-weight: 900;
}
.category-card__icon {
  width: 96px;
  height: 96px;
  align-self: end;
  justify-self: end;
}
.category-card__icon::before {
  inset: 24%;
  border-width: 2px;
}
.category-card__icon--oxygen::before,
.product-card__placeholder--oxygen::before {
  border-radius: 50%;
}
.category-card__icon--care::before,
.product-card__placeholder--care::before {
  inset: auto 20% 32% 20%;
  height: 22%;
}
.category-card__icon--massage::before,
.product-card__placeholder--massage::before {
  transform: rotate(-12deg);
}
.category-card__icon--beauty::before {
  border-radius: 50% 50% 8px 8px;
}
.product-card__placeholder {
  width: 76%;
  height: 150px;
}
.product-card__placeholder::before {
  inset: 24%;
}
.news-card__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.news-card__placeholder::before {
  inset: 28% 32%;
}
.news-card__placeholder--analytics::before {
  border-radius: 50%;
  border-style: dashed;
}
.news-card__placeholder--company::before {
  inset: 25% 30%;
  border-radius: 50% 50% 8px 8px;
}
.news-card__placeholder--vent::before {
  inset: 26% 24%;
  border-radius: 999px;
}
.hero-slide__image img,
.category-card img,
.news-card__media img {
  display: none;
}
/* Company proof infographic */
.proof-section {
  padding-block: 72px;
  color: #fff;
  background: linear-gradient(135deg, #0a3f4b, #173b66 72%);
}
.proof-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
}
.proof-board__intro {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}
.proof-board__intro .eyebrow {
  color: #9ee2e8;
}
.proof-board__intro h2 {
  margin: 10px 0 16px;
}
.proof-board__intro p {
  color: #d4e8ed;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}
.proof-card--large {
  grid-row: span 2;
  min-height: 392px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(233, 247, 249, 0.98));
}
.proof-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--primary);
}
.proof-card--large .proof-icon {
  width: 86px;
  height: 86px;
}
.proof-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}
.proof-card--large strong {
  font-size: 54px;
}
.proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.proof-icon--clients::before,
.proof-icon--payment::before {
  border-radius: 50%;
}
.proof-icon--warehouse::before,
.proof-icon--delivery::before {
  inset: 26% 18% 22%;
}
.proof-icon--docs::before {
  inset: 18% 26%;
}
.solution,
.solution--home,
.solution--beauty,
.delivery-card {
  background-image: linear-gradient(135deg, rgba(8, 74, 87, 0.92), rgba(23, 59, 102, 0.84));
}
.delivery-card {
  color: #fff;
}
.delivery-card .eyebrow,
.delivery-card__content p,
.delivery-card__steps p {
  color: #d8edf0;
}
.delivery-card__steps div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
}
.delivery-card__steps span {
  color: #ffd5c6;
}
/* Simple image placeholders */
.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: min(88%, 360px);
  aspect-ratio: 1.22;
  border: 1px solid #d9e1e8;
  border-radius: 8px;
  background: #eef2f5;
  color: #9aa7b5;
}
.image-placeholder::before {
  content: "";
  width: 58px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 54%, transparent 0 9px, currentColor 10px 12px, transparent 13px), linear-gradient(currentColor, currentColor) 14px 7px / 16px 3px no-repeat;
}
.image-placeholder::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
}
.image-placeholder--small {
  width: 96px;
  height: 96px;
  aspect-ratio: auto;
  align-self: end;
  justify-self: end;
}
.image-placeholder--small::before {
  width: 42px;
  height: 32px;
  border-width: 2px;
  background: radial-gradient(circle at 50% 54%, transparent 0 6px, currentColor 7px 8px, transparent 9px), linear-gradient(currentColor, currentColor) 10px 6px / 12px 2px no-repeat;
}
.image-placeholder--small::after {
  width: 62px;
  height: 2px;
}
.image-placeholder--product {
  width: 76%;
  height: 150px;
  aspect-ratio: auto;
}
.image-placeholder--news {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #eef2f5;
}
.hero-slider__footer--controls {
  justify-content: center;
}
.proof-card--wide {
  grid-column: span 2;
}
.proof-icon--tender::before {
  inset: 24% 18%;
  border-radius: 7px;
}
@media (max-width: 1100px) {
  .proof-card--wide {
    grid-column: auto;
  }
}
@media (max-width: 1100px) {
  .topbar__phones span,
  .header-action,
  .category-grid,
  .news-grid,
  .delivery-card,
  .delivery-card__steps,
  .proof-board,
  .company-subscribe__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-card--large {
    grid-row: auto;
    min-height: 220px;
  }
  .benefits__grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
  .catalog-panel__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-panel__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .topbar__inner {
    justify-content: space-between;
  }
  .topbar__phones,
  .topbar__links {
    display: none;
  }
  .mainbar {
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 12px;
  }
  .brand {
    min-width: 0;
    flex: 1;
  }
  .brand small,
  .cart span:not(.cart__icon) {
    display: none;
  }
  .catalog-btn {
    height: 46px;
    width: 46px;
    padding: 0;
    justify-content: center;
  }
  .catalog-btn > span:not(.catalog-btn__bars) {
    display: none;
  }
  .mobile-menu {
    display: grid;
  }
  .search {
    flex-basis: 100%;
    order: 2;
  }
  .cart {
    width: 46px;
    padding: 0;
    justify-content: center;
  }
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 27px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
    min-height: auto;
  }
  .hero-slider__track {
    min-height: 620px;
  }
  .hero-slide__image {
    min-height: 210px;
  }
  .hero-slide__image img {
    height: 190px;
  }
  .hero-slider__footer {
    align-items: start;
    flex-direction: column;
    padding: 18px 26px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .category-grid,
  .benefits__grid,
  .product-grid,
  .solutions__grid,
  .news-grid,
  .delivery-card,
  .delivery-card__steps,
  .proof-board,
  .proof-grid,
  .about-strip__grid,
  .footer__grid,
  .footer__grid--extended,
  .company-subscribe__grid,
  .city-menu__grid,
  .catalog-panel__grid,
  .catalog-list {
    grid-template-columns: 1fr;
  }
  .product-track {
    grid-auto-columns: 100%;
  }
  .section-head__actions {
    width: 100%;
    justify-content: space-between;
  }
  .catalog-panel {
    position: static;
    padding: 12px 0;
  }
  .category-card {
    grid-template-columns: 1fr 92px;
    min-height: 128px;
  }
  .category-card img {
    width: 92px;
    height: 92px;
  }
  .quick-cats,
  .products-section,
  .news,
  .delivery-section,
  .proof-section,
  .company-subscribe {
    padding-block: 46px;
  }
  .delivery-section,
  .news--industry {
    padding-top: 0;
  }
  .delivery-card {
    padding: 22px;
  }
  .news-card--compact {
    grid-template-columns: 1fr;
  }
  .news-card--compact .news-card__media {
    height: 174px;
  }
  .proof-board__intro {
    padding: 22px;
  }
  .proof-card,
  .proof-card--large {
    min-height: 172px;
  }
  .proof-card--large strong {
    font-size: 40px;
  }
  .subscribe-box__form,
  .footer__top {
    align-items: stretch;
    flex-direction: column;
  }
  .footer__phones {
    justify-content: flex-start;
  }
}
/* Interaction and visual polish */
a {
  text-underline-offset: 4px;
  transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
a:hover {
  color: var(--primary);
}
p a,
.footer a:hover,
.news-card h3 a:hover,
.section-title a:hover {
  text-decoration: underline;
}
.topbar a:hover,
.footer a:hover {
  color: #fff;
}
.brand__mark {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.brand:hover .brand__mark {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(21, 67, 123, 0.24);
}
.main-nav a,
.header-actions a,
.entry-nav a,
.footer a {
  position: relative;
}
.main-nav a:hover,
.header-actions a:hover {
  color: var(--primary);
}
.entry-nav a:hover {
  box-shadow: inset 0 0 0 1px var(--col-primary-100), 0 10px 20px rgba(15, 23, 42, 0.06);
}
.btn {
  gap: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}
.btn--primary:hover {
  color: #fff;
  border-color: var(--col-primary-800);
  background: var(--col-primary-800);
}
.btn--ghost:hover {
  color: var(--col-primary-800);
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
}
.catalog-trigger:hover {
  box-shadow: 0 12px 24px rgba(21, 67, 123, 0.22);
}
.category-card:hover strong,
.product-card:hover h3,
.news-card:hover h3 {
  color: var(--primary);
}
.product-card {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--col-primary-100);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}
.product-card:hover .product-card__media {
  background: linear-gradient(180deg, var(--col-primary-50), #f8fbfd);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.badge__icon {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.btn--cart {
  align-items: center;
  justify-content: center;
}
.btn--cart:hover {
  color: #fff;
  border-color: var(--col-red-800);
  background: var(--col-red-800);
}
.btn--details {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.btn--details:hover {
  border-color: var(--col-primary-800);
  background: var(--col-primary-800);
}
.cart-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}
.cart-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 2px;
  right: 2px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.cart-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -5px;
  left: -3px;
  height: 3px;
  background: radial-gradient(circle, currentColor 0 2px, transparent 2.5px) left center / 8px 3px no-repeat, radial-gradient(circle, currentColor 0 2px, transparent 2.5px) right center / 8px 3px no-repeat;
}
.news-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--col-primary-100);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}
.news-card__body p {
  min-height: 64px;
}
.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}
.news-card__more::after {
  content: "";
  width: 16px;
  height: 14px;
  background-color: currentColor;
  mask: url("../svg/icon-action-strelka.svg") center / contain no-repeat;
  -webkit-mask: url("../svg/icon-action-strelka.svg") center / contain no-repeat;
  transition: transform 0.16s ease;
}
.news-card__more:hover {
  color: var(--accent);
  text-decoration: none;
}
.news-card__more:hover::after {
  transform: translateX(3px);
}
.hero-slide {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 36px;
}
.hero-slider__track {
  min-height: 500px;
}
.hero-slide__content {
  max-width: 540px;
}
h1 {
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.08;
}
.hero-slide__image {
  min-height: 286px;
  align-self: stretch;
}
@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }
  .hero-slider__track {
    min-height: 620px;
  }
  .hero-slide__content {
    max-width: 100%;
  }
  h1 {
    font-size: 35px;
  }
  .hero-slide__image {
    min-height: 210px;
  }
}
.search button {
  background: var(--primary);
}
.search button:hover {
  background: var(--col-primary-800);
}
.btn--cart {
  color: var(--primary);
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
}
.btn--cart:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.btn--details {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}
.btn--details:hover {
  border-color: var(--col-primary-800);
  background: var(--col-primary-800);
}
.cart-icon {
  width: 20px;
  height: 20px;
  border: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.cart-icon::before,
.cart-icon::after {
  content: none;
}
.entry-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.entry-nav__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.entry-nav__group {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 2px;
}
.entry-nav__group--secondary {
  margin-left: auto;
}
.entry-nav a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 11px;
  border-radius: 0;
  color: var(--col-slate-700);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.entry-nav__group--primary a {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.entry-nav a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 0;
  left: 11px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  transition: background-color 0.16s ease, transform 0.16s ease;
  transform: scaleX(0.35);
}
.entry-nav a:hover {
  color: var(--primary);
  background: var(--col-primary-50);
  box-shadow: none;
}
.entry-nav a:hover::after,
.entry-nav a.is-active::after {
  background: var(--primary);
  transform: scaleX(1);
}
.entry-nav a.is-active {
  color: var(--primary);
  background: var(--col-primary-50);
}
@media (max-width: 900px) {
  .entry-nav__inner {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-block: 8px;
  }
  .entry-nav__group {
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .entry-nav a {
    min-height: 42px;
    padding: 0 12px;
  }
}
/* Refinement pass */
body {
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  color: var(--col-slate-900);
  font-weight: 500;
}
.topbar,
.brand small,
.cart small,
.catalog-btn small,
.product-card p,
.news-card__body p,
.hero p,
.hero-slide p {
  font-weight: 400;
}
.brand strong,
.catalog-btn strong,
.entry-nav a,
.btn,
.product-card h3,
.news-card h3,
.section-head h2,
.catalog-column__head strong {
  font-weight: 700;
}
h1 {
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 700;
}
h2 {
  font-size: 32px;
  font-weight: 700;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
}
.mainbar {
  gap: 14px;
  min-height: 82px;
}
.brand__mark {
  font-weight: 800;
}
.search {
  height: 48px;
}
.search input {
  font-size: 15px;
}
.search button svg,
.header-action svg,
.cart__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.header-action {
  color: var(--primary);
}
.header-action:hover,
.cart:hover {
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
}
.cart {
  min-height: 48px;
}
.cart__icon {
  display: inline-grid;
  place-items: center;
  color: var(--primary);
}
.hero-slider {
  padding-block: 22px 30px;
}
.hero-slider__shell {
  box-shadow: 0 16px 38px rgba(22, 32, 51, 0.08);
}
.hero-slider__track {
  min-height: 535px;
}
.hero-slide {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 42px;
  padding: 42px 46px;
}
.hero-slide__content {
  max-width: 520px;
}
.hero-slide__image {
  min-height: 270px;
  border: 1px solid var(--col-slate-100);
}
.hero__actions {
  margin-top: 24px;
  align-items: flex-start;
  gap: 10px;
}
.hero__actions .btn {
  min-height: 44px;
  padding-inline: 17px;
  white-space: nowrap;
}
.btn {
  min-height: 46px;
  border-radius: 7px;
}
.product-card,
.news-card,
.category-card,
.delivery-card,
.proof-board {
  border-color: var(--col-slate-200);
}
.product-card h3 {
  font-size: 16px;
  line-height: 1.35;
}
.price-row strong {
  font-weight: 800;
}
.news-card__body {
  gap: 10px;
}
.news-card__more {
  font-weight: 700;
}
@media (max-width: 900px) {
  .mainbar {
    min-height: 72px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 27px;
  }
  .hero-slider__track {
    min-height: 650px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }
  .hero-slide__content {
    max-width: 100%;
  }
  .hero-slide__image {
    min-height: 205px;
  }
}
.product-card__body {
  gap: 10px;
}
.product-card h3 {
  font-size: 17px;
  line-height: 1.32;
}
.product-card p {
  font-size: 13.5px;
  line-height: 1.45;
}
.product-card__code {
  font-size: 12px;
}
.news-grid--industry {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-card--compact {
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
.news-card--compact .news-card__media {
  width: 100%;
  min-height: 172px;
}
.news-card--compact h3 {
  font-size: 18px;
  line-height: 1.3;
}
.catalog-btn[aria-expanded="true"] {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}
.catalog-btn__bars,
.catalog-btn__bars::before,
.catalog-btn__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background-color 0.16s ease, transform 0.16s ease;
}
.catalog-btn__bars {
  position: relative;
}
.catalog-btn__bars::before,
.catalog-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.catalog-btn__bars::before {
  top: -7px;
}
.catalog-btn__bars::after {
  top: 7px;
}
.catalog-btn[aria-expanded="true"] small {
  color: rgba(255, 255, 255, 0.72);
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars {
  background: transparent;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::before {
  transform: translateY(7px) rotate(45deg);
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::after {
  transform: translateY(-7px) rotate(-45deg);
}
.catalog-panel {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.16);
}
.catalog-panel__layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  min-height: 430px;
  padding-block: 18px;
}
.catalog-menu {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px 0 0 8px;
  background: #fff;
}
.catalog-menu__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--col-slate-800);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}
.catalog-menu__item strong,
.catalog-menu__item small {
  display: block;
}
.catalog-menu__item strong {
  font-size: 15px;
  line-height: 1.25;
}
.catalog-menu__item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.catalog-menu__item:hover,
.catalog-menu__item.is-active {
  border-color: var(--col-primary-100);
  color: var(--primary);
  background: var(--col-primary-50);
}
.catalog-menu__icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--primary);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--col-primary-100);
  font-size: 12px;
  font-weight: 800;
}
.catalog-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--col-slate-200);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: #fff;
}
.catalog-content__pane {
  display: none;
}
.catalog-content__pane.is-active {
  display: block;
}
.catalog-content__head {
  margin-bottom: 18px;
}
.catalog-content__head span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-content__head h3 {
  margin: 0;
  color: var(--col-slate-950);
  font-size: 28px;
  line-height: 1.18;
}
.catalog-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.catalog-link-grid a {
  position: relative;
  display: block;
  padding: 12px 34px 12px 0;
  border: 0;
  border-bottom: 1px solid var(--col-slate-100);
  border-radius: 0;
  color: var(--col-slate-800);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}
.catalog-link-grid a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.35;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.catalog-link-grid a:hover {
  color: var(--primary);
  text-decoration: none;
}
.catalog-link-grid a:hover::after {
  opacity: 1;
  transform: translate(3px, -50%) rotate(45deg);
}
.catalog-content__promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--col-primary-950));
}
.catalog-content__promo strong {
  display: block;
  font-size: 20px;
  line-height: 1.18;
}
.catalog-content__promo p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}
.catalog-content__promo .btn {
  width: auto;
  color: var(--primary);
  background: #fff;
}
.hero-slider--static .hero-slider__track {
  min-height: 520px;
}
.hero-slider--static .hero-slide {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-slider--static .hero-slider__shell {
  overflow: hidden;
}
.hero-slider--static .hero-slide::before {
  background: linear-gradient(110deg, rgba(238, 249, 255, 0.95), rgba(255, 255, 255, 0.88) 55%, rgba(248, 250, 252, 0.92)), radial-gradient(circle at 76% 24%, rgba(49, 167, 255, 0.11), transparent 30%);
}
@media (max-width: 900px) {
  .news-grid--industry {
    grid-template-columns: 1fr;
  }
  .catalog-panel__layout,
  .catalog-content {
    grid-template-columns: 1fr;
  }
  .catalog-panel__layout {
    min-height: 0;
  }
  .catalog-menu,
  .catalog-content {
    border-radius: 8px;
    border-left: 1px solid var(--col-slate-200);
  }
  .catalog-content {
    padding: 18px;
  }
  .catalog-link-grid {
    grid-template-columns: 1fr;
  }
  .catalog-content__promo {
    display: none;
  }
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars {
  background: transparent;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::before {
  top: 0;
  transform: rotate(45deg);
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.catalog-content__promo {
  display: block;
}
.catalog-content__promo .btn {
  width: auto;
  margin-top: 16px;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars {
  color: #fff;
  background: transparent !important;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::before,
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::after {
  top: 0 !important;
  background: currentColor;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::before {
  transform: rotate(45deg) !important;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__bars::after {
  transform: rotate(-45deg) !important;
}
.catalog-btn__icon {
  width: 24px;
  height: 24px;
  color: currentColor;
}
.catalog-btn__icon path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.catalog-btn__icon-close {
  display: none;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__icon-menu {
  display: none;
}
.catalog-btn[aria-expanded="true"] .catalog-btn__icon-close {
  display: block;
}
/* Onest — единственное семейство витрины. Веса: 100–900. */
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/Onest-thin.woff2") format("woff2"), url("../fonts/Onest-thin.woff") format("woff"), url("../fonts/Onest-thin.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Onest-light.woff2") format("woff2"), url("../fonts/Onest-light.woff") format("woff"), url("../fonts/Onest-light.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Onest-regular.woff2") format("woff2"), url("../fonts/Onest-regular.woff") format("woff"), url("../fonts/Onest-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Onest-medium.woff2") format("woff2"), url("../fonts/Onest-medium.woff") format("woff"), url("../fonts/Onest-medium.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Onest-bold.woff2") format("woff2"), url("../fonts/Onest-bold.woff") format("woff"), url("../fonts/Onest-bold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Onest-extrabold.woff2") format("woff2"), url("../fonts/Onest-extrabold.woff") format("woff"), url("../fonts/Onest-extrabold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Onest-black.woff2") format("woff2"), url("../fonts/Onest-black.woff") format("woff"), url("../fonts/Onest-black.ttf") format("truetype");
}
body {
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
}
:root {
  --container-max: 1440px;
  --container-pad: 24px;
  --header-height: 73px;
  --section-y: 72px;
  --section-y-sm: 48px;
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
}
@media (max-width: 900px) {
  :root {
    --container-pad: 16px;
    --section-y: 48px;
    --section-y-sm: 36px;
  }
}
.container {
  width: calc(100% - (var(--container-pad) * 2));
  max-width: var(--container-max) !important;
}
.section,
.products,
.category-section,
.benefits,
.solutions,
.news,
.delivery,
.about-strip,
.company-subscribe {
  padding-block: var(--section-y);
}
.products + .category-section,
.category-section + .products,
.news + .delivery,
.delivery + .news {
  padding-top: var(--section-y-sm);
}
.section-head {
  margin-bottom: var(--space-4);
}
@media (max-width: 900px) {
  .section,
  .products,
  .category-section,
  .benefits,
  .solutions,
  .news,
  .delivery,
  .about-strip,
  .company-subscribe {
    padding-block: var(--section-y-sm);
  }
}
.mt-0 {
  margin-top: var(--space-0) !important;
}
.mt-1 {
  margin-top: var(--space-1) !important;
}
.mt-2 {
  margin-top: var(--space-2) !important;
}
.mt-3 {
  margin-top: var(--space-3) !important;
}
.mt-4 {
  margin-top: var(--space-4) !important;
}
.mt-5 {
  margin-top: var(--space-5) !important;
}
.mt-6 {
  margin-top: var(--space-6) !important;
}
.mb-0 {
  margin-bottom: var(--space-0) !important;
}
.mb-1 {
  margin-bottom: var(--space-1) !important;
}
.mb-2 {
  margin-bottom: var(--space-2) !important;
}
.mb-3 {
  margin-bottom: var(--space-3) !important;
}
.mb-4 {
  margin-bottom: var(--space-4) !important;
}
.mb-5 {
  margin-bottom: var(--space-5) !important;
}
.mb-6 {
  margin-bottom: var(--space-6) !important;
}
.pt-0 {
  padding-top: var(--space-0) !important;
}
.pt-1 {
  padding-top: var(--space-1) !important;
}
.pt-2 {
  padding-top: var(--space-2) !important;
}
.pt-3 {
  padding-top: var(--space-3) !important;
}
.pt-4 {
  padding-top: var(--space-4) !important;
}
.pt-5 {
  padding-top: var(--space-5) !important;
}
.pt-6 {
  padding-top: var(--space-6) !important;
}
.pb-0 {
  padding-bottom: var(--space-0) !important;
}
.pb-1 {
  padding-bottom: var(--space-1) !important;
}
.pb-2 {
  padding-bottom: var(--space-2) !important;
}
.pb-3 {
  padding-bottom: var(--space-3) !important;
}
.pb-4 {
  padding-bottom: var(--space-4) !important;
}
.pb-5 {
  padding-bottom: var(--space-5) !important;
}
.pb-6 {
  padding-bottom: var(--space-6) !important;
}
.gap-1 {
  gap: var(--space-1) !important;
}
.gap-2 {
  gap: var(--space-2) !important;
}
.gap-3 {
  gap: var(--space-3) !important;
}
.gap-4 {
  gap: var(--space-4) !important;
}
.gap-5 {
  gap: var(--space-5) !important;
}
.d-flex {
  display: flex !important;
}
.align-center {
  align-items: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.text-muted {
  color: var(--muted) !important;
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
  vertical-align: -0.125em;
}
.icon use {
  fill: currentColor;
  pointer-events: none;
}
/* Панельная ссылка добавляется только пользователям с правом редактирования. */
.edit_trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  background: rgba(21, 67, 123, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}
.edit_trigger:hover,
.edit_trigger:focus-visible {
  background: #15437b;
  color: #fff;
  text-decoration: none;
}
.edit_trigger .edit_title {
  display: none;
}
.edit_trigger:hover .edit_title,
.edit_trigger:focus-visible .edit_title {
  display: inline;
}
.site-main {
  position: relative;
}
.edit_trigger.--page {
  top: 12px;
  right: max(12px, calc((100% - 1320px) / 2));
}
@media (max-width: 767px) {
  .edit_trigger.--page {
    top: 8px;
    right: 8px;
  }
}
.hero-slide,
.news-card,
.exhibition-card,
.article-card,
.content-list > article {
  position: relative;
}
.site-header {
  --topbar-height: 40px;
  position: sticky;
  top: calc(var(--topbar-height) * -1);
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--col-slate-200);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(90deg, var(--col-primary-950), var(--col-primary));
}
.topbar__inner {
  position: relative;
  min-height: var(--topbar-height);
}
.topbar__city {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.16s ease, color 0.16s ease;
}
.topbar__city-icon {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
}
.topbar__city-icon .icon {
  display: block;
  width: 12px;
  height: 14px;
  color: currentColor;
}
.topbar__city:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.topbar__city[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.city-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 70;
  width: 260px;
  padding: 8px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  color: var(--col-slate-900);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}
.city-menu[hidden] {
  display: none;
}
.city-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 28px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--col-slate-200);
  border-left: 1px solid var(--col-slate-200);
  background: #fff;
  transform: rotate(45deg);
}
.city-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.city-menu a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--col-slate-700);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.16s ease, background-color 0.16s ease;
}
.city-menu a:hover {
  color: var(--col-primary);
  background: var(--col-primary-50);
}
.topbar__phones {
  gap: 16px;
}
.topbar__phones span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  white-space: nowrap;
}
.topbar__phones a {
  color: #fff;
  font-weight: 800;
}
.topbar__links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  transition: color 0.16s ease;
}
.topbar__links a:hover {
  color: #fff;
}
.mainbar {
  position: relative;
  z-index: 2;
  min-height: 72px;
  gap: 16px;
  background: #fff;
}
.brand {
  min-width: 292px;
  padding: 0;
}
.brand__logo {
  display: block;
  width: 276px;
  max-width: 100%;
  height: auto;
}
.brand__logo--mobile {
  display: none;
}
.brand:hover .brand__logo {
  opacity: 0.95;
}
.catalog-btn {
  height: 44px;
  padding-inline: 16px 18px;
  border-color: var(--col-primary);
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary);
  box-shadow: none;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}
.catalog-btn:hover,
.catalog-btn[aria-expanded="true"] {
  border-color: var(--col-primary-800);
  background: var(--col-primary-800);
}
.search {
  position: relative;
  height: 44px;
  align-items: stretch;
  border-color: var(--col-slate-200);
  border-radius: 8px;
  overflow: visible;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.search:focus-within {
  border-color: var(--col-primary-300);
  box-shadow: 0 0 0 3px rgba(49, 167, 255, 0.12);
}
.search__hint {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding-inline: 16px 12px;
  color: var(--col-primary);
  border-right: 1px solid var(--col-slate-200);
  background: var(--col-slate-50);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.search input {
  height: 100%;
  color: var(--col-slate-900);
  background: transparent;
  font-size: 15px;
}
.search button {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 100%;
  padding: 0;
  place-items: center;
  border-radius: 0 8px 8px 0;
  color: #fff;
  background: var(--col-primary);
  line-height: 0;
  transition: background-color 0.16s ease;
}
.search button:hover {
  background: var(--col-primary-800);
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  z-index: 80;
  min-width: 520px;
  overflow: hidden;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
}
.search-suggestions[hidden] {
  display: none;
}
.search-suggestions__status {
  padding: 20px;
  color: var(--col-slate-500);
  font-size: 14px;
  text-align: center;
}
.search-suggestions__status:empty {
  display: none;
}
.search-suggestions__list {
  display: grid;
  max-height: min(470px, calc(100vh - 190px));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.search-suggestions .search-suggestion {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  justify-content: stretch;
  gap: 14px;
  min-height: 88px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--col-slate-100);
  color: var(--col-slate-900);
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.search-suggestions .search-suggestion:hover,
.search-suggestions .search-suggestion:focus-visible,
.search-suggestions .search-suggestion.is-active {
  color: var(--col-slate-950);
  background: var(--col-primary-50);
  outline: none;
}
.search-suggestion__image {
  display: grid;
  width: 68px;
  height: 68px;
  overflow: hidden;
  place-items: center;
  border-radius: 6px;
  background: var(--col-gray-50);
}
.search-suggestion__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.search-suggestion__image.is-empty::before {
  content: "Фото";
  color: var(--col-gray);
  font-size: 11px;
  font-weight: 700;
}
.search-suggestion__body {
  min-width: 0;
}
.search-suggestion__name {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggestion__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-top: 7px;
}
.search-suggestion__price {
  color: var(--col-red);
  font-size: 17px;
  font-weight: 900;
}
.search-suggestion__old-price {
  color: var(--col-slate-500);
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}
.search-suggestions .search-suggestions__all {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  color: #fff;
  background: var(--col-primary);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.16s ease;
}
.search-suggestions .search-suggestions__all[hidden] {
  display: none;
}
.search-suggestions .search-suggestions__all:hover {
  color: #fff;
  background: var(--col-primary-800);
}
.search-suggestions .search-suggestions__all span {
  font-size: 18px;
  line-height: 1;
}
.header-action,
.cart {
  height: 44px;
  min-height: 44px;
  /* перебиваем min-height:48 из _current.less */
  border-color: var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.header-action {
  width: 44px;
}
.header-action--search {
  display: none;
}
.header-messengers {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
}
.header-messenger {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.header-messenger:hover {
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
}
.header-messenger img {
  display: block;
  width: 25px;
  height: 25px;
}
.header-action svg,
.cart svg,
.search button svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-action:hover,
.cart:hover {
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
}
.cart {
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 6px;
  color: var(--col-primary);
}
.cart__icon {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--col-primary);
}
.cart__icon svg {
  width: 18px;
  height: 18px;
}
.cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--col-red);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.cart__count--bump {
  animation: cart-bump 0.3s ease;
}
@keyframes cart-bump {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}
.cart__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
/* Всплывашка «товар добавлен в корзину» */
.cart-toast {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 12, 18, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.cart-toast.is-open {
  opacity: 1;
  visibility: visible;
}
.cart-toast__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(22, 32, 51, 0.22);
  transform: translateY(8px);
  transition: transform 0.2s ease;
}
.cart-toast.is-open .cart-toast__panel {
  transform: none;
}
.cart-toast__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.cart-toast__close:hover {
  background: var(--col-primary-50);
  color: var(--primary);
}
.cart-toast__close .icon {
  width: 14px;
  height: 14px;
}
.cart-toast__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-right: 30px;
}
.cart-toast__check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--col-primary-50);
  color: var(--primary);
}
.cart-toast__check .icon {
  width: 16px;
  height: 16px;
}
.cart-toast__head strong {
  font-size: 16px;
}
.cart-toast__product {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cart-toast__img {
  width: 88px;
  height: 88px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.cart-toast__name {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
}
.cart-toast__meta {
  margin-top: 5px;
  font-size: 13px;
  color: var(--muted);
}
.cart-toast__sum {
  align-self: start;
  font-weight: 700;
  white-space: nowrap;
}
.cart-toast__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.cart-toast__actions .btn {
  width: 100%;
  white-space: nowrap;
}
.cart strong {
  color: var(--col-slate-950);
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
}
.cart small {
  margin-top: 1px;
  color: var(--col-slate-500);
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
}
.catalog-panel {
  top: 100%;
  z-index: 45;
}
@media (max-width: 1200px) {
  .brand {
    min-width: 250px;
  }
  .brand__logo {
    width: 236px;
  }
}
@media (max-width: 900px) {
  .site-header {
    --topbar-height: 40px;
  }
  .topbar__phones,
  .topbar__links,
  .search__hint {
    display: none;
  }
  .mainbar {
    min-height: 74px;
    gap: 10px;
  }
  .brand {
    min-width: 176px;
    padding: 0;
  }
  .brand__logo {
    width: 176px;
  }
  .catalog-btn,
  .header-action,
  .header-messenger,
  .cart {
    height: 46px;
  }
  .header-messenger {
    width: 46px;
    flex-basis: 46px;
  }
  .search {
    height: 54px;
  }
  .catalog-btn {
    width: auto;
    min-width: 118px;
    padding-inline: 12px 14px;
    justify-content: center;
    gap: 8px;
  }
  .catalog-btn > span:not(.catalog-btn__bars) {
    display: block;
  }
  .catalog-btn strong {
    font-size: 14px;
  }
  .header-action {
    width: 46px;
  }
  .cart {
    width: auto;
    min-width: 46px;
    padding-inline: 5px;
    justify-content: center;
  }
  .cart__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .cart .cart__icon .cart__count {
    display: grid;
  }
  .cart__body {
    display: none;
  }
  .search button {
    flex-basis: 50px;
    width: 50px;
  }
}
@media (max-width: 520px) {
  .site-header {
    --topbar-height: 34px;
  }
  .site-header {
    top: calc(var(--topbar-height) * -1);
  }
  .is-mobile-search-open .site-header {
    top: 0;
    z-index: 120;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }
  .is-mobile-search-open .mainbar {
    background: transparent;
  }
  .is-mobile-search-open .topbar,
  .is-mobile-search-open .brand,
  .is-mobile-search-open .header-action,
  .is-mobile-search-open .header-messengers,
  .is-mobile-search-open .cart,
  .is-mobile-search-open .catalog-btn {
    visibility: hidden;
    opacity: 0;
  }
  .topbar__inner {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    min-height: var(--topbar-height);
  }
  .topbar__city {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 13px;
  }
  .topbar__phones {
    display: inline-flex;
    min-width: 0;
    flex: 1;
    gap: 0;
  }
  .topbar__phones span {
    display: none;
  }
  .topbar__phones span:first-child {
    display: inline-flex;
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
  }
  .topbar__phones span:first-child a {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mainbar {
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    min-height: 62px;
    padding-block: 6px;
  }
  .brand {
    order: 1;
    flex: 0 0 74px;
    min-width: 0;
    max-width: 74px;
  }
  .brand__logo--desktop {
    display: none;
  }
  .brand__logo--mobile {
    display: block;
    width: 62px;
  }
  .header-action--search {
    margin-left: auto;
  }
  .catalog-btn,
  .header-action,
  .cart {
    display: inline-grid;
    grid-template-columns: 1fr;
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    min-width: 32px;
    min-height: 32px;
    place-items: center;
    padding: 0;
    line-height: 0;
  }
  .catalog-btn {
    order: 5;
    flex: 0 0 32px;
    min-width: 32px;
    width: 32px;
    padding: 0;
  }
  .catalog-btn > span:not(.catalog-btn__bars) {
    display: none;
  }
  .catalog-btn__icon {
    margin: 0;
  }
  .header-action,
  .cart {
    order: 1;
    flex: 0 0 32px;
  }
  .header-action {
    order: 2;
    width: 32px;
  }
  .header-action--search {
    display: inline-grid;
  }
  .header-action,
  .cart {
    border-color: transparent;
    background: transparent;
  }
  .header-messengers {
    order: 3;
    gap: 6px;
  }
  .header-messenger {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border: 0;
    background: transparent;
  }
  .header-messenger img {
    width: 27px;
    height: 27px;
  }
  .cart {
    order: 4;
    min-width: 32px;
    width: 32px;
  }
  .cart__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .cart__count {
    top: -6px;
    right: -6px;
  }
  .search {
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 130;
    display: none;
    height: 58px;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(3, 7, 18, 0.3);
    pointer-events: auto;
  }
  .search-suggestions {
    top: calc(100% + 8px);
    min-width: 0;
    max-height: calc(100vh - 98px);
    border-radius: 10px;
  }
  .search-suggestions__list {
    max-height: calc(100vh - 190px);
  }
  .search-suggestion {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 11px;
    min-height: 76px;
    padding: 9px 11px;
  }
  .search-suggestion__image {
    width: 56px;
    height: 56px;
  }
  .search-suggestion__name {
    display: -webkit-box;
    font-size: 14px;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .search-suggestion__prices {
    margin-top: 5px;
  }
  .search-suggestion__price {
    font-size: 16px;
  }
  .search input {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--col-slate-200);
    border-radius: 8px;
    color: var(--col-slate-950);
    background: var(--col-slate-50);
    font-size: 15px;
    outline: none;
  }
  .search input:focus {
    border-color: var(--col-primary-300);
    background: #fff;
  }
  .search button {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  .search button svg {
    width: 19px;
    height: 19px;
  }
  .header-action svg {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  .catalog-btn__icon {
    width: 18px;
    height: 18px;
    margin: 0;
  }
  .header-action svg {
    transform: translateX(0);
  }
  .is-mobile-search-open .search {
    display: flex;
  }
  .mobile-search-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.62);
    backdrop-filter: blur(2px);
  }
  .mobile-search-backdrop[hidden] {
    display: none;
  }
}
@media (max-width: 360px) {
  .mainbar {
    gap: 4px;
  }
  .header-messengers {
    gap: 4px;
  }
  .brand {
    flex-basis: 54px;
    max-width: 54px;
  }
  .brand__logo--mobile {
    width: 50px;
  }
  .catalog-btn,
  .header-action,
  .cart {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    min-width: 32px;
  }
  .header-messenger {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .header-messenger img {
    width: 22px;
    height: 22px;
  }
}
.hero {
  padding-block: 20px 18px;
}
/* Сетка hero: слева слайдер, справа функциональный рейл */
.hero__grid {
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
}
/* ---------- Слайдер (визуал) ---------- */
.hero__slider {
  position: relative;
  min-width: 0;
  /* гасим легаси-паддинг/фон старого .hero-slider из _current.less */
  padding: 0;
  background: none;
}
/* Баннеры главного слайдера загружаются в формате 1080x560. Сохраняем
   исходное соотношение сторон, чтобы текст и графика по краям не обрезались. */
.hero__slider > .ave-slider {
  height: auto;
  aspect-ratio: 27 / 14;
}
.hero__slider .ave-slider__media img {
  object-fit: contain;
}
.hero-slider__track {
  /* Нативный горизонтальный слайдер на scroll-snap: свайп/трекпад из коробки,
     позиция «защёлкивается», без самописного драга и «прыжков». */
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Высота не зависит от пропорций загруженного баннера. */
  height: 560px;
  min-height: 0;
  border-radius: 8px;
  background: var(--col-slate-100);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  cursor: grab;
}
.hero-slider.is-dragging {
  user-select: none;
}
.hero-slider.is-dragging .hero-slider__track {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.hero-slider.is-dragging a,
.hero-slider.is-dragging button {
  pointer-events: none;
}
.hero-slider__track::-webkit-scrollbar {
  display: none;
}
.hero-slide {
  /* Сброс легаси-правил из _current.less (position:absolute; opacity:0;
     transform; pointer-events:none), из-за которых слайды были невидимы. */
  position: relative;
  inset: auto;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: block;
  padding: 0;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: none;
}
/* Легаси-оверлей поверх слайда не нужен для баннеров-картинок. */
.hero-slide::before {
  content: none;
}
.hero-banner {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.hero-banner:hover {
  color: inherit;
  text-decoration: none;
}
.hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-slider__nav {
  position: absolute;
  right: 24px;
  bottom: 16px;
  left: 24px;
  z-index: 6;
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.slider-dots button {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}
.slider-dots button.is-active {
  width: 16px;
  background: var(--primary);
}
/* ---------- Функциональный рейл ---------- */
.hero__rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
/* Карточка СФР — главный акцент */
.hero-sfr {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* не сжиматься: рейл сохраняет истинную высоту контента, ряд 1fr тянет баннер */
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  /* Цвета СФР: тёмный якорь сверху-слева (под белый заголовок) → бирюза СФР */
  background: radial-gradient(120% 120% at 100% 100%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%), linear-gradient(150deg, var(--col-primary) 0%, #0a7391 54%, #0aa5cc 120%);
  transition: transform 0.2s ease;
}
/* Еле заметный логотип СФР на фоне плашки */
.hero-sfr__watermark {
  position: absolute;
  right: -22px;
  bottom: -34px;
  z-index: 0;
  width: 200px;
  color: #fff;
  opacity: 0.09;
  pointer-events: none;
}
.hero-sfr__watermark .icon {
  width: 100%;
  height: auto;
}
/* Контент — над водяным знаком */
.hero-sfr__top,
.hero-sfr__title,
.hero-sfr .hero-sfr__text,
.hero-sfr__cta {
  position: relative;
  z-index: 1;
}
.hero-sfr:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}
.hero-sfr__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-sfr__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-sfr__icon .icon {
  width: 26px;
  height: 26px;
  color: #fff;
}
.hero-sfr__flag {
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--col-primary);
  background: #fff;
}
.hero-sfr__title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
}
/* Спецификация повышена: перебиваем легаси-правило `.hero p { color: muted }` */
.hero-sfr .hero-sfr__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.hero-sfr__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 15px;
  font-weight: 700;
}
.hero-sfr__arrow {
  display: inline-flex;
  transition: transform 0.2s ease;
}
.hero-sfr__arrow .icon {
  width: 16px;
  height: 16px;
}
.hero-sfr:hover .hero-sfr__arrow {
  transform: translateX(4px);
}
/* Карточка «Поможем с подбором» */
.hero-help {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--col-primary-100);
  box-shadow: var(--shadow-sm);
}
.hero-help__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  color: var(--primary);
  background: var(--col-primary-50);
}
.hero-help__icon .icon {
  width: 22px;
  height: 22px;
}
.hero-help__body strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}
.hero-help__body p {
  margin: 2px 0 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.hero-help__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--link);
}
.hero-help__cta:hover {
  color: var(--link-hover);
}
/* У первой товарной секции уже есть собственный вертикальный ритм. Не
   складываем его с большим нижним отступом hero. */
.hero + .product-carousel-section {
  padding-top: 32px;
}
@media (hover: hover) and (pointer: fine) {
  .hero__slider .ave-slider__arrow,
  .hero__slider .ave-slider__dots {
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.16s;
    transition-timing-function: ease-out;
  }
  .hero__slider:hover .ave-slider__arrow,
  .hero__slider:hover .ave-slider__dots,
  .hero__slider:focus-within .ave-slider__arrow,
  .hero__slider:focus-within .ave-slider__dots {
    opacity: 1;
    visibility: visible;
  }
}
/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .hero-sfr__title {
    font-size: 19px;
  }
}
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero-slider__track {
    height: auto;
    aspect-ratio: 27 / 14;
  }
  .hero__slider > .ave-slider {
    aspect-ratio: 27 / 14;
  }
  /* Под баннером карточки рейла идут стопкой на всю ширину — СФР остаётся
     заметной, «Поможем с подбором» без пустот сбоку. */
  .hero__rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-sfr {
    /* на планшете контенту хватает высоты без растягивания ряда */
    flex: 0 0 auto;
    min-height: 200px;
  }
  .hero + .product-carousel-section {
    padding-top: 28px;
  }
}
@media (max-width: 720px) {
  /* Мобильные баннеры подготовлены в размере 655x484. Точное соотношение
     исключает пустую полосу и не требует обрезать изображение. */
  .hero-slider__track,
  .hero__slider > .ave-slider {
    aspect-ratio: 655 / 484;
  }
  /* На сенсорном экране слайды переключаются свайпом и точками. */
  .hero .ave-slider__viewport {
    touch-action: pan-y pinch-zoom;
  }
  .hero .ave-slider__arrow {
    display: none;
  }
}
.catalog-panel__layout {
  grid-template-columns: 330px minmax(0, 1fr);
  height: 576px;
  min-height: 0;
}
.catalog-mobile {
  display: none;
}
.catalog-panel__lazy {
  width: 100%;
  min-width: 0;
}
.catalog-panel__loading,
.catalog-panel__load-error {
  min-height: 576px;
  align-content: center;
  justify-items: center;
  color: var(--col-slate-600);
  text-align: center;
}
.catalog-panel__loading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.catalog-panel__loading > span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--col-slate-200);
  border-top-color: var(--col-primary);
  border-radius: 50%;
  animation: catalogLoadingSpin 0.7s linear infinite;
}
.catalog-panel__load-error {
  display: grid;
  gap: 8px;
}
.catalog-panel__load-error strong {
  color: var(--col-slate-900);
  font-size: 17px;
}
.catalog-panel__load-error span {
  font-size: 14px;
}
.catalog-panel__load-error button {
  min-width: 112px;
  min-height: 40px;
  margin-top: 6px;
  padding: 8px 16px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--col-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
@keyframes catalogLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}
.catalog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(3, 7, 18, 0.48);
  backdrop-filter: blur(2px);
  animation: catalogBackdropFade 0.16s ease both;
}
.catalog-backdrop[hidden] {
  display: none;
}
.is-catalog-open .cookie-notice {
  z-index: 20;
}
@keyframes catalogBackdropFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.catalog-menu {
  height: 540px;
  max-height: 540px;
  gap: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: var(--col-slate-300) transparent;
  scrollbar-width: thin;
}
.catalog-menu::-webkit-scrollbar {
  width: 6px;
}
.catalog-menu::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--col-slate-300);
}
.catalog-menu__item {
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 66px;
  height: auto !important;
  padding: 10px 12px;
  overflow: visible;
  border-color: transparent !important;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.catalog-menu__item::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0;
}
.catalog-menu__item:hover,
.catalog-menu__item.is-active {
  color: var(--primary);
  background: var(--col-primary-50);
  border-color: transparent !important;
  box-shadow: none;
}
.catalog-menu__item:hover::before,
.catalog-menu__item.is-active::before {
  opacity: 1;
}
.catalog-menu__item--tcr,
.catalog-menu__item--sale {
  min-height: 68px;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}
.catalog-menu__item--tcr .catalog-menu__icon,
.catalog-menu__item--sale .catalog-menu__icon {
  color: #fff;
  border: 0;
  box-shadow: none;
}
.catalog-menu__item--tcr .catalog-menu__icon img,
.catalog-menu__item--sale .catalog-menu__icon img {
  filter: brightness(0) invert(1);
}
.catalog-menu__icon img,
.catalog-menu__icon .icon {
  display: block;
  width: 23px;
  height: 23px;
  color: currentColor;
  fill: currentColor;
}
.catalog-menu__icon {
  width: 42px;
  height: 42px;
}
.catalog-menu__item--tcr {
  color: #0b9fc7;
}
.catalog-menu__item--tcr::before {
  background: #0ebde8;
}
.catalog-menu__item--tcr .catalog-menu__icon,
.catalog-menu__item--tcr:hover .catalog-menu__icon,
.catalog-menu__item--tcr.is-active .catalog-menu__icon {
  background: #0ebde8;
}
.catalog-menu__item--sale {
  color: var(--col-red);
}
.catalog-menu__item--sale::before {
  background: var(--col-red);
}
.catalog-menu__item--sale .catalog-menu__icon,
.catalog-menu__item--sale:hover .catalog-menu__icon,
.catalog-menu__item--sale.is-active .catalog-menu__icon {
  background: var(--col-red);
}
.catalog-menu__item--tcr:hover,
.catalog-menu__item--tcr.is-active,
.catalog-menu__item--sale:hover,
.catalog-menu__item--sale.is-active {
  border-color: transparent !important;
  box-shadow: none;
}
.catalog-menu__item--tcr:hover,
.catalog-menu__item--tcr.is-active {
  color: #0b9fc7;
  background: #eafaff;
}
.catalog-menu__item--sale:hover,
.catalog-menu__item--sale.is-active {
  color: var(--col-red);
  background: var(--col-red-50);
}
.catalog-menu__item--tcr:hover small,
.catalog-menu__item--tcr.is-active small,
.catalog-menu__item--sale:hover small,
.catalog-menu__item--sale.is-active small {
  color: var(--muted);
}
.catalog-content {
  height: 540px;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.catalog-content__pane {
  min-height: 0;
}
.catalog-content__pane.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  grid-template-rows: 1fr;
  height: 100%;
  gap: 24px;
  align-items: stretch;
  flex: 1;
}
.catalog-content__pane--placeholder.is-active {
  display: flex;
  align-items: stretch;
}
.catalog-directions-placeholder {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
  border: 1px dashed var(--col-primary-200);
  border-radius: 8px;
  background: var(--col-primary-50);
}
.catalog-directions-placeholder__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.catalog-directions-placeholder__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.catalog-directions-placeholder__eyebrow {
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-directions-placeholder strong {
  max-width: 560px;
  color: var(--col-slate-950);
  font-size: 26px;
  line-height: 1.15;
}
.catalog-directions-placeholder p {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--col-slate-600);
  font-size: 15px;
  line-height: 1.55;
}
.catalog-directions-placeholder small {
  margin-top: 24px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--col-primary-900);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.catalog-content__main {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.catalog-dynamic-head {
  display: flex;
  min-height: 38px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 10px;
}
.catalog-dynamic-head strong {
  color: var(--col-slate-950);
  font-size: 15px;
  line-height: 1.25;
}
.catalog-dynamic-head span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border-radius: 6px;
  color: var(--primary);
  background: var(--col-primary-50);
  font-size: 12px;
  font-weight: 800;
}
.catalog-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 48px;
  gap: 6px 10px;
  align-items: start;
  align-content: start;
}
.catalog-link-grid a {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 6px 34px 6px 12px;
  border: 1px solid var(--col-slate-100);
  border-radius: 8px;
  background: var(--col-slate-50);
  font-size: 13px;
  line-height: 1.2;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
.catalog-link-grid a::after {
  right: 15px;
  opacity: 0.28;
  transform: translateY(-50%) rotate(45deg);
}
.catalog-link-grid a:hover {
  border-color: var(--col-primary-200);
  background: #fff;
}
.catalog-link-grid a:hover::after {
  opacity: 0.85;
  transform: translateY(-50%) rotate(45deg);
}
.catalog-link-grid--dynamic {
  grid-auto-rows: 48px;
}
.catalog-link-grid--dynamic a {
  gap: 8px;
  justify-content: space-between;
}
.catalog-link-grid--dynamic a span {
  min-width: 0;
}
.catalog-link-grid--dynamic a small {
  display: grid;
  min-width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0 6px;
  border-radius: 5px;
  color: var(--col-slate-600);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.catalog-panel .catalog-dynamic-banner {
  display: flex;
  min-height: 300px;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
}
.catalog-panel .catalog-dynamic-banner--sale {
  background: var(--col-red);
}
.catalog-panel .catalog-dynamic-banner--tcr,
.catalog-panel .catalog-dynamic-banner--sfr {
  background: #0b9fc7;
}
.catalog-dynamic-banner__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}
.catalog-dynamic-banner__icon img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}
.catalog-dynamic-banner > small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-dynamic-banner strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
}
.catalog-dynamic-banner p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}
.catalog-dynamic-banner em {
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--col-slate-950);
  background: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.catalog-section-banner {
  position: relative;
  display: flex;
  min-height: 300px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, rgba(20, 48, 87, 0.96), rgba(21, 67, 123, 0.9)), var(--col-primary);
  background-position: center;
  background-size: cover;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(21, 67, 123, 0.14);
  isolation: isolate;
}
.catalog-section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 48, 87, 0.05), rgba(20, 48, 87, 0.88)), linear-gradient(90deg, rgba(21, 67, 123, 0.45), transparent 70%);
  transition: opacity 0.2s ease;
}
.catalog-section-banner::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -50px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.catalog-section-banner:hover {
  color: #fff;
}
.catalog-section-banner:hover::before {
  opacity: 0.86;
}
.catalog-section-banner span {
  width: fit-content;
  max-width: 100%;
  margin-bottom: auto;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--col-primary-950);
  background: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.catalog-section-banner strong {
  display: block;
  margin-top: 88px;
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(3, 7, 18, 0.28);
}
.catalog-section-banner small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 1200px) {
  .catalog-panel__layout {
    grid-template-columns: 330px minmax(0, 1fr);
  }
  .catalog-content__pane.is-active {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
  }
}
@media (max-width: 1100px) {
  .catalog-content__pane.is-active {
    grid-template-columns: minmax(0, 1fr);
  }
  .catalog-section-banner {
    display: none;
  }
}
.mobile-site-menu {
  display: none;
}
@media (max-width: 900px) {
  .catalog-panel__layout,
  .catalog-content {
    height: auto;
    min-height: 0;
  }
  .catalog-menu {
    height: auto;
    max-height: 360px;
    overflow: auto;
  }
  .catalog-content__body {
    grid-template-columns: 1fr;
  }
  .catalog-link-grid {
    grid-template-columns: 1fr;
  }
  .catalog-section-banner {
    min-height: 180px;
    height: auto;
  }
}
@media (max-width: 900px) {
  .catalog-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 45;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    padding: 10px 0 18px;
    overflow: auto;
    background: #fff;
    overscroll-behavior: contain;
  }
  .container.catalog-panel__layout {
    display: none;
  }
  .container.catalog-mobile {
    display: grid;
    gap: 8px;
    width: calc(100% - 24px) !important;
    max-width: none;
    padding: 0;
  }
  .catalog-panel__loading,
  .catalog-panel__load-error {
    width: calc(100% - 24px) !important;
    min-height: 120px;
    padding: 20px 0;
  }
  .catalog-mobile__item {
    overflow: hidden;
    border: 1px solid var(--col-slate-200);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
  }
  .catalog-mobile__item[open] {
    border-color: var(--col-primary-200);
    box-shadow: 0 12px 28px rgba(21, 67, 123, 0.08);
  }
  .catalog-mobile__item--link {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 64px;
    padding: 10px 42px 10px 12px;
    color: var(--col-slate-900);
    text-decoration: none;
  }
  .catalog-mobile__item--link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--col-slate-400);
    border-right: 2px solid var(--col-slate-400);
    transform: translateY(-50%) rotate(45deg);
  }
  .catalog-mobile__item--sale {
    color: var(--col-red);
  }
  .catalog-mobile__item--tcr {
    color: #0b9fc7;
  }
  .catalog-mobile__item summary {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 64px;
    padding: 10px 42px 10px 12px;
    color: var(--col-slate-900);
    cursor: pointer;
    list-style: none;
  }
  .catalog-mobile__item summary::-webkit-details-marker {
    display: none;
  }
  .catalog-mobile__item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--col-slate-400);
    border-bottom: 2px solid var(--col-slate-400);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.18s ease, border-color 0.18s ease;
  }
  .catalog-mobile__item[open] summary {
    color: var(--col-primary);
    background: var(--col-primary-50);
  }
  .catalog-mobile__item[open] summary::after {
    border-color: var(--col-primary);
    transform: translateY(-35%) rotate(225deg);
  }
  .catalog-mobile__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: var(--col-primary);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--col-primary-100);
    font-size: 12px;
    font-weight: 900;
  }
  .catalog-mobile__icon img,
  .catalog-mobile__icon .icon {
    display: block;
    width: 23px;
    height: 23px;
    color: currentColor;
    fill: currentColor;
  }
  .catalog-mobile__item--tcr .catalog-mobile__icon {
    color: #fff;
    background: #0ebde8;
    box-shadow: none;
  }
  .catalog-mobile__item--sale .catalog-mobile__icon {
    color: #fff;
    background: var(--col-red);
    box-shadow: none;
  }
  .catalog-mobile__item--tcr .catalog-mobile__icon img,
  .catalog-mobile__item--sale .catalog-mobile__icon img {
    filter: brightness(0) invert(1);
  }
  .catalog-mobile__text strong,
  .catalog-mobile__text small {
    display: block;
  }
  .catalog-mobile__text strong {
    font-size: 15px;
    line-height: 1.22;
  }
  .catalog-mobile__text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.2;
  }
  .catalog-mobile__links {
    display: grid;
    gap: 7px;
    padding: 10px 12px 14px;
    background: linear-gradient(180deg, var(--col-primary-50), #fff 42%);
  }
  .catalog-mobile__placeholder {
    padding: 12px 16px 16px;
    color: var(--col-slate-600);
    background: var(--col-primary-50);
    font-size: 13px;
    line-height: 1.45;
  }
  .catalog-mobile__links a {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 34px 10px 12px;
    border: 1px solid var(--col-slate-100);
    border-radius: 7px;
    color: var(--col-slate-800);
    background: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.035);
    transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
  }
  .catalog-mobile__links a span {
    min-width: 0;
  }
  .catalog-mobile__links a small {
    display: grid;
    min-width: 23px;
    height: 23px;
    margin-left: auto;
    place-items: center;
    padding: 0 6px;
    border-radius: 5px;
    color: var(--col-slate-600);
    background: var(--col-slate-50);
    font-size: 11px;
  }
  .catalog-mobile__links .catalog-mobile__all {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
  }
  .catalog-mobile__item--sale .catalog-mobile__links .catalog-mobile__all {
    border-color: var(--col-red);
    background: var(--col-red);
  }
  .catalog-mobile__item--tcr .catalog-mobile__links .catalog-mobile__all {
    border-color: #0b9fc7;
    background: #0b9fc7;
  }
  .catalog-mobile__links .catalog-mobile__all::after {
    border-color: #fff;
  }
  .catalog-mobile__links a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--col-slate-300);
    border-right: 2px solid var(--col-slate-300);
    transform: translateY(-50%) rotate(45deg);
  }
  .catalog-mobile__links a:hover {
    color: var(--col-primary);
    border-color: var(--col-primary-200);
    background: var(--col-primary-50);
  }
  .container.mobile-site-menu {
    display: grid;
    width: calc(100% - 24px) !important;
    max-width: none;
    margin-top: 18px;
    padding: 18px 0 calc(88px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--col-slate-200);
  }
  .mobile-site-menu__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }
  .mobile-site-menu__quick a {
    display: flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid var(--col-slate-200);
    border-radius: 7px;
    color: var(--col-slate-800);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-site-menu__quick a:hover {
    color: var(--col-primary);
    background: var(--col-primary-50);
  }
  .mobile-site-menu__group {
    border-bottom: 1px solid var(--col-slate-200);
  }
  .mobile-site-menu__group summary {
    position: relative;
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 10px 38px 10px 2px;
    color: var(--col-slate-900);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    list-style: none;
  }
  .mobile-site-menu__group summary::-webkit-details-marker {
    display: none;
  }
  .mobile-site-menu__group summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--col-slate-400);
    border-bottom: 2px solid var(--col-slate-400);
    transform: translateY(-65%) rotate(45deg);
    transition: border-color 0.16s ease, transform 0.16s ease;
  }
  .mobile-site-menu__group[open] summary {
    color: var(--col-primary);
  }
  .mobile-site-menu__group[open] summary::after {
    border-color: var(--col-primary);
    transform: translateY(-35%) rotate(225deg);
  }
  .mobile-site-menu__links .footer_menu_list {
    display: grid;
    gap: 5px;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
  }
  .mobile-site-menu__links .footer_menu_item:first-child {
    display: none;
  }
  .mobile-site-menu__links .footer_menu_link {
    display: flex;
    min-height: 42px;
    margin: 0;
    align-items: center;
    padding: 8px 12px;
    border: 0;
    border-radius: 6px;
    color: var(--col-slate-700);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
  }
  .mobile-site-menu__links .footer_menu_link:hover {
    color: var(--col-primary);
    background: var(--col-primary-50);
  }
  .mobile-site-menu__contact {
    display: grid;
    gap: 10px;
    padding: 20px 2px 4px;
  }
  .mobile-site-menu__contact > span {
    color: var(--col-slate-500);
    font-size: 12px;
    font-weight: 700;
  }
  .catalog-panel .mobile-site-menu__phone {
    display: inline-flex;
    width: max-content;
    min-height: 40px;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--col-slate-950);
    background: transparent;
    box-shadow: none;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
  }
  .catalog-panel .mobile-site-menu__phone .icon {
    width: 18px;
    height: 18px;
    color: var(--col-primary);
  }
  .catalog-panel .mobile-site-menu__phone:hover {
    color: var(--col-primary);
    background: transparent;
  }
  .mobile-site-menu__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  .mobile-site-menu__messengers a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    border: 0;
    border-radius: 0;
    color: var(--col-slate-800);
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-site-menu__messengers a:hover {
    color: var(--col-primary);
    background: transparent;
  }
  .mobile-site-menu__messengers img {
    width: 26px;
    height: 26px;
  }
}
.product-card {
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transform: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.product-card:hover {
  border-color: var(--col-primary-200);
  box-shadow: none;
  transform: none;
}
.product-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--col-primary-300), transparent);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.product-card:hover::before {
  opacity: 1;
}
.products-section,
.product-carousel-section {
  position: relative;
  overflow: visible;
  background: transparent;
}
.product-carousel {
  overflow: visible;
  touch-action: pan-y;
}
.product-carousel.is-dragging {
  user-select: none;
}
.product-carousel.is-dragging .product-track {
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.product-carousel.is-dragging a,
.product-carousel.is-dragging button {
  pointer-events: none;
}
.product-track {
  display: flex;
  gap: 16px;
  margin: -24px 0 -58px;
  padding: 24px 28px 58px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.product-carousel.is-dragging .product-track {
  cursor: grabbing;
}
.product-track::-webkit-scrollbar {
  display: none;
}
.product-track .product-card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
@media (min-width: 1361px) {
  .product-carousel-section--sale .product-track .product-card,
  .product-carousel-section--new .product-track .product-card {
    flex-basis: calc((100% - 64px) / 5);
  }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 18px;
  margin-top: 18px;
}
.carousel-dots button {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--col-slate-300);
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}
.carousel-dots button.is-active {
  width: 16px;
  background: var(--primary);
}
.carousel-controls button {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--col-slate-200);
  border-radius: 7px;
  color: var(--col-slate-500);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.carousel-controls button::after {
  content: "";
  position: absolute;
  inset: -3px;
}
.carousel-controls button:hover {
  border-color: var(--col-primary-200);
  color: var(--col-primary);
  background: var(--col-primary-50);
  box-shadow: none;
}
.carousel-controls button:disabled {
  border-color: var(--col-slate-100);
  color: var(--col-slate-300);
  background: transparent;
  cursor: default;
  opacity: 0.75;
}
.carousel-controls button img,
.carousel-controls button .icon {
  display: block;
  width: 8px;
  height: 14px;
  color: currentColor;
  fill: currentColor;
}
.product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 8px 8px 0 0;
  background: #f4f8fb;
  transform: none;
}
.product-card:hover .product-card__media {
  transform: none;
}
.product-card__media::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42));
  pointer-events: none;
}
.product-card__caption {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 10px;
  left: 10px;
  display: -webkit-box;
  width: fit-content;
  max-width: calc(100% - 70px);
  max-height: 48px;
  padding: 4px 8px;
  overflow: hidden;
  border: 1px solid var(--col-primary-800);
  border-radius: 4px;
  color: #fff;
  background: var(--col-primary-800);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  pointer-events: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card__media.has-caption .product-image-dots {
  bottom: 52px;
}
/* Кнопка избранного (в углу медиа карточки) */
.product-card__fav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 50%;
  background: #fff;
  color: var(--col-slate-500);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.product-card__fav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card__fav:hover {
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
}
.product-card__fav:active {
  transform: scale(0.96);
}
.product-card__fav.is-active,
.product-card__fav.--favorite {
  color: var(--col-red);
}
.product-card__fav.is-active svg,
.product-card__fav.--favorite svg {
  fill: currentColor;
}
.product-image-viewer,
.product-image-viewer__slides,
.product-image-slide {
  width: 100%;
  height: 100%;
}
.product-image-viewer {
  position: relative;
  z-index: 1;
}
.product-image-slide {
  display: none;
  align-items: center;
  justify-content: center;
}
.product-image-slide.is-active {
  display: flex;
}
.product-image-slide img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  filter: none;
}
.product-image-dots {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.product-image-dots span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(21, 67, 123, 0.22);
}
.product-image-dots span.is-active {
  width: 16px;
  border-radius: 999px;
  background: var(--primary);
}
.product-badges {
  position: absolute;
  z-index: 5;
  top: 10px;
  display: grid;
  gap: 6px;
}
/* Бейджи приглушены до наведения, но остаются читаемыми: на .2 белая иконка
   давала 1.42:1 к своей плашке, на .6 — 3.37:1 при пороге 3:1 для графики. */
.product-card .product-badges {
  opacity: 0.6;
  transition: opacity 0.18s ease;
}
.product-card:hover .product-badges,
.product-card:focus-within .product-badges {
  opacity: 1;
}
/* Там, где ховера нет, приглушать нечего: тач-пользователь иначе не увидит бейдж никогда. */
@media (hover: none) {
  .product-card .product-badges {
    opacity: 1;
  }
}
.product-badges--left {
  left: 10px;
}
.product-badges--right {
  right: 10px;
}
.product-badge {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.product-badge img,
.product-badge .icon {
  display: block;
  width: 21px;
  height: 21px;
  color: #fff;
  fill: currentColor;
}
.product-badge::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  z-index: 10;
  width: max-content;
  max-width: 210px;
  padding: 7px 9px;
  border-radius: 6px;
  color: #fff;
  background: var(--col-slate-900);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.product-badges--right .product-badge::after {
  right: calc(100% + 8px);
  left: auto;
  transform: translateY(-50%) translateX(4px);
}
.product-badge:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.product-badge--discount {
  background: var(--col-red);
}
.product-badge--new {
  background: var(--col-green-600);
}
.product-badge--video {
  background: var(--col-primary-700);
}
.product-badge--registry {
  background: #522583;
}
.product-badge--tsr {
  background: #0ebde8;
}
.product-badge--tsr .icon {
  width: 23px;
  height: 23px;
}
.product-badge--gift {
  background: var(--col-red-500);
}
.product-badge--delivery {
  background: var(--col-primary);
}
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.product-card__meta {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.product-card__code {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.availability {
  position: relative;
  margin: 0;
  padding-left: 13px;
  color: var(--col-green-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
.availability::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--col-green-500);
  transform: translateY(-50%);
}
.availability.is-order {
  color: var(--col-orange-700);
}
.availability.is-order::before {
  background: var(--col-orange-500);
}
.product-card__certificate {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  margin: -2px 0 12px;
  padding: 7px 10px;
  border: 1px solid rgba(14, 189, 232, 0.28);
  border-radius: 7px;
  color: #087f9d;
  background: rgba(14, 189, 232, 0.09);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
.product-card__certificate .icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  color: #0ebde8;
}
.product-card__variants {
  display: grid;
  gap: 7px;
  min-height: 58px;
  margin: 0 0 12px;
}
.product-card__variants-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--col-slate-500);
  font-size: 11px;
  line-height: 1.2;
}
.product-card__variants-head a {
  color: var(--col-primary);
  font-weight: 700;
  text-decoration: none;
}
.product-card__variant-list {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}
.product-card__variant,
.product-card__variant-more {
  display: inline-flex;
  min-width: 0;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--col-slate-600);
  background: var(--col-slate-50);
  box-shadow: inset 0 0 0 1px var(--col-slate-200);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}
.product-card__variant:not(.is-swatch) {
  max-width: 92px;
  padding: 0 9px;
}
.product-card__variant span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card__variant.is-swatch {
  width: 32px;
  flex: 0 0 32px;
  padding: 5px;
}
.product-card__variant.is-swatch.has-label {
  width: auto;
  max-width: 124px;
  flex-basis: auto;
  gap: 6px;
  padding-right: 8px;
}
.product-card__variant.is-swatch i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--variant-swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.product-card__variant:hover,
.product-card__variant:focus-visible,
.product-card__variant-more:hover,
.product-card__variant-more:focus-visible {
  color: var(--col-primary);
  background: var(--col-primary-50);
  box-shadow: inset 0 0 0 1px var(--col-primary-200);
}
.product-card__variant.is-current {
  box-shadow: inset 0 0 0 2px var(--col-primary);
}
.product-card__variant.is-unavailable {
  opacity: 0.48;
}
.product-card__variant-more {
  flex: 0 0 auto;
  padding: 0 8px;
  color: var(--col-primary);
  background: transparent;
}
.product-card__heading {
  display: grid;
  gap: 3px;
}
.product-card__category {
  overflow: hidden;
  color: var(--col-slate-500);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card h3 {
  display: -webkit-box;
  min-height: 76px;
  margin: 0;
  overflow: hidden;
  color: var(--col-slate-950);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.product-card p {
  display: -webkit-box;
  min-height: 40px;
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--col-slate-500);
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card__footer {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.86);
}
.price-row {
  display: grid;
  gap: 6px;
  margin: 0;
}
.price-row__top {
  display: flex;
  min-height: 22px;
  align-items: center;
  gap: 8px;
}
.price-row strong {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: var(--col-slate-950);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.92;
  white-space: nowrap;
}
.price-row strong small {
  margin-bottom: 2px;
  color: var(--col-slate-700);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.price-row__prefix {
  margin-right: 1px;
  color: var(--col-slate-500);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.price-row strong.price-row__request {
  align-items: center;
  min-height: 28px;
  color: var(--col-slate-700);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  white-space: normal;
}
.price-row del {
  color: var(--col-slate-500);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}
.price-row__discount {
  display: inline-flex;
  height: 22px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--col-red-100);
  border-radius: 999px;
  color: var(--col-red);
  background: var(--col-red-50);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.btn--cart .cart-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: currentColor;
  fill: currentColor;
}
.product-card .btn--cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.product-card .btn--cart > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 15px;
}
.product-card .btn--cart:not(.btn--details) {
  min-height: 46px;
  gap: 11px;
  color: var(--col-primary);
  border-color: var(--col-primary-100);
  background: #fff;
  box-shadow: none;
  font-weight: 600;
}
.product-card .btn--cart:not(.btn--details):hover {
  color: #fff;
  border-color: var(--col-primary);
  background: var(--col-primary);
  box-shadow: none;
}
.product-card .btn--details {
  min-height: 46px;
  color: var(--col-primary);
  border-color: var(--col-primary-100);
  background: #fff;
  font-weight: 600;
}
.product-card .btn--details:hover {
  color: #fff;
  border-color: var(--col-primary);
  background: var(--col-primary);
}
@media (max-width: 900px) {
  .product-card__media {
    height: auto;
  }
  .product-track .product-card {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media (max-width: 640px) {
  .product-track {
    gap: 10px;
    margin: -16px -6px -42px;
    padding: 16px 6px 42px;
  }
  .product-track .product-card {
    flex-basis: calc((100% - 10px) / 2);
  }
  .product-card {
    border-radius: 7px;
    box-shadow: none;
  }
  .product-card:hover {
    box-shadow: none;
  }
  .product-badges {
    top: 7px;
    gap: 4px;
  }
  .product-badges--left {
    left: 7px;
  }
  .product-badges--right {
    right: 7px;
  }
  .product-badge {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  .product-badge img,
  .product-badge .icon {
    width: 17px;
    height: 17px;
  }
  .product-badge--tsr .icon {
    width: 20px;
    height: 20px;
  }
  .product-card__body {
    padding: 10px;
  }
  .product-card__category {
    display: none;
  }
  .product-card__meta {
    display: block;
    min-height: 0;
    margin-bottom: 8px;
  }
  .product-card__code {
    height: 21px;
    font-size: 11px;
  }
  .availability {
    margin-top: 6px;
    font-size: 11px;
    text-align: left;
  }
  .product-card__certificate {
    min-height: 34px;
    gap: 6px;
    margin-bottom: 9px;
    padding: 6px 7px;
    font-size: 11px;
    line-height: 1;
  }
  .product-card__certificate .icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
  .product-card__variants {
    min-height: 51px;
    margin-bottom: 9px;
  }
  .product-card__variant-list {
    min-height: 29px;
    gap: 4px;
  }
  .product-card__variant,
  .product-card__variant-more {
    min-height: 28px;
    border-radius: 5px;
    font-size: 12px;
  }
  .product-card__variant:not(.is-swatch) {
    max-width: 67px;
    padding-inline: 6px;
  }
  .product-card__variant.is-swatch {
    width: 28px;
    flex-basis: 28px;
    padding: 4px;
  }
  .product-card__variant.is-swatch.has-label {
    width: auto;
    max-width: 92px;
    flex-basis: auto;
    gap: 4px;
    padding-right: 6px;
  }
  .product-card__variant.is-swatch i {
    width: 20px;
    height: 20px;
  }
  .product-card h3 {
    min-height: 65px;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    -webkit-line-clamp: 4;
  }
  .product-card p {
    display: none;
  }
  .product-card__footer {
    gap: 10px;
    padding-top: 11px;
  }
  .price-row {
    display: grid;
    gap: 5px;
  }
  .price-row__top {
    min-height: 18px;
    gap: 5px;
  }
  .price-row strong {
    gap: 2px;
    font-size: 20px;
  }
  .price-row strong small {
    margin-bottom: 1px;
    font-size: 12px;
  }
  .price-row__prefix {
    font-size: 11px;
  }
  .price-row strong.price-row__request {
    min-height: 22px;
    font-size: 12px;
  }
  .price-row del {
    display: inline;
    margin: 0;
    font-size: 12px;
  }
  .price-row__discount {
    height: 18px;
    padding: 0 5px;
    font-size: 12px;
  }
  .product-card .btn--cart:not(.btn--details),
  .product-card .btn--details {
    min-height: 39px;
    padding-inline: 8px;
    font-size: 12px;
  }
  .btn--cart .cart-icon {
    width: 16px;
    height: 16px;
  }
}
.quick-cats {
  position: relative;
  background: #fff;
}
.quick-cats::before {
  content: "";
  position: absolute;
  top: 36px;
  left: max(24px, calc((100% - var(--container-max)) / 2));
  width: 180px;
  height: 44px;
  border-radius: 8px;
  pointer-events: none;
}
.category-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.category-card {
  position: relative;
  display: flex;
  min-height: 300px;
  grid-column: span 4;
  align-items: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background-color: var(--col-primary);
  background-position: center;
  background-size: cover;
  box-shadow: none;
  isolation: isolate;
}
.category-card:nth-child(1),
.category-card:nth-child(6) {
  grid-column: span 5;
}
.category-card:nth-child(2),
.category-card:nth-child(5) {
  grid-column: span 3;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 48, 87, 0) 12%, rgba(20, 48, 87, 0.62) 100%), linear-gradient(90deg, rgba(21, 67, 123, 0.26), transparent 62%);
  opacity: 1;
  transition: opacity 0.28s ease, background 0.28s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 22%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 12px);
  opacity: 0.62;
  pointer-events: none;
}
.category-card:hover {
  color: #fff;
  transform: none;
  box-shadow: none;
}
.category-card:hover::before {
  opacity: 0.68;
}
.category-card__content {
  max-width: 330px;
  text-shadow: 0 2px 12px rgba(3, 7, 18, 0.3);
}
.category-card strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}
.category-card:hover strong {
  color: #fff;
}
.category-card small {
  max-width: 280px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}
.category-card:hover small {
  color: rgba(255, 255, 255, 0.86);
}
@media (max-width: 1100px) {
  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(5),
  .category-card:nth-child(6) {
    grid-column: span 6;
  }
}
@media (max-width: 680px) {
  .entry-nav {
    padding-block: 8px;
    background: #fff;
  }
  .entry-nav__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    align-items: center;
    justify-content: flex-start;
    margin-inline: auto;
    padding: 0 12px 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .entry-nav__inner::-webkit-scrollbar {
    display: none;
  }
  .entry-nav__group {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 7px;
    width: auto;
    overflow: initial;
  }
  .entry-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid var(--col-slate-200);
    border-radius: 999px;
    color: var(--col-slate-700);
    background: var(--col-slate-50);
    font-size: 12px;
    font-weight: 800;
    line-height: 32px;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .entry-nav a::after {
    content: none;
  }
  .entry-nav a:hover,
  .entry-nav a.is-active {
    color: var(--col-primary);
    border-color: var(--col-primary-200);
    background: var(--col-primary-50);
  }
  .category-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -12px;
    padding: 2px 12px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(5),
  .category-card:nth-child(6) {
    flex: 0 0 min(82vw, 318px);
    min-height: 410px;
    grid-column: auto;
    scroll-snap-align: start;
  }
  .category-card strong {
    font-size: 21px;
  }
}
.proof-section {
  color: #fff;
  background: linear-gradient(145deg, rgba(20, 48, 87, 0.98), rgba(21, 67, 123, 0.94) 54%, rgba(19, 113, 226, 0.88)), var(--col-primary);
}
.proof-board {
  color: inherit;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.proof-board__intro {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.proof-board__intro .eyebrow {
  color: var(--col-primary-200);
}
.proof-board__intro p,
.proof-card p {
  color: rgba(255, 255, 255, 0.76);
}
.proof-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.proof-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.17);
  transform: none;
}
.proof-card--large,
.proof-card--wide {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.proof-card--large p,
.proof-card--wide p {
  color: rgba(255, 255, 255, 0.78);
}
.proof-card--large .proof-icon,
.proof-card--wide .proof-icon {
  color: #fff;
}
.proof-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}
.proof-icon::before,
.proof-icon::after {
  content: none !important;
}
.proof-icon img,
.proof-icon .icon {
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  fill: currentColor;
}
.proof-card--large .proof-icon img,
.proof-card--large .proof-icon .icon {
  width: 48px;
  height: 48px;
}
.delivery-section {
  position: relative;
  padding-block: var(--section-y);
  background: #fff;
}
.delivery-section::before {
  content: "";
  position: absolute;
  top: 34px;
  left: max(24px, calc((100% - var(--container-max)) / 2));
  width: 156px;
  height: 46px;
  pointer-events: none;
}
.delivery-card,
.solution,
.solution--home,
.solution--beauty {
  background-image: none;
}
.solutions {
  background: #fff;
}
.solution {
  color: #fff;
  background-color: var(--col-primary);
  border: 1px solid var(--col-primary-200);
  box-shadow: none;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.solution--home {
  background-color: var(--col-primary-800);
}
.solution--beauty {
  background-color: var(--col-primary-950);
}
.solution small {
  color: rgba(255, 255, 255, 0.82);
}
.solution span {
  margin-bottom: auto;
}
.solution strong {
  margin-top: auto;
}
.delivery-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: 30px;
  align-items: stretch;
  overflow: hidden;
  padding: 34px;
  color: var(--col-primary-950);
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 249, 255, 0.94), rgba(255, 255, 255, 0.96) 54%), #fff;
  box-shadow: none;
}
.delivery-card::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 111px;
  width: min(92%, 1280px);
  height: calc(100% + 330px);
  /* путь относительно самого CSS (../svg/): корректен и в превью, и в движке */
  background: url("../svg/map.svg") center right / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  transform: translateY(-50%);
}
.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--col-primary-500), var(--col-primary));
}
.delivery-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px 8px 0;
}
.delivery-card__content h2 {
  max-width: 650px;
  margin-top: 8px;
  color: var(--col-slate-950);
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.12;
}
.delivery-card .eyebrow,
.delivery-card__content p,
.delivery-card__steps p {
  color: var(--col-slate-600);
}
.delivery-card__content p {
  max-width: 650px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.58;
}
.delivery-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.delivery-card__actions .btn {
  min-height: 46px;
  border-radius: 8px;
}
.delivery-card__actions .btn--ghost {
  color: var(--col-primary);
  border-color: var(--col-primary-200);
  background: #fff;
}
.delivery-card__actions .btn--ghost:hover {
  color: #fff;
  border-color: var(--col-primary);
  background: var(--col-primary);
}
.delivery-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.delivery-card__meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--col-primary-100);
  border-radius: 999px;
  color: var(--col-primary);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.delivery-card__steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.delivery-card__steps div {
  position: relative;
  display: flex;
  min-height: 214px;
  flex-direction: column;
  padding: 20px 18px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.delivery-card__steps div::after {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--col-primary-100);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.delivery-card__steps div:nth-child(1)::after {
  content: "01";
}
.delivery-card__steps div:nth-child(2)::after {
  content: "02";
}
.delivery-card__steps div:nth-child(3)::after {
  content: "03";
}
.delivery-card__steps div:hover {
  border-color: var(--col-primary-200);
  background: #fff;
  box-shadow: none;
  transform: none;
}
.delivery-card__steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--col-primary-700);
  background: var(--col-primary-50);
}
.delivery-card__steps img,
.delivery-card__steps .icon {
  display: block;
  width: 25px;
  height: 25px;
  color: var(--col-primary-700);
  fill: currentColor;
}
.delivery-card__steps strong {
  margin-top: 42px;
  color: var(--col-primary-950);
  font-size: 17px;
  line-height: 1.2;
}
.delivery-card__steps p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.news-card__media {
  position: relative;
  overflow: hidden;
  height: auto;
  aspect-ratio: 16 / 9;
}
.news--company,
.news--industry {
  position: relative;
  background: transparent;
}
.news--company::before,
.news--industry::before {
  content: "";
  position: absolute;
  top: 38px;
  right: max(24px, calc((100% - var(--container-max)) / 2));
  width: 154px;
  height: 38px;
  border-radius: 8px;
  pointer-events: none;
}
.news-card {
  border-color: var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.news-card:hover {
  border-color: var(--col-primary-100);
  background: linear-gradient(180deg, #fff, var(--col-slate-50));
  box-shadow: none;
  transform: none;
}
.news-card__media img,
.news-card__placeholder,
.news-card__media .image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.news-card__media .image-placeholder {
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(238, 249, 255, 0.86), rgba(241, 245, 249, 0.98)), var(--col-slate-100);
}
.news-card__media .image-placeholder::before {
  width: 42px;
  height: 32px;
  opacity: 0.72;
}
.news-card__media .image-placeholder::after {
  opacity: 0.72;
}
.news-card--compact .news-card__media {
  height: auto;
  aspect-ratio: 16 / 9;
}
.news-card__body {
  display: flex;
  min-height: 238px;
  flex-direction: column;
}
.news time {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--col-primary);
  background: var(--col-primary-50);
  font-size: 12px;
}
.news h3 {
  margin: 12px 0 9px;
  color: var(--col-slate-950);
}
.news h3 a {
  color: inherit;
}
.news-card__body p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--col-slate-600);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-card__more {
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--col-primary);
}
.news-card__more:hover {
  color: var(--col-primary-700);
}
/* Раздел новостей: список + детальная */
.news--list {
  padding-top: 18px;
}
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
  border-bottom: 1px solid var(--line);
}
.news-tab {
  padding: 10px 4px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.news-tab + .news-tab {
  margin-left: 18px;
}
.news-tab:hover {
  color: var(--text);
}
.news-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.news-item__cover {
  margin: 4px 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
}
.news-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__back {
  display: inline-block;
  margin-top: 24px;
  color: var(--link);
  font-weight: 600;
}
.related-news {
  padding-top: var(--section-y-sm);
}
.company-subscribe {
  background: transparent;
}
.company-subscribe__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}
.company-mini,
.subscribe-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.company-mini {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: linear-gradient(135deg, rgba(238, 249, 255, 0.92), rgba(255, 255, 255, 0.96) 58%), #fff;
}
.company-mini::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--col-primary-500), var(--col-primary));
}
.company-mini::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -96px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(21, 67, 123, 0.05);
  border-radius: 50%;
}
.company-mini__head,
.company-mini h2,
.company-mini p,
.company-mini__facts,
.company-mini__links {
  position: relative;
  z-index: 1;
}
.company-mini__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.company-mini__mark {
  display: grid;
  width: 70px;
  height: 52px;
  flex: 0 0 70px;
  place-items: center;
  border: 1px solid var(--col-primary-100);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.company-mini__mark img {
  display: block;
  width: 54px;
  height: auto;
}
.company-mini h2,
.subscribe-box h2 {
  margin-top: 18px;
  color: var(--col-slate-950);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
}
.company-mini p,
.subscribe-box p,
.subscribe-box small {
  color: var(--col-slate-600);
}
.company-mini p {
  max-width: 740px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
}
.company-mini__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}
.company-mini__facts span {
  display: grid;
  min-height: 86px;
  align-content: center;
  padding: 14px;
  border: 1px solid var(--col-primary-100);
  border-radius: 8px;
  color: var(--col-slate-600);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.company-mini__facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--col-primary);
  font-size: 25px;
  line-height: 1;
}
.company-mini__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.company-mini__links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  color: var(--col-primary);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.company-mini__links a:hover {
  color: #fff;
  border-color: var(--col-primary);
  background: var(--col-primary);
  transform: none;
}
.subscribe-box {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, rgba(20, 48, 87, 0.98), rgba(21, 67, 123, 0.94)), var(--col-primary);
}
.subscribe-box::before {
  content: "";
  position: absolute;
  top: -74px;
  right: -58px;
  width: 190px;
  height: 190px;
  border: 38px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.subscribe-box > * {
  position: relative;
  z-index: 1;
}
.subscribe-box .eyebrow {
  color: var(--col-primary-200);
}
.subscribe-box h2 {
  max-width: 520px;
  color: #fff;
}
.subscribe-box p {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.56;
}
.subscribe-box__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 22px;
}
.subscribe-box input {
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.subscribe-box input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}
.subscribe-box input:focus {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(88, 196, 255, 0.16);
}
.subscribe-box__form .btn {
  min-height: 48px;
  border-color: #fff;
  color: var(--col-primary);
  background: #fff;
}
.subscribe-box__form .btn:hover {
  color: #fff;
  border-color: var(--col-primary-300);
  background: transparent;
}
.subscribe-box__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.subscribe-box__tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}
.subscribe-box small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .delivery-section {
    padding-block: var(--section-y-sm);
  }
  .delivery-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .delivery-card__steps {
    grid-template-columns: 1fr;
  }
  .delivery-card__steps div {
    min-height: 0;
  }
  .delivery-card__steps strong {
    margin-top: 24px;
  }
  .company-subscribe__grid {
    grid-template-columns: 1fr;
  }
  .company-mini,
  .subscribe-box {
    min-height: 0;
    padding: 22px;
  }
  .company-mini h2,
  .subscribe-box h2 {
    font-size: 28px;
  }
  .company-mini__facts {
    grid-template-columns: 1fr;
  }
  .subscribe-box__form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .proof-section {
    padding-block: 30px;
  }
  .proof-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .proof-board__intro {
    padding: 16px;
  }
  .proof-board__intro h2 {
    margin: 7px 0 0;
    font-size: 21px;
    line-height: 1.12;
  }
  .proof-board__intro p {
    display: none;
  }
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .proof-card,
  .proof-card--large {
    min-height: 94px;
    padding: 11px;
  }
  .proof-card--large {
    grid-row: auto;
    justify-content: flex-start;
  }
  .proof-card--wide {
    min-height: 92px;
    grid-column: 1 / -1;
    padding: 12px;
  }
  .proof-icon,
  .proof-card--large .proof-icon,
  .proof-card--wide .proof-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  .proof-icon img,
  .proof-icon .icon,
  .proof-card--large .proof-icon img,
  .proof-card--large .proof-icon .icon {
    width: 19px;
    height: 19px;
  }
  .proof-card strong,
  .proof-card--large strong {
    font-size: 19px;
    line-height: 1.05;
  }
  .proof-card p,
  .proof-card--large p,
  .proof-card--wide p {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .delivery-card {
    padding: 18px;
  }
  .delivery-card__content h2 {
    font-size: 22px;
    line-height: 1.14;
  }
  .delivery-card__content p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }
  .delivery-card__actions {
    margin-top: 16px;
  }
  .delivery-card__meta {
    margin-top: 16px;
  }
  .delivery-card__steps {
    gap: 9px;
  }
  .delivery-card__steps div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 10px;
    padding: 13px;
  }
  .delivery-card__steps div::after {
    top: 12px;
    right: 12px;
    font-size: 25px;
  }
  .delivery-card__steps span {
    width: 38px;
    height: 38px;
    grid-row: span 2;
  }
  .delivery-card__steps img,
  .delivery-card__steps .icon {
    width: 21px;
    height: 21px;
  }
  .delivery-card__steps strong {
    margin-top: 0;
    padding-right: 40px;
    font-size: 14px;
  }
  .delivery-card__steps p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
  }
  .news.news--company,
  .news.news--industry {
    padding-block: 32px;
  }
  .news--company .section-head,
  .news--industry .section-head {
    align-items: flex-end;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
  }
  .news--company .section-head > div,
  .news--industry .section-head > div {
    min-width: 0;
  }
  .news--company .section-head h2,
  .news--industry .section-head h2 {
    font-size: 22px;
  }
  .news--company .section-head > a,
  .news--industry .section-head > a {
    max-width: 132px;
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1.25;
    text-align: right;
  }
  .news-grid,
  .news-grid--industry {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -12px;
    padding: 2px 12px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .news-grid::-webkit-scrollbar,
  .news-grid--industry::-webkit-scrollbar {
    display: none;
  }
  .news--company .news-card,
  .news--industry .news-card,
  .news--industry .news-card--compact {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
  }
  .news--company .news-card__media,
  .news--industry .news-card__media,
  .news--industry .news-card--compact .news-card__media {
    width: 104px;
    height: 100%;
    min-height: 174px;
    aspect-ratio: auto;
  }
  .news--company .news-card__body,
  .news--industry .news-card__body {
    min-height: 174px;
    gap: 5px;
    padding: 12px;
  }
  .news--company time,
  .news--industry time {
    min-height: 22px;
    padding-inline: 7px;
    font-size: 11px;
  }
  .news--company .news-card h3,
  .news--industry .news-card h3,
  .news--industry .news-card--compact h3 {
    display: -webkit-box;
    margin: 4px 0 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .news--company .news-card__body p,
  .news--industry .news-card__body p {
    display: none;
  }
  .news--company .news-card__more,
  .news--industry .news-card__more {
    margin-top: auto;
    padding-top: 4px;
    font-size: 13px;
  }
  .news--list .news-grid,
  .news--list .news-grid--industry {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .news--list .news-card,
  .news--list .news-card--compact {
    min-width: 0;
    flex-basis: auto;
  }
}
/* ============================================================
   @cms Внутренние страницы каталога: хлебные крошки, листинг рубрики,
   фильтры, сортировка, пагинация, SEO-текст, связанные статьи, фичи-строка.
   Переиспользует .product-grid / .product-card из _current.less.
   ============================================================ */
/* ---------- Хлебные крошки ---------- */
.breadcrumbs {
  padding: 14px 0 0;
  font-size: 13px;
}
.breadcrumbs > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.breadcrumbs > .container:not(.breadcrumbs__inner) > * + *::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-top: 1px solid var(--col-slate-300);
  border-right: 1px solid var(--col-slate-300);
  transform: rotate(45deg);
}
.breadcrumbs__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--muted);
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.breadcrumbs__sep {
  display: inline-flex;
  color: var(--col-slate-300);
}
.breadcrumbs__sep .icon {
  width: 12px;
  height: 12px;
}
.breadcrumbs__current {
  color: var(--text);
}
/* ---------- Каркас страницы категории ---------- */
.catalog-page {
  padding: 20px 0 40px;
}
.catalog-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.catalog-page__intro-copy {
  min-width: 0;
}
.catalog-page__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-page__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.catalog-page__head h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}
.catalog-page__intro h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  text-wrap: balance;
}
.catalog-page__count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}
.catalog-page__intro .catalog-page__count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 96px;
  padding-bottom: 2px;
  color: var(--muted);
  line-height: 1;
}
.catalog-page__intro .catalog-page__count strong {
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
}
.catalog-page__intro .catalog-page__count span {
  margin-top: 6px;
  font-size: 13px;
}
.catalog-page__intro .catalog-page__count small {
  margin-top: 7px;
  font-size: 12px;
  color: var(--muted);
}
.catalog-page__lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.catalog-page__lead p {
  margin: 0;
  color: inherit;
  font: inherit;
}
/* ---------- Дочерние категории ---------- */
.catalog-subcategories {
  margin-bottom: 32px;
}
.catalog-subcategories__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.catalog-subcategories__head h2,
.catalog-page__products-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
  text-wrap: balance;
}
.catalog-subcategories__head > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
}
.catalog-subcategories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.catalog-subcategory {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  overflow: hidden;
  padding: 0 16px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}
.catalog-subcategory__media {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-height: 0;
  overflow: hidden;
  padding: 7px 9px 7px 5px;
  border-radius: 0 14px 14px 0 / 0 40px 40px 0;
  background: var(--col-slate-100);
}
.catalog-subcategory__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.16s ease;
}
.catalog-subcategory:hover {
  border-color: var(--col-primary-200);
  color: var(--primary);
  background: var(--col-primary-50);
}
.catalog-subcategory:hover .catalog-subcategory__media img {
  transform: scale(1.04);
}
.catalog-subcategory__title {
  min-width: 0;
}
.catalog-subcategory strong,
.catalog-subcategory small {
  display: block;
}
.catalog-subcategory strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: pretty;
}
.catalog-subcategory small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}
.catalog-subcategory .icon {
  width: 16px;
  height: 16px;
  color: var(--col-slate-400);
  transition: color 0.16s ease, transform 0.16s ease;
}
.catalog-subcategory:hover .icon {
  color: var(--primary);
  transform: translateX(2px);
}
.catalog-page__products-head {
  margin: 0 0 16px;
}
/* ---------- Архивы новинок и акций ---------- */
.product-archive__intro {
  margin-bottom: 24px;
}
.stock-showcase {
  margin-bottom: 36px;
}
.stock-showcase__hero,
.stock-showcase__hero img {
  display: block;
  width: 100%;
}
.stock-showcase__hero {
  overflow: hidden;
  border-radius: 8px;
  background: var(--col-slate-100);
}
.stock-showcase__hero img {
  height: auto;
}
.stock-showcase__promos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.stock-showcase__promos a,
.stock-showcase__promos picture,
.stock-showcase__promos img {
  display: block;
  width: 100%;
}
.stock-showcase__promos a {
  overflow: hidden;
  border-radius: 8px;
  background: var(--col-slate-100);
}
.stock-showcase__promos img {
  height: auto;
  transition: transform 0.22s ease;
}
.stock-showcase__promos a:hover img {
  transform: scale(1.015);
}
.stock-showcase__note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--col-primary-100);
  border-radius: 8px;
  background: var(--col-primary-50);
}
.stock-showcase__note > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 22px;
  font-weight: 800;
}
.stock-showcase__note p {
  margin: 0;
  color: var(--col-slate-700);
  font-size: 14px;
  line-height: 1.55;
}
.product-archive__layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.product-archive__main {
  min-width: 0;
}
.product-archive__results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-archive__results-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}
.product-archive__results-head .catalog-page__count {
  display: flex;
  flex-shrink: 0;
  align-items: baseline;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
}
.product-archive__results-head .catalog-page__count strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}
.stock-categories {
  position: static;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.stock-categories__toggle,
.stock-categories__overlay,
.stock-categories__head button {
  display: none;
}
.stock-categories__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 4px 10px;
  border-bottom: 1px solid var(--line);
}
.stock-categories__head strong {
  color: var(--text);
  font-size: 15px;
}
.stock-categories__head span {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: var(--col-primary-50);
  font-size: 12px;
  font-weight: 700;
}
.stock-categories__head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stock-categories__list {
  display: grid;
  gap: 4px;
}
.stock-category {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--col-slate-700);
  text-decoration: none;
  transition: color 0.16s ease, background-color 0.16s ease;
}
.stock-category:hover,
.stock-category.is-active {
  color: var(--primary);
  background: var(--col-primary-50);
}
.stock-category__image {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--col-slate-100);
  border-radius: 7px;
  background: #fff;
}
.stock-category__image img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.stock-category__image--all {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
  font-size: 16px;
  font-weight: 800;
}
.stock-category__image--all svg {
  width: 20px;
  height: 20px;
  color: #fff;
  fill: currentColor;
}
.stock-category > span:last-child {
  min-width: 0;
}
.stock-category strong,
.stock-category small {
  display: block;
}
.stock-category strong {
  font-size: 12.5px;
  line-height: 1.25;
}
.stock-category small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.product-archive__layout .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-archive--new .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
/* ---------- Поиск ---------- */
.search-page__lead {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.search-scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.search-scopes a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.search-scopes a:hover,
.search-scopes a[aria-current="page"] {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface-soft);
}
.search-page__results .site-search-summary {
  margin: 0 0 18px;
}
.search-page__results .site-search-results {
  border-top: 1px solid var(--line);
}
.search-state {
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--col-slate-800);
  background: var(--col-amber-100);
}
.search-state strong,
.search-state p {
  display: block;
  margin: 0;
}
.search-state p {
  margin-top: 4px;
}
.search-state--correction {
  margin-bottom: 16px;
  color: var(--col-primary-900);
  background: var(--col-primary-50);
}
/* Избранное: тулбар над сеткой */
.favorites-page__head {
  flex-wrap: wrap;
}
.catalog-page__actions,
.favorites-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}
.catalog-page__actions .btn,
.favorites-page__actions .btn {
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.catalog-page__actions .cart-icon,
.favorites-page__actions .cart-icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 560px) {
  .catalog-page__actions,
  .favorites-page__actions {
    width: 100%;
    margin-left: 0;
  }
  .catalog-page__actions .btn,
  .favorites-page__actions .btn {
    flex: 1;
    justify-content: center;
  }
}
.catalog-page__banner {
  display: block;
  height: 200px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--col-slate-100) center / cover no-repeat;
}
.catalog-page__layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 24px;
  align-items: start;
}
.catalog-page__main {
  min-width: 0;
}
/* @cms: на широком экране в листинге рубрики помещаются четыре карточки. */
.catalog-page__main .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* ---------- Панель фильтров ---------- */
.catalog-filters {
  position: static;
}
.catalog-filters__form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}
.catalog-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.catalog-filters__head strong {
  font-size: 15px;
  line-height: 18px;
}
.catalog-filters__reset {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
  cursor: pointer;
}
.catalog-filters__reset:hover {
  color: var(--accent);
}
.filter-group {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.filter-group__title {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.filter-group__title.js-filter-title {
  position: relative;
  display: block;
  width: 100%;
  min-height: 40px;
  margin: -8px 0;
  padding: 8px 28px 8px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}
.filter-group__title.js-filter-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  transition-property: transform, border-color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}
.filter-group__title.js-filter-title[aria-expanded="true"]::after {
  transform: translateY(-35%) rotate(225deg);
}
.filter-group__title.js-filter-title:hover::after,
.filter-group__title.js-filter-title:focus-visible::after {
  border-color: var(--primary);
}
.filter-group__title.js-filter-title:focus-visible {
  outline: 2px solid var(--col-primary-300);
  outline-offset: 2px;
  border-radius: 4px;
}
.filter-group__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.filter-group__list[hidden] {
  display: none;
}
.filter-range {
  display: grid;
  gap: 12px;
}
.filter-range__slider {
  position: relative;
  height: 22px;
  margin: 0 8px;
}
.filter-range__track {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--col-slate-200) 0%, var(--col-slate-200) var(--range-min, 0%), var(--primary) var(--range-min, 0%), var(--primary) var(--range-max, 100%), var(--col-slate-200) var(--range-max, 100%), var(--col-slate-200) 100%);
}
.filter-range__slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
}
.filter-range__slider input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--primary), 0 2px 6px rgba(15, 23, 42, 0.16);
  background: var(--primary);
  appearance: none;
  cursor: grab;
  pointer-events: auto;
}
.filter-range__slider input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--primary), 0 2px 6px rgba(15, 23, 42, 0.16);
  background: var(--primary);
  cursor: grab;
  pointer-events: auto;
}
.filter-range__slider input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px var(--primary), 0 0 0 4px var(--col-primary-100);
}
.filter-range__slider input[type="range"]:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 1px var(--primary), 0 0 0 4px var(--col-primary-100);
}
.filter-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-price input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  background: var(--surface);
}
.filter-price input:focus {
  outline: none;
  border-color: var(--col-primary-300);
}
.filter-price__dash {
  color: var(--muted);
}
/* Кастомный чекбокс */
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--col-slate-700);
}
.filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-check__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--col-slate-300);
  border-radius: 5px;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.filter-check input:checked + .filter-check__box {
  border-color: var(--primary);
  background: var(--primary);
}
.filter-check input:checked + .filter-check__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-check input:focus-visible + .filter-check__box {
  box-shadow: 0 0 0 3px var(--col-primary-100);
}
.filter-check__label {
  flex: 1;
}
.filter-check__count {
  color: var(--col-slate-400, #94a3b8);
  font-size: 12px;
}
.filter-check:hover .filter-check__label {
  color: var(--text);
}
.filter-check.is-checked .filter-check__label {
  color: var(--text);
  font-weight: 600;
}
.catalog-filters__apply {
  width: 100%;
  margin-top: 16px;
}
/* ---------- Тулбар (сортировка + кнопка фильтров) ---------- */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.catalog-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.catalog-sort select {
  height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  color: var(--text);
  font-size: 13.5px;
  appearance: none;
  cursor: pointer;
}
.catalog-toolbar__filters-btn {
  display: none;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 13.5px;
  cursor: pointer;
}
.catalog-toolbar__filters-btn .icon {
  width: 16px;
  height: 16px;
}
/* ---------- Пагинация ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination__page,
.pagination__arrow {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.pagination__page:hover,
.pagination__arrow:hover {
  border-color: var(--col-primary-300);
  color: var(--primary);
}
.pagination__page.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.pagination__arrow.is-disabled {
  opacity: 0.35;
  cursor: default;
}
.pagination__arrow .icon {
  width: 16px;
  height: 16px;
}
.pagination__gap {
  color: var(--muted);
  padding: 0 4px;
}
@media (max-width: 560px) {
  .pagination {
    gap: 4px;
  }
  .pagination__gap,
  .pagination__page--edge:not(.is-active) {
    display: none;
  }
}
.pagination > .page_pagination_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination .page_pagination_item {
  display: block;
}
.pagination .page_pagination_link,
.pagination .page_pagination_item.disabled > span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.pagination .page_pagination_link:hover {
  border-color: var(--col-primary-300);
  color: var(--primary);
}
.pagination .page_pagination_link.--active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.pagination .page_pagination_item.disabled > span {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}
/* ---------- SEO-текст (сворачиваемый) ---------- */
.seo-text {
  padding: 8px 0 40px;
}
.seo-text__box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px 28px;
}
.seo-text__content {
  position: relative;
  overflow: hidden;
  max-height: 220px;
  color: var(--col-slate-600);
  font-size: 14.5px;
  line-height: 1.7;
  transition: max-height 0.3s ease;
}
.seo-text__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--surface));
  pointer-events: none;
  transition: opacity 0.2s;
}
.seo-text__box.is-expanded .seo-text__content {
  max-height: none;
}
.seo-text__box.is-expanded .seo-text__content::after {
  opacity: 0;
}
.seo-text__content h2 {
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}
.seo-text__content h2:first-child {
  margin-top: 0;
}
.seo-text__content h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  color: var(--text);
}
.seo-text__content p {
  margin: 0 0 12px;
}
.seo-text__content li > p {
  margin: 0;
}
.seo-text__content ul,
.seo-text__content ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.seo-text__content li + li {
  margin-top: 7px;
}
.seo-text__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  border: none;
  background: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.seo-text__toggle .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.seo-text__box.is-expanded .seo-text__toggle .icon {
  transform: rotate(180deg);
}
/* ---------- Связанные статьи ---------- */
.related-articles {
  padding: 8px 0 40px;
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.related-article:hover {
  border-color: var(--col-primary-300);
  box-shadow: 0 8px 24px rgba(21, 67, 123, 0.08);
}
.related-article__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--primary);
}
.related-article__icon .icon {
  width: 20px;
  height: 20px;
}
.related-article > span:nth-child(2) {
  flex: 1;
}
.related-article__arrow {
  color: var(--col-slate-300);
}
.related-article__arrow .icon {
  width: 16px;
  height: 16px;
}
.related-article:hover .related-article__arrow {
  color: var(--primary);
}
/* ---------- Строка преимуществ ---------- */
.feature-strip {
  padding: 8px 0 48px;
}
.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--col-primary);
}
.feature-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--col-primary);
  color: #fff;
}
.feature-card__icon .icon {
  width: 30px;
  height: 30px;
}
.feature-card__body {
  min-width: 0;
}
.feature-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15.5px;
  color: var(--col-primary);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
/* ---------- Карточка как ссылка ---------- */
.product-card h3 a {
  color: inherit;
}
.product-card h3 a:hover {
  color: var(--primary);
}
/* @cms: ссылка-обёртка галереи должна заполнять медиа, иначе height:100% слайдов = 0 */
.product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}
/* ---------- Пустое состояние / заглушка ---------- */
.empty-state {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.empty-state__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
}
.empty-state__icon .icon {
  width: 34px;
  height: 34px;
}
.empty-state strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}
.empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
}
.stub-page {
  padding: 24px 0 44px;
}
/* ---------- Корень каталога (сетка групп) ---------- */
.catalog-root {
  padding: 18px 0 40px;
}
.catalog-root__title {
  margin: 6px 0 22px;
  font-size: 30px;
}
.catalog-root__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-root-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.catalog-root-card:hover {
  border-color: var(--col-primary-200);
  box-shadow: 0 10px 30px rgba(21, 67, 123, 0.07);
}
.catalog-root-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.catalog-root-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}
.catalog-root-card__icon .icon {
  width: 26px;
  height: 26px;
}
.catalog-root-card__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.catalog-root-card--tcr .catalog-root-card__icon {
  background: color-mix(in srgb, var(--col-teal-500, #14b8a6) 14%, #fff);
  color: #0d9488;
}
.catalog-root-card--sale .catalog-root-card__icon {
  background: var(--col-red-50);
  color: var(--col-red);
}
.catalog-root-card__title strong {
  display: block;
  font-size: 15.5px;
  line-height: 1.25;
}
.catalog-root-card__title small {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
}
.catalog-root-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.catalog-root-card__links a {
  display: block;
  padding: 5px 0;
  color: var(--col-slate-600);
  font-size: 13.5px;
}
.catalog-root-card__links a:hover {
  color: var(--primary);
}
.catalog-root-card__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
.catalog-root-card__all .icon {
  width: 13px;
  height: 13px;
}
/* ---------- Адаптив ---------- */
@media (max-width: 1100px) {
  .catalog-subcategories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-archive--new .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .catalog-page__main .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-articles__grid {
    grid-template-columns: 1fr;
  }
  .catalog-root__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1280px) and (min-width: 1101px) {
  .catalog-page__main .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-archive__layout .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .product-archive--new .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-root__grid {
    grid-template-columns: 1fr;
  }
  .stock-categories__toggle {
    display: inline-flex;
    width: fit-content;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--text);
    background: var(--surface);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .stock-categories__toggle svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
  }
  .stock-categories__toggle i {
    display: grid;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--primary);
    font-size: 11px;
    font-style: normal;
  }
  .stock-categories {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 3201;
    width: min(360px, 90vw);
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    background: var(--surface);
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.2);
    transform: translateX(-105%);
    transition: transform 180ms cubic-bezier(0.2, 0, 0, 1);
  }
  .stock-categories__head {
    position: sticky;
    z-index: 2;
    top: -16px;
    margin-bottom: 8px;
    padding: 16px 0 12px;
    background: var(--surface);
  }
  .stock-categories__head button {
    display: inline-grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
  }
  .stock-categories__head button svg {
    width: 18px;
    height: 18px;
  }
  .stock-categories__list {
    grid-template-columns: 1fr;
  }
  .stock-categories__overlay {
    position: fixed;
    z-index: 3200;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1);
  }
  html.stock-categories-open,
  html.stock-categories-open body {
    overflow: hidden;
  }
  html.stock-categories-open .stock-categories {
    transform: translateX(0);
  }
  html.stock-categories-open .stock-categories__overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  #stock-products,
  #sfr-products {
    scroll-margin-top: calc(var(--header-height, 76px) + 16px);
  }
}
@media (max-width: 900px) {
  .catalog-subcategories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-page__layout {
    grid-template-columns: 1fr;
  }
  .product-archive__layout {
    grid-template-columns: 1fr;
  }
  .stock-categories {
    position: static;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stock-categories__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-archive__layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-toolbar__filters-btn {
    display: inline-flex;
    flex-shrink: 0;
  }
  /* На узких экранах сортировка занимает свободное место, кнопка фильтров — рядом */
  .catalog-toolbar {
    gap: 8px;
  }
  .catalog-sort {
    flex: 1 1 auto;
    min-width: 0;
  }
  .catalog-sort > span {
    display: none;
  }
  .catalog-sort select {
    width: 100%;
    min-width: 0;
  }
  .feature-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* @cms: на мобиле фильтры — выезжающая панель (открытие data-open-filters в app.js) */
  .catalog-filters {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 130;
    width: min(340px, 88vw);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    overflow: auto;
    background: var(--surface);
    padding: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  }
  body.is-filters-open .catalog-filters {
    transform: translateX(0);
  }
  .catalog-filters__form {
    border: none;
    padding: 0;
  }
}
@media (max-width: 680px) {
  .stock-categories {
    position: fixed;
    padding: 16px;
    border: 0;
  }
  .stock-categories__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .stock-showcase__note {
    display: block;
    padding: 14px 16px;
  }
  .stock-showcase__note > span {
    width: 34px;
    height: 34px;
    margin-bottom: 9px;
    border-radius: 6px;
    font-size: 17px;
  }
  .stock-showcase__note p {
    font-size: 13px;
    line-height: 1.5;
  }
  .breadcrumbs {
    padding-top: 8px;
    font-size: 12px;
  }
  .breadcrumbs > .page_breadcrumbs_list {
    min-height: 32px;
    flex-wrap: nowrap;
  }
  .site-main .breadcrumbs .page_breadcrumbs_item {
    display: none;
  }
  .site-main .breadcrumbs .page_breadcrumbs_item:nth-last-child(2) {
    display: inline-flex;
    min-width: 0;
    max-width: 100%;
  }
  .site-main .breadcrumbs .page_breadcrumbs_item:nth-last-child(2)::after {
    display: none;
  }
  .site-main .breadcrumbs .page_breadcrumbs_link,
  .site-main .breadcrumbs .page_breadcrumbs_text {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .catalog-subcategories {
    margin-bottom: 24px;
  }
  .catalog-subcategories__head {
    align-items: flex-start;
  }
  .catalog-subcategories__head h2,
  .catalog-page__products-head h2 {
    font-size: 21px;
  }
  .catalog-subcategories__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .catalog-subcategory {
    grid-template-columns: 104px minmax(0, 1fr) 18px;
    min-height: 72px;
    padding-right: 14px;
  }
  .catalog-subcategory__media {
    height: 70px;
    border-radius: 0 12px 12px 0 / 0 35px 35px 0;
  }
  .catalog-page__intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 20px;
  }
  .catalog-page__intro h1 {
    font-size: 26px;
  }
  .catalog-page__intro .catalog-page__count {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
  }
  .catalog-page__intro .catalog-page__count strong {
    font-size: 22px;
  }
  .catalog-page__intro .catalog-page__count span {
    margin: 0;
  }
  .catalog-page__intro .catalog-page__count small {
    margin: 0 0 0 4px;
  }
  .pagination > .page_pagination_list {
    gap: 4px;
  }
  .pagination .page_pagination_link,
  .pagination .page_pagination_item.disabled > span {
    min-width: 34px;
    height: 36px;
    padding: 0 5px;
    font-size: 13px;
  }
  .catalog-page__head h1 {
    font-size: 23px;
  }
  .catalog-page__banner {
    height: 130px;
  }
  .catalog-page__main .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .feature-strip__grid {
    grid-template-columns: 1fr;
  }
  .seo-text__box {
    padding: 18px;
  }
}
/* ============================================================
   @cms Страница товара: галерея, панель покупки (цена, сертификат,
   расчёт доставки), табы, характеристики, похожие товары.
   ============================================================ */
.product {
  padding: 16px 0 40px;
}
.product img {
  outline: none;
  outline-offset: 0;
}
.product__title {
  margin: 6px 0 10px;
  font-size: 28px;
  line-height: 1.2;
}
.product__caption {
  display: inline-flex;
  max-width: min(100%, 760px);
  margin: 0 0 12px;
  padding: 7px 11px;
  border: 1px solid var(--col-primary-100);
  border-radius: 6px;
  color: var(--col-primary-950);
  background: var(--col-primary-50);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.product__meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
}
.product__meta-line b {
  color: var(--text);
}
.product__meta-avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--col-green-600);
}
.product__meta-avail .icon {
  width: 15px;
  height: 15px;
}
/* Медиа+табы в левой колонке, покупка и варианты — липкая правая колонка */
.product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  grid-template-areas: "media buy" "tabs  buy";
  column-gap: 32px;
  align-items: start;
}
.product-media {
  grid-area: media;
}
.product__grid > .product-purchase {
  grid-area: buy;
}
.product__grid > .product-tabs {
  grid-area: tabs;
}
/* ---------- Галерея ---------- */
.product-media {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.product-media__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: grab;
  touch-action: pan-y;
}
.product-media.is-dragging {
  user-select: none;
}
.product-media.is-dragging .product-media__stage {
  cursor: grabbing;
}
.product-media.is-dragging a,
.product-media.is-dragging button,
.product-media.is-dragging .product-media__slide {
  pointer-events: none;
}
/* Слайды (фото и видео) — стопкой, активный проявляется */
.product-media__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.product-media__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.product-media__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.product-media__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Вертикальная лента превью слева. Высоту ограничиваем высотой сцены (её
   задаёт JS), лишние миниатюры прокручиваются; края тают (подсказка о скролле). */
.product-media__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  /* JS уточняет по высоте сцены */
  overflow-y: auto;
  scrollbar-width: none;
  --fade-top: 0px;
  --fade-bottom: 0px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 var(--fade-top), #000 calc(100% - var(--fade-bottom)), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 var(--fade-top), #000 calc(100% - var(--fade-bottom)), transparent 100%);
}
.product-media__thumbs::-webkit-scrollbar {
  display: none;
}
.product-media__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  padding: 6px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s;
}
.product-media__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-media__thumb:hover {
  border-color: var(--col-primary-300);
}
.product-media__thumb.is-active {
  border-color: var(--primary);
}
/* Превью видео: затемнение + иконка плей */
.product-media__thumb--video img {
  filter: brightness(0.8);
}
.product-media__thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
/* Такой же синий бейдж Rutube, только меньше */
.product-media__thumb-play::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: #0a6cff;
}
.product-media__thumb-play .icon {
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 1px;
}
/* Видео */
.product-video {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--col-slate-800) center / cover no-repeat;
  color: #fff;
}
.product-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.55));
}
/* Кнопка play в стиле плеера Rutube: синий прямоугольник со скруглёнными
   углами и белый треугольник по центру. */
.product-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 78px;
  height: 54px;
  border-radius: 16px;
  background: #0a6cff;
  /* синий Rutube */
  color: #fff;
  transition: background 0.18s ease, transform 0.18s ease;
}
.product-video:hover .product-video__play {
  background: #0a5ae0;
  transform: translate(-50%, -50%) scale(1.04);
}
.product-video__play .icon {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.product-video__title {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
}
/* Видео как слайд галереи — заполняет сцену */
.product-media__video .product-video {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
}
.product-video--tab {
  max-width: 760px;
  aspect-ratio: 16 / 9;
}
.product-video-tab {
  display: grid;
  gap: 20px;
}
/* Тяжёлый iframe YouTube/Rutube создаётся только после явного клика. */
[data-product-video] {
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
[data-product-video].is-playing {
  cursor: default;
  background: #000;
}
.lite-rutube__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Стрелки листания на сцене — проявляются при наведении */
.product-media__img {
  cursor: zoom-in;
}
.product-media__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.product-media__stage:hover .product-media__nav {
  opacity: 1;
}
.product-media__nav:hover {
  background: #fff;
}
.product-media__nav--prev {
  left: 12px;
}
.product-media__nav--next {
  right: 12px;
}
.product-media__nav .icon {
  width: 16px;
  height: 16px;
}
/* Лайтбокс галереи */
.mm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mm-lightbox.has-thumbs {
  grid-template-rows: 64px minmax(0, 1fr) 88px;
}
.mm-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.mm-lightbox__toolbar {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mm-lightbox__zoom {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mm-lightbox__tool {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.mm-lightbox__tool:hover {
  border-color: var(--col-primary-300);
  background: var(--surface);
  color: var(--primary);
}
.mm-lightbox__tool:disabled {
  opacity: 0.4;
  cursor: default;
}
.mm-lightbox__tool:focus-visible,
.mm-lightbox__thumb:focus-visible,
.mm-lightbox__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.mm-lightbox__zoom-value {
  min-width: 64px;
  font-size: 13px;
}
.mm-lightbox__tool .icon {
  width: 18px;
  height: 18px;
}
.mm-lightbox__close {
  font-size: 27px;
}
.mm-lightbox__viewport {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}
.mm-lightbox__img {
  max-width: calc(100vw - 144px);
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
  transform-origin: center;
  transition: transform 0.18s ease;
  will-change: transform;
}
.mm-lightbox__viewport.is-zoomed .mm-lightbox__img {
  cursor: grab;
}
.mm-lightbox__viewport.is-zoomed .mm-lightbox__img.is-dragging {
  cursor: grabbing;
  transition: none;
}
.mm-lightbox__btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mm-lightbox__btn:hover {
  background: var(--surface);
  border-color: var(--col-primary-300);
}
.mm-lightbox__btn .icon {
  width: 20px;
  height: 20px;
}
.mm-lightbox__nav--prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.mm-lightbox__nav--next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.mm-lightbox__counter {
  margin-right: auto;
  color: var(--muted);
  font-size: 14px;
}
.mm-lightbox__thumbs {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  scrollbar-width: thin;
}
.mm-lightbox__thumbs[hidden] {
  display: none;
}
.mm-lightbox__thumb {
  width: 62px;
  min-width: 62px;
  height: 62px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}
.mm-lightbox__thumb:hover {
  border-color: var(--col-primary-300);
}
.mm-lightbox__thumb.is-active {
  border-color: var(--primary);
}
.mm-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 560px) {
  .mm-lightbox {
    grid-template-rows: 58px minmax(0, 1fr);
  }
  .mm-lightbox.has-thumbs {
    grid-template-rows: 58px minmax(0, 1fr) 76px;
  }
  .mm-lightbox__toolbar {
    gap: 6px;
    padding: 8px;
  }
  .mm-lightbox__tool {
    min-width: 40px;
    padding: 0 9px;
  }
  .mm-lightbox__download {
    width: 40px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }
  .mm-lightbox__download::before {
    content: '↓';
    color: var(--primary);
    font-size: 22px;
  }
  .mm-lightbox__counter {
    display: none;
  }
  .mm-lightbox__img {
    max-width: calc(100vw - 24px);
  }
  .mm-lightbox__nav {
    width: 36px;
    height: 36px;
  }
  .mm-lightbox__nav--prev {
    left: 6px;
  }
  .mm-lightbox__nav--next {
    right: 6px;
  }
  .mm-lightbox__thumbs {
    padding: 8px;
  }
  .mm-lightbox__thumb {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
}
/* ---------- Правая колонка и панель покупки ---------- */
.product-purchase {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  display: grid;
  gap: 16px;
  min-width: 0;
}
.product-purchase > .product-buy,
.product-purchase > .product-variants,
.product-purchase > .product-variant-matrix {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.product-buy {
  border: 0;
  border-radius: var(--radius);
  background: var(--col-slate-50);
  padding: 22px;
}
.product-purchase .product-variants,
.product-purchase .product-variant-matrix {
  max-width: none;
  margin: 0;
  border-radius: var(--radius);
}
.product-purchase .product-variants-list {
  display: grid;
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
}
.product-purchase .product-variant {
  width: 100%;
  min-width: 0;
  flex: none;
}
.product-purchase .product-variant-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-purchase .product-variant-options.is-color-axis {
  display: flex;
  flex-wrap: wrap;
}
.product-buy__years {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;
}
.product-buy__years img {
  width: 34px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}
.product-buy__years strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}
.product-buy__rec {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-buy__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
}
.product-buy__price-row del {
  color: var(--muted);
  font-size: 16px;
}
.product-buy__save {
  font-size: 12px;
  font-weight: 700;
  color: var(--col-red);
  background: var(--col-red-50);
  padding: 2px 8px;
  border-radius: 20px;
}
.product-buy__current {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-top: 2px;
}
.product-buy__current small {
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
}
.product-buy__avail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--col-green-50);
}
.product-buy__avail .icon {
  width: 20px;
  height: 20px;
  color: var(--col-green-600);
  flex-shrink: 0;
}
.product-buy__avail b {
  display: block;
  font-size: 13.5px;
  color: var(--col-green-800);
}
.product-buy__avail small {
  display: block;
  font-size: 12px;
  color: var(--col-green-700);
}
.product-mattress-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 24px;
  padding: 17px 18px;
  border-radius: 8px;
  background: var(--col-orange-50);
  color: var(--col-orange-900);
}
.product-mattress-note .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--col-orange-500);
}
.product-mattress-note b,
.product-mattress-note small {
  display: block;
}
.product-mattress-note b {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.product-mattress-note small {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--col-orange-900);
}
/* Сертификат ТСР */
.product-cert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 11px 12px;
  border: 1px solid rgba(14, 189, 232, 0.28);
  border-radius: 7px;
  color: #087f9d;
  background: rgba(14, 189, 232, 0.09);
}
.product-cert__icon {
  flex-shrink: 0;
  color: #0ebde8;
}
.product-cert__icon .icon {
  width: 22px;
  height: 22px;
}
.product-cert b {
  display: block;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.22;
}
.product-cert small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #087f9d;
  line-height: 1.28;
}
/* Действия */
.product-buy__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty button {
  width: 40px;
  height: 48px;
  border: none;
  background: var(--col-slate-50);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.qty button:hover {
  background: var(--col-slate-100);
}
.qty input {
  width: 46px;
  height: 48px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-buy__cart {
  flex: 1;
  height: 48px;
  padding-inline: 12px;
  font-size: 15px;
  white-space: nowrap;
}
.product-buy__cart .icon {
  width: 20px;
  height: 20px;
}
.product-buy__fav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.product-buy__fav:hover {
  color: var(--primary);
  border-color: var(--col-primary-300);
}
.product-buy__fav .icon {
  width: 20px;
  height: 20px;
}
/* Расчёт доставки */
.product-delivery {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
}
.product-delivery__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.product-delivery__icon {
  color: var(--primary);
}
.product-delivery__icon .icon {
  width: 20px;
  height: 20px;
}
.product-delivery__field {
  display: block;
}
.product-delivery__field span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 5px;
}
.product-delivery__field select {
  width: 100%;
  height: 40px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  font-size: 13.5px;
  appearance: none;
  cursor: pointer;
}
.product-delivery__result {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 12px;
}
.product-delivery__cost {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.product-delivery__days {
  font-size: 13px;
  color: var(--muted);
}
.product-delivery__note {
  flex-basis: 100%;
  font-size: 12px;
  color: var(--col-slate-600);
}
.product-delivery__hint {
  margin: 10px 0 0;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}
/* Доверие */
.product-buy__trust {
  display: grid;
  gap: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.product-bundles--offers + .product-buy__trust {
  margin-top: 16px;
}
.product-buy__trust-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 0;
}
.product-buy__trust-item + .product-buy__trust-item {
  border-top: 1px solid var(--col-slate-100);
}
.product-buy__trust-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--col-primary-50);
  color: var(--primary);
}
.product-buy__trust-icon .icon {
  width: 24px;
  height: 24px;
}
.product-buy__trust-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.product-buy__trust-copy b {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.product-buy__trust-copy small {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
}
/* ---------- Табы ---------- */
.product-tabs {
  margin-top: 44px;
}
.product-tabs__nav {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 18px;
  padding: 5px;
  border-radius: 12px;
  background: var(--col-slate-100);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs__nav::-webkit-scrollbar {
  display: none;
}
.product-tabs__tab {
  padding: 9px 20px;
  border: none;
  border-radius: 8px;
  background: none;
  color: var(--col-slate-600);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.product-tabs__tab:hover {
  color: var(--text);
}
.product-tabs__tab.is-active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}
.product-tabs__panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 30px;
}
.product-longtext {
  color: var(--col-slate-700);
  font-size: 14.5px;
  line-height: 1.7;
}
.product-longtext h3 {
  margin: 20px 0 8px;
  font-size: 17px;
  color: var(--text);
}
.product-longtext p {
  margin: 0 0 12px;
}
.product-longtext ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.product-longtext li {
  margin-bottom: 6px;
}
/* Сохранённое описание не должно наследовать крупные заголовки страницы. */
.product-description h1,
.product-description h2,
.product-description .h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.product-description h3,
.product-description .h3 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.product-description h4,
.product-description .h4 {
  margin: 18px 0 7px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.product-description h5,
.product-description h6 {
  margin: 16px 0 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.product-description > :first-child {
  margin-top: 0;
}
.product-description ol {
  margin: 0 0 12px;
  padding-left: 22px;
}
.product-description li > p:last-child {
  margin-bottom: 0;
}
/* Характеристики — «свойство …… значение» (точки-лидеры) */
.product-spec-groups {
  display: grid;
  gap: 24px;
}
.product-spec-group + .product-spec-group {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.product-spec-group__title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: 880px;
  margin: 0;
}
.spec {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 0;
}
.spec__label {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.spec__dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--col-slate-300);
  transform: translateY(-4px);
  min-width: 16px;
}
.spec__value {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.spec--list {
  display: block;
  grid-column: 1 / -1;
  padding-top: 4px;
}
.spec-list__title {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}
.spec-list__value {
  display: block;
  margin: 0;
}
.product-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 700px) {
  .product-specs {
    grid-template-columns: 1fr;
  }
}
/* Таблица доставки */
.product-delivery-table {
  max-width: 820px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-delivery-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.product-delivery-row:last-child {
  border-bottom: none;
}
.product-delivery-row:nth-child(even) {
  background: var(--col-slate-50);
}
.product-delivery-row__zone b {
  display: block;
  font-size: 14px;
}
.product-delivery-row__zone small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.product-delivery-row__price {
  font-weight: 700;
  color: var(--text);
}
.product-delivery-row__days {
  color: var(--muted);
  font-size: 13px;
  min-width: 84px;
  text-align: right;
}
/* Похожие товары */
.product-similar {
  margin-top: 44px;
}
.product-similar .product-relation-item {
  flex: 0 0 260px;
  min-width: 0;
}
.product-similar .product-relation-item .product-card {
  width: 100%;
  height: 100%;
}
.product-relation-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}
/* Управляемый CTA между товаром и общими преимуществами витрины. */
.product-consult {
  padding-block: 24px 12px;
}
.product-consult__inner {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary-950);
}
.product-consult__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.product-consult__icon .icon {
  width: 27px;
  height: 27px;
}
.product-consult__copy > span {
  display: block;
  margin-bottom: 4px;
  color: var(--col-primary-200);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.product-consult__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}
.product-consult__copy p {
  max-width: 680px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}
.product-consult__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  min-width: 230px;
}
.product-consult__button {
  min-height: 44px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: var(--col-primary-950);
  background: #fff;
  font-weight: 700;
}
.product-consult__button:hover {
  border-color: var(--col-primary-100);
  color: var(--col-primary-950);
  background: var(--col-primary-100);
}
.product-consult__messengers {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.product-consult__messengers a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}
.product-consult__messengers a:hover {
  color: #fff;
}
.product-consult__messengers img {
  width: 21px;
  height: 21px;
}
/* ---------- Адаптив ---------- */
@media (max-width: 960px) {
  .product__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "media" "buy" "tabs";
    row-gap: 24px;
  }
  .product__grid > .product-purchase {
    position: static;
  }
  .product__grid > .product-tabs {
    margin-top: 8px;
  }
  .product-purchase > .product-variants,
  .product-purchase > .product-variant-matrix {
    order: 1;
  }
  .product-purchase > .product-buy {
    order: 2;
  }
  .product-consult__inner {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .product-consult__actions {
    grid-column: 2;
    justify-self: start;
    min-width: 230px;
  }
}
@media (max-width: 560px) {
  .product__title {
    font-size: 17px;
  }
  .product-description h1,
  .product-description h2,
  .product-description .h2 {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.35;
  }
  .product-description h3,
  .product-description .h3 {
    margin-top: 18px;
    font-size: 15px;
  }
  .product-description h4,
  .product-description .h4,
  .product-description h5,
  .product-description h6 {
    margin-top: 16px;
    font-size: 14.5px;
  }
  .product-description > :first-child {
    margin-top: 0;
  }
  .product-tabs__panel {
    padding: 16px 14px;
  }
  .product-media {
    grid-template-columns: 1fr;
  }
  .product-media__stage {
    order: 1;
  }
  .product-media__thumbs {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .product-delivery-row {
    grid-template-columns: 1fr auto;
  }
  .product-delivery-row__days {
    grid-column: 2;
    text-align: right;
  }
  .product-similar .product-relation-item {
    flex-basis: calc((100% - 10px) / 2);
  }
  .product-consult {
    padding-block: 16px 8px;
  }
  .product-consult__inner {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }
  .product-consult__icon {
    width: 40px;
    height: 40px;
  }
  .product-consult__icon .icon {
    width: 21px;
    height: 21px;
  }
  .product-consult__copy h2 {
    font-size: 19px;
  }
  .product-consult__copy p {
    font-size: 13px;
  }
  .product-consult__actions {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}
/* ============================================================
   @cms Статьи: список карточек + страница статьи.
   ============================================================ */
/* ---------- Список статей ---------- */
.articles {
  padding: 18px 0 40px;
}
.articles__title {
  margin: 6px 0 6px;
  font-size: 30px;
}
.articles__lead {
  margin: 0 0 26px;
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.article-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.article-card:hover {
  border-color: var(--col-primary-200);
  box-shadow: 0 12px 32px rgba(21, 67, 123, 0.08);
  transform: translateY(-2px);
}
.article-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.article-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: var(--surface-soft);
  padding: 3px 10px;
  border-radius: 20px;
}
.article-card__date {
  color: var(--muted);
  font-size: 12.5px;
}
.article-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}
.article-card__title a {
  color: var(--text);
}
.article-card__title a:hover {
  color: var(--primary);
}
.article-card__excerpt {
  flex: 1;
  margin: 0 0 16px;
  color: var(--col-slate-600);
  font-size: 14px;
  line-height: 1.6;
}
.article-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
}
.article-card__more .icon {
  width: 13px;
  height: 13px;
  transition: transform 0.15s;
}
.article-card:hover .article-card__more .icon {
  transform: translateX(3px);
}
/* ---------- Страница статьи ---------- */
.article {
  padding: 20px 0 40px;
}
.article__wrap {
  max-width: 820px;
}
.article__head {
  margin-bottom: 24px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}
.article__meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article__meta .icon {
  width: 14px;
  height: 14px;
}
.article__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: var(--surface-soft);
  padding: 3px 10px;
  border-radius: 20px;
}
.article__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}
.article__body {
  font-size: 15.5px;
  max-width: none;
}
.article__body h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  color: var(--text);
}
@media (max-width: 680px) {
  .articles__grid {
    grid-template-columns: 1fr;
  }
  .articles__title {
    font-size: 23px;
  }
  .article__title {
    font-size: 24px;
  }
}
/* ============================================================
   @cms Выставки: список событий и фотогалерея.
   ============================================================ */
.exhibitions,
.exhibition {
  padding: 18px 0 48px;
}
.exhibitions__head,
.exhibition__head {
  margin-bottom: 26px;
}
.exhibitions__head h1,
.exhibition__head h1 {
  margin: 6px 0 8px;
  font-size: 30px;
  line-height: 1.2;
}
.exhibitions__lead,
.exhibition__lead {
  max-width: 860px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.exhibition-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.exhibition-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
}
.exhibition-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.exhibition-card:hover .exhibition-card__media img {
  transform: scale(1.025);
}
.exhibition-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}
.exhibition-card__date,
.exhibition__date {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}
.exhibition-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.4;
}
.exhibition-card__title a {
  color: var(--text);
}
.exhibition-card__title a:hover {
  color: var(--primary);
}
.exhibition-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.exhibition-card__more,
.exhibition__back {
  display: inline-flex;
  margin-top: auto;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.exhibition-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.exhibition-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.exhibition-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.exhibition-gallery__item:hover img {
  transform: scale(1.025);
}
.exhibition__video {
  overflow: hidden;
  width: min(100%, 920px);
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--col-slate-900);
}
.exhibition__video iframe,
.exhibition__video lite-youtube {
  display: block;
  width: 100%;
  height: 100%;
}
.exhibition__video lite-youtube {
  position: relative;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.exhibition-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  transform: translate(-50%, -50%);
}
.exhibition__back {
  margin-top: 28px;
}
@media (max-width: 900px) {
  .exhibition-grid,
  .exhibition-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .exhibitions__head h1,
  .exhibition__head h1 {
    font-size: 23px;
  }
  .exhibition-grid {
    grid-template-columns: 1fr;
  }
  .exhibition-gallery {
    gap: 8px;
  }
}
/* ============================================================
   @cms Инфо-страницы: о компании / доставка / оплата / контакты.
   ============================================================ */
.info-page {
  --header-height: 73px;
  padding: 22px 0 48px;
}
.info-page__head {
  position: relative;
  margin-bottom: 20px;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.info-page__head h1 {
  max-width: 900px;
  margin: 4px 0 10px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.18;
  text-wrap: balance;
}
.info-page__lead {
  margin: 0;
  max-width: 720px;
  color: var(--col-slate-600);
  font-size: 17px;
  line-height: 1.55;
}
.info-page__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.info-topic-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.info-topic-nav--business {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.info-topic-nav a {
  display: flex;
  min-width: 0;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px;
  color: var(--text);
  border-right: 1px solid var(--line);
  transition-property: color, background-color;
  transition-duration: 0.16s;
  transition-timing-function: ease;
}
.info-topic-nav a:last-child {
  border-right: 0;
}
.info-topic-nav a:hover,
.info-topic-nav a:focus-visible {
  color: var(--primary);
  background: var(--col-primary-50);
}
.info-topic-nav a:focus-visible {
  outline: 2px solid var(--col-primary-300);
  outline-offset: -2px;
}
.info-topic-nav span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}
.info-topic-nav strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
}
/* Факты */
.info-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.info-fact {
  min-width: 0;
  padding: 20px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-fact__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--col-primary-100);
  color: var(--primary);
}
.info-fact__icon .icon {
  width: 22px;
  height: 22px;
}
.info-fact strong {
  display: block;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}
.info-fact span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
/* Раскладка. Страница остаётся во всю ширину контейнера, но текстовая
   колонка фиксированная: иначе строка уезжает за 120 знаков и абзац
   читается как сплошная плита. Свободное место уходит в промежуток
   между колонками, боковая прижата к правому краю контейнера. */
.info-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 340px;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}
.info-page__layout--single {
  grid-template-columns: minmax(0, 820px);
}
.info-page__main {
  min-width: 0;
}
/* Боковая колонка короче текста в несколько раз — без sticky справа
   остаётся пустое поле во всю высоту страницы. */
.info-page__aside {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}
.info-page__body {
  /* Меру задаёт сама колонка (720px ≈ 78 знаков для Onest 16px),
     поэтому блокам внутри ограничение не нужно. */
  --measure: 100%;
  color: var(--col-slate-700);
  font-size: 16px;
  line-height: 1.75;
}
/* Заголовки в контенте приходят и тегами, и div.h2/.h3 — без явного
   веса второй вариант наследует 500 и сливается с абзацами. */
.info-page__body h2,
.info-page__body .h2 {
  margin: 44px 0 14px;
  color: var(--text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}
.info-page__body h3,
.info-page__body .h3 {
  margin: 34px 0 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}
.info-page__body h4,
.info-page__body .h4 {
  margin: 24px 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.info-page__body h2 + h3,
.info-page__body .h2 + .h3,
.info-page__body h2 + .h3,
.info-page__body .h2 + h3 {
  margin-top: 20px;
}
.info-page__body h2:first-child,
.info-page__body .h2:first-child {
  margin-top: 0;
}
.info-page__body p {
  margin: 0 0 16px;
}
.info-page__body ul,
.info-page__body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
}
.info-page__body li {
  padding-left: 4px;
}
.info-page__body li::marker {
  color: var(--col-primary-600);
  font-weight: 700;
}
.info-page__body hr {
  height: 1px;
  margin: 34px 0;
  border: 0;
  background: var(--line);
}
.info-page__body a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.info-page__body img,
.info-page__body video,
.info-page__body iframe {
  display: block;
  max-width: min(100%, var(--measure));
  border: 0;
}
.info-page__body iframe {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
}
.info-page__body table {
  width: 100%;
  margin: 20px 0 28px;
  border-collapse: collapse;
  font-size: 14px;
}
.info-page__body th,
.info-page__body td {
  padding: 11px 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-page__body th {
  color: var(--text);
  background: var(--surface-soft);
}
.info-page__body > *:last-child {
  margin-bottom: 0;
}
.info-page--about .info-page__body iframe {
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin-bottom: 28px;
}
.info-page--delivery .info-page__body > div.mt-5,
.info-page--service .info-page__body > div {
  max-width: var(--measure);
  margin: 26px 0;
  padding: 20px 22px;
  border: 0 !important;
  border-radius: var(--radius);
  background: var(--surface-soft) !important;
}
.info-page--business .info-page__body > p:first-child {
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.info-page__body p > span[style*="background-color"] {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-right: 5px;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--col-slate-900);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.info-page--steps .info-page__body h3,
.info-page--payment .info-page__body h3 {
  margin-top: 30px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.info-page--service .info-page__body h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.info-page--legal .info-page__main {
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-page--legal .info-page__body {
  max-width: none;
  color: var(--col-slate-700);
  font-size: 15px;
  line-height: 1.7;
}
.info-page--legal .info-page__body h2,
.info-page--legal .info-page__body h3 {
  color: var(--text);
}
.info-page--legal .info-page__body p,
.info-page--legal .info-page__body ul,
.info-page--legal .info-page__body ol {
  margin: 0 0 16px;
}
.info-page--contacts .info-page__body {
  color: var(--col-slate-700);
  font-size: 14px;
  line-height: 1.65;
}
.info-page--contacts .info-page__body h2 {
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.info-page--contacts .info-page__body h3,
.info-page--contacts .info-page__body h4,
.info-page--contacts .info-page__body .h4 {
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 15px;
  font-style: normal;
}
.info-page--contacts .info-page__body p {
  margin: 0 0 14px;
}
.info-page--contacts .info-page__body address {
  font-style: normal;
}
.info-page--contacts .info-page__body ul {
  margin: 8px 0 20px;
  padding-left: 20px;
}
.info-page--contacts .info-page__body br + br {
  display: none;
}
.info-page--contacts .info-page__body .clear {
  display: none;
}
.info-page--contacts .info-page__aside {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}
/* Каталоги и партнёры */
.directory-page {
  padding: 18px 0 48px;
}
.directory-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.directory-page__head h1 {
  margin: 4px 0 0;
  font-size: 30px;
}
.resource-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.resource-card,
.partner-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.resource-card__media,
.partner-card__media {
  display: grid;
  place-items: center;
  min-height: 210px;
  background: var(--surface-soft);
}
.resource-card__media img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.partner-card__media {
  min-height: 150px;
}
.partner-card__media img {
  display: block;
  width: 100%;
  max-width: 210px;
  max-height: 110px;
  object-fit: contain;
}
.resource-card__body,
.partner-card__body {
  padding: 18px;
}
.resource-card__body h2,
.partner-card__body h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.partner-card__body h2 a {
  color: var(--text);
}
.partner-card__body h2 a:hover {
  color: var(--primary);
}
.resource-card__meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.resource-card__download,
.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.resource-card__download .icon {
  width: 18px;
  height: 18px;
}
.partner-card__section {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.partner-card__section strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}
.partner-card__section ul {
  margin: 0;
  padding-left: 18px;
}
/* Aside-карточки */
.info-aside-card {
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-aside-card__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--col-primary-100);
  color: var(--primary);
}
.info-aside-card__icon .icon {
  width: 20px;
  height: 20px;
}
.info-aside-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.info-aside-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.info-aside-card--action {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}
.info-aside-card--action strong,
.info-aside-card--action p {
  color: #fff;
}
.info-aside-card--action p {
  opacity: 0.86;
}
.info-aside-card--action a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.info-aside-card--action a:hover {
  color: var(--primary);
  background: #fff;
}
/* Офисы */
.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.office {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.office__city {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 16px;
}
.office__city .icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.office__addr {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.office__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.office__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--col-slate-700);
}
.office__row .icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}
a.office__row:hover {
  color: var(--primary);
}
/* Карта */
.info-map {
  display: grid;
  place-items: center;
  height: 300px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, var(--col-slate-50) 0 12px, var(--col-slate-100) 12px 24px);
  color: var(--muted);
  font-size: 14px;
}
.info-map span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-map .icon {
  width: 18px;
  height: 18px;
}
/* Форма */
.info-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-form__title {
  font-size: 16px;
}
.info-form input,
.info-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  background: var(--surface);
  resize: vertical;
}
.info-form input:focus,
.info-form textarea:focus {
  outline: none;
  border-color: var(--col-primary-300);
}
.info-form .btn {
  margin-top: 2px;
}
.info-form small {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.4;
}
.info-form [data-contact-root],
.info-form [data-contact-form] {
  min-width: 0;
}
.info-form [data-contact-form] {
  display: grid;
  gap: 12px;
}
.info-form .form-group {
  min-width: 0;
  margin: 0;
}
.info-form .form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--col-slate-700);
  font-size: 12px;
  font-weight: 700;
}
.info-form textarea {
  min-height: 92px;
}
.info-form [data-contact-form] button[type="button"] {
  display: none;
}
.info-form [data-contact-form] button[type="submit"] {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.info-form [data-contact-form] button[type="submit"]:hover {
  background: var(--primary-dark);
}
/* Единая форма обратного звонка для быстрых действий на витрине. */
.callback-dialog {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.62);
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.18s;
  transition-timing-function: ease-out;
}
.callback-dialog[hidden] {
  display: none;
}
.callback-dialog.is-open {
  opacity: 1;
  visibility: visible;
}
.callback-dialog__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  transform: translateY(10px);
  transition-property: transform;
  transition-duration: 0.18s;
  transition-timing-function: ease-out;
}
.callback-dialog.is-open .callback-dialog__panel {
  transform: translateY(0);
}
.callback-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: var(--col-slate-600);
  background: transparent;
  cursor: pointer;
}
.callback-dialog__close:hover {
  color: var(--col-primary);
  background: var(--col-primary-50);
}
.callback-dialog__close .icon {
  width: 18px;
  height: 18px;
}
.callback-dialog__head {
  padding-right: 38px;
}
.callback-dialog__head strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}
.callback-dialog__head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.callback-dialog__form {
  margin-top: 22px;
}
.callback-dialog__loading,
.callback-dialog__error {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.callback-dialog__error {
  flex-direction: column;
}
.callback-dialog__spinner {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid var(--col-slate-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: callback-dialog-spin 0.7s linear infinite;
}
@keyframes callback-dialog-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .callback-dialog__spinner {
    animation-duration: 1.4s;
  }
}
.callback-dialog__form [data-contact-form] {
  display: grid;
  gap: 14px;
}
.callback-dialog__form .form-group,
.callback-dialog__form .row,
.callback-dialog__form .col-12 {
  min-width: 0;
  margin: 0;
}
.callback-dialog__form .control-label {
  display: block;
  margin-bottom: 6px;
  color: var(--col-slate-700);
  font-size: 13px;
  font-weight: 700;
}
.callback-dialog__form input:not([type="hidden"]):not([type="checkbox"]),
.callback-dialog__form textarea,
.callback-dialog__form select {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--col-slate-200);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 14px;
}
.callback-dialog__form textarea {
  min-height: 96px;
  padding-block: 11px;
  resize: vertical;
}
.callback-dialog__form input:not([type="hidden"]):not([type="checkbox"]):focus,
.callback-dialog__form textarea:focus,
.callback-dialog__form select:focus {
  outline: 0;
  border-color: var(--col-primary-400);
}
.callback-dialog__form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.callback-dialog__form .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--primary);
}
.callback-dialog__form .btn[type="submit"] {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  color: #fff;
  background: var(--primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.callback-dialog__form .btn[type="submit"]:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}
.callback-dialog__form [data-dismiss="modal"] {
  display: none;
}
.is-callback-open {
  overflow: hidden;
}
/* Нативные SEO-подборки: содержимое и запросы остаются в документах. */
.collection-page {
  padding-bottom: 8px;
}
.collection-page > .page_breadcrumbs {
  margin: 0;
  padding: 14px 0 8px;
}
.collection-page .page_breadcrumbs_inner,
.collection-page .page_title_inner,
.collection-page .static_page_inner,
.collection-page .cats_inner,
.collection-page .product_list_inner,
.collection-page .page_img_inner,
.collection-page .main_info_inner,
.collection-page .main_subscribe_inner {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}
.collection-page .page_breadcrumbs_list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}
.collection-page .page_breadcrumbs_item {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}
.collection-page .page_breadcrumbs_item:not(:last-child)::after {
  content: "/";
  color: var(--col-slate-300);
}
.collection-page .page_breadcrumbs_link {
  color: var(--muted);
}
.collection-page .page_breadcrumbs_text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.collection-page .covid-promo {
  padding: 10px 0 42px;
}
.collection-page .covid-promo .static_page {
  margin: 0 0 28px;
}
.collection-page .covid-promo .page_title_heading {
  max-width: 980px;
  margin: 4px 0 10px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.18;
}
.collection-page .covid-promo .blocks-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 0;
}
.collection-page .covid-promo .block-text {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--col-slate-700);
  font-size: 15px;
  line-height: 1.65;
}
.collection-page .covid-promo .block-text.--bordered {
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}
.collection-page .covid-promo .block-text p {
  margin: 0 0 12px;
}
.collection-page .covid-promo .block-text strong {
  color: var(--text);
  font-size: 17px;
}
.collection-page .covid-promo .covid-block {
  position: relative;
  display: flex;
  width: calc(100% - 32px);
  max-width: 1200px;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background-size: cover;
  text-align: center;
}
.collection-page .covid-promo .covid-text {
  max-width: 760px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}
.collection-page .covid-promo .cats_inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.collection-page .covid-promo .cats_col {
  width: auto;
  min-width: 0;
  padding: 0;
}
.collection-page .covid-promo .cats_item {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 0.18s ease;
}
.collection-page .covid-promo .cats_item:hover {
  border-color: var(--col-primary-300);
}
.collection-page .covid-promo .cats-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.collection-page .covid-promo .cats-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.collection-page .covid-promo .cats-title {
  display: flex;
  min-height: 58px;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #fff;
  background: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.collection-page .covid-promo h3 {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 38px auto 12px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.25;
}
.collection-page .covid-promo .our-text,
.collection-page .covid-promo .promo-footer {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.collection-page .covid-promo .our-text {
  margin-bottom: 28px;
  color: var(--col-slate-700);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.collection-page .covid-promo .product_list {
  margin: 0 0 18px;
}
.collection-page .covid-promo .product_list_wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.collection-page .covid-promo .product-card {
  min-width: 0;
}
.collection-page .covid-promo .promo-button-block {
  display: flex;
  width: calc(100% - 32px);
  max-width: 1200px;
  justify-content: center;
  margin: 0 auto 34px;
}
.collection-page .covid-promo .see-all {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.collection-page .covid-promo .see-all:hover {
  color: #fff;
  background: var(--primary);
}
.collection-page .covid-promo .promo-footer p {
  margin: 0 0 12px;
  color: var(--col-slate-700);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.collection-page .covid-promo .promo-footer p.middle,
.collection-page .covid-promo .promo-footer p.bottom {
  font-size: 18px;
  font-weight: 700;
}
.collection-page > .index_page_section {
  display: none;
}
/* ------------------------------------------------------------
   Каталожные SEO-страницы приведены к языку doc-page: первый
   экран плашкой, разделы через волосяные линейки, преимущества
   залитыми карточками вместо полоски слева.
   ------------------------------------------------------------ */
.collection-page .covid-promo .page_title {
  margin-bottom: 30px;
  padding: 40px 0 36px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(112deg, #0f2a4f 0%, var(--col-primary) 58%, #1c5a9e 100%);
}
.collection-page .covid-promo .page_title_inner {
  width: calc(100% - 88px);
}
.collection-page .covid-promo .page_title_heading {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}
.collection-page .covid-promo .blocks-text {
  align-items: start;
  gap: 22px 40px;
  margin-bottom: 34px;
}
.collection-page .covid-promo .block-text {
  font-size: 15.5px;
  line-height: 1.7;
}
/* Строка-слоган и служебные абзацы идут во всю ширину, иначе
   вторая колонка обрывается на середине сетки. */
.collection-page .covid-promo .blocks-text > .our-text {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 22px;
  border-radius: 10px;
  background: var(--col-primary-50);
  color: var(--col-slate-700);
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.collection-page .covid-promo .blocks-text > .our-text a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding: 10px 18px;
  border: 1px solid var(--col-primary-200);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  transition-property: color, border-color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.collection-page .covid-promo .blocks-text > .our-text a:hover {
  border-color: var(--col-primary-400);
  background: var(--col-primary-100);
}
.collection-page .covid-promo .blocks-text > .our-text + .our-text {
  margin-top: -12px;
  background: var(--col-slate-50);
  font-size: 14px;
}
/* Слоган — только во вводном блоке: в списке преимуществ третий
   пункт ничем не выделен и должен остаться обычной карточкой. */
.collection-page .covid-promo .blocks-text > .block-text:nth-child(3):not(.--bordered) {
  grid-column: 1 / -1;
  color: var(--primary);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
/* Преимущества: залитая карточка вместо полоски слева. */
.collection-page .covid-promo .block-text.--bordered {
  padding: 20px 22px;
  border-left: 0;
  border-radius: 12px;
  background: var(--col-slate-50);
  font-size: 15px;
}
.collection-page .covid-promo h3 {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 26px;
  font-weight: 800;
  text-wrap: balance;
}
.collection-page .covid-promo .static_page_inner > h3:first-child + p {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto 22px;
  color: var(--col-slate-700);
  font-size: 15.5px;
  line-height: 1.65;
}
.collection-page .covid-promo .covid-block {
  border-radius: 14px;
}
.collection-page .covid-promo .covid-text {
  border-radius: 10px;
}
.collection-page .covid-promo .cats_item {
  border-radius: 12px;
  transition-property: border-color, box-shadow, transform;
  transition-duration: 0.18s;
  transition-timing-function: ease;
}
.collection-page .covid-promo .cats_item:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.collection-page .covid-promo .promo-footer p.middle,
.collection-page .covid-promo .promo-footer p.bottom {
  color: var(--text);
}
@media (max-width: 900px) {
  .collection-page .covid-promo .page_title {
    padding: 28px 0 26px;
  }
  .collection-page .covid-promo .page_title_inner {
    width: calc(100% - 48px);
  }
  .collection-page .covid-promo .page_title_heading {
    font-size: 27px;
  }
  .collection-page .covid-promo h3 {
    margin-top: 34px;
    padding-top: 24px;
    font-size: 22px;
  }
}
/* Адаптив */
@media (max-width: 900px) {
  .resource-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-page__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-page__aside,
  .info-page--contacts .info-page__aside {
    position: static;
  }
  .collection-page .covid-promo .cats_inner,
  .collection-page .covid-promo .product_list_wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .info-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-page .covid-promo .blocks-text {
    grid-template-columns: 1fr;
  }
  .collection-page .covid-promo .cats_inner,
  .collection-page .covid-promo .product_list_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .callback-dialog {
    place-items: center;
    padding: 12px;
  }
  .callback-dialog__panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 24px 18px 18px;
    overscroll-behavior: contain;
  }
  .directory-page__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .resource-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .info-page__head h1 {
    font-size: 25px;
  }
  .info-page__head {
    margin-bottom: 14px;
    padding: 20px 18px;
  }
  .info-topic-nav,
  .info-topic-nav--business {
    display: flex;
    overflow-x: auto;
    margin-bottom: 24px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .info-topic-nav::-webkit-scrollbar {
    display: none;
  }
  .info-topic-nav a {
    min-width: 148px;
    min-height: 62px;
    flex: 0 0 148px;
    padding: 10px 13px;
    scroll-snap-align: start;
  }
  .info-page__lead {
    font-size: 15px;
  }
  .info-page__body {
    font-size: 15px;
  }
  .info-page__body h2,
  .info-page__body .h2 {
    margin-top: 34px;
    font-size: 21px;
  }
  .info-page__body h3,
  .info-page__body .h3 {
    margin-top: 26px;
    font-size: 17px;
  }
  .info-fact strong {
    font-size: 25px;
  }
  .info-page__body iframe {
    min-height: 240px;
  }
  .info-page--legal .info-page__main {
    padding: 22px 18px;
  }
  .offices {
    grid-template-columns: 1fr;
  }
  .collection-page .covid-promo .page_title_heading {
    font-size: 25px;
  }
  .collection-page .covid-promo .covid-block {
    min-height: 140px;
    padding: 18px;
  }
  .collection-page .covid-promo .covid-text {
    font-size: 22px;
  }
  .collection-page .covid-promo h3 {
    margin-top: 30px;
    font-size: 21px;
  }
  .collection-page .covid-promo .cats-title {
    min-height: 62px;
    font-size: 12px;
  }
}
/* ============================================================
   @cms О компании: корпоративная композиция из системных блоков.
   Все правила изолированы, чтобы содержимое блоков не влияло на сайт.
   ============================================================ */
.about-company {
  color: var(--col-slate-700);
  background: var(--surface);
}
.about-company__hero-shell {
  position: relative;
}
.about-company__hero {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 14px;
}
.about-company__hero-media {
  position: absolute;
  inset: 0;
}
.about-company__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.about-company__hero-inner {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: none !important;
  margin: 0;
  padding: 40px 44px 36px;
}
.about-company__eyebrow {
  margin: 0 0 12px;
  color: var(--col-primary-600);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}
.about-company__hero .about-company__eyebrow,
.about-company__section--dark .about-company__eyebrow {
  color: #8edbff;
}
.about-company__hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}
.about-company__hero-lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: #d7e6f7;
  font-size: 18px;
  line-height: 1.6;
}
.about-company__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}
.about-company__button {
  display: inline-flex;
  min-height: 48px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition-property: color, border-color, background-color;
  transition-duration: 0.16s;
  transition-timing-function: ease;
}
.about-company__button .icon {
  width: 18px;
  height: 18px;
}
.about-company__button--light {
  color: #15437b;
  background: #fff;
}
.about-company__button--light:hover {
  color: #fff;
  background: var(--col-primary-700);
}
.about-company__button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}
.about-company__button--outline:hover {
  color: #15437b;
  border-color: #fff;
  background: #fff;
}
.about-company__button--primary {
  color: #fff;
  background: #15437b;
}
.about-company__button--primary:hover {
  color: #fff;
  background: #143057;
}
.about-company__button--secondary {
  color: #15437b;
  border-color: #15437b;
}
.about-company__button--secondary:hover {
  color: #fff;
  background: #15437b;
}
.about-company__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.about-company__stat {
  min-width: 0;
  padding: 22px 20px;
  border-radius: 8px;
  background: rgba(21, 67, 123, 0.7);
}
.about-company__stat strong {
  display: block;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
}
.about-company__stat span {
  display: block;
  margin-top: 8px;
  color: #c4d9ef;
  font-size: 13px;
  line-height: 1.45;
}
.about-company__section {
  padding: 72px 0;
}
.about-company__section--compact {
  padding: 58px 0 64px;
}
.about-company__section--soft {
  background: var(--col-slate-50);
}
.about-company__section--dark {
  color: #c3d8f0;
  background: #143057;
}
.about-company__split {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.about-company__section-head h2,
.about-company__cta h2 {
  margin: 0;
  color: var(--col-slate-950);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}
.about-company__section--dark .about-company__section-head h2 {
  color: #fff;
}
.about-company__lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--col-slate-600);
  font-size: 18px;
  line-height: 1.6;
}
.about-company__prose {
  max-width: 760px;
  color: var(--col-slate-700);
  font-size: 16px;
  line-height: 1.72;
}
.about-company__prose p {
  margin: 0 0 18px;
}
.about-company__prose p:last-child {
  margin-bottom: 0;
}
.about-company__mission-grid,
.about-company__card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.about-company__mission-item,
.about-company__card {
  min-width: 0;
  padding: 28px 26px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  background: #fff;
}
.about-company__mission-item h3,
.about-company__card h3 {
  margin: 0 0 10px;
  color: #15437b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}
.about-company__mission-item p,
.about-company__card p {
  margin: 0;
  color: var(--col-slate-600);
  font-size: 14px;
  line-height: 1.62;
}
.about-company__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.about-company__facts > div {
  min-width: 0;
  padding: 22px 24px;
  border-radius: 8px;
  background: #eef9ff;
}
.about-company__facts strong {
  display: block;
  color: #15437b;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;
}
.about-company__facts span {
  display: block;
  margin-top: 7px;
  color: var(--col-slate-700);
  font-size: 13px;
  line-height: 1.5;
}
.about-company__card-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  color: #15437b;
}
.about-company__card-icon .icon {
  display: block;
  width: 52px;
  height: 52px;
}
.about-company__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about-company__brands span {
  padding: 7px 12px;
  border-radius: 6px;
  color: #15437b;
  background: #eef9ff;
  font-size: 13px;
  font-weight: 700;
}
.about-company__catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.about-company__catalog-list li {
  position: relative;
  min-width: 0;
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--col-slate-200);
  color: var(--col-slate-900);
  font-size: 15px;
  line-height: 1.55;
}
.about-company__catalog-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--col-primary-600);
  content: "";
}
.about-company__card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-company__perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.about-company__perks > div {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.about-company__perks > div > span {
  flex: 0 0 auto;
  color: #58c4ff;
}
.about-company__perks > div > span .icon {
  width: 18px;
  height: 18px;
}
.about-company__perks p {
  margin: 0;
  color: #a9c5e6;
  font-size: 13px;
  line-height: 1.55;
}
.about-company__perks strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}
.about-company__principles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: about-principle;
}
.about-company__principles li {
  min-width: 0;
  padding: 22px 18px;
  border-radius: 8px;
  background: #eef9ff;
  counter-increment: about-principle;
}
.about-company__principles li::before {
  display: block;
  margin-bottom: 10px;
  color: var(--col-primary-600);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  content: counter(about-principle);
}
.about-company__principles strong,
.about-company__principles span {
  display: block;
}
.about-company__principles strong {
  margin-bottom: 6px;
  color: var(--col-slate-950);
  font-size: 14px;
  line-height: 1.4;
}
.about-company__principles span {
  color: var(--col-slate-600);
  font-size: 12px;
  line-height: 1.5;
}
.about-company__closing {
  max-width: 780px;
  margin: 54px 0 0;
  color: var(--col-slate-800);
  font-size: 18px;
  line-height: 1.68;
}
.about-company__cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 36px 40px;
  border-radius: 8px;
  background: #eef9ff;
}
.about-company__cta h2 {
  font-size: 25px;
}
.about-company__cta p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--col-slate-600);
  font-size: 15px;
  line-height: 1.55;
}
.about-company__cta-contact {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  justify-items: stretch;
}
.about-company__cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.about-company__cta-links a {
  color: #15437b;
}
.about-company__cta-links a:hover {
  color: var(--col-primary-700);
  text-decoration: underline;
}
@media (max-width: 1080px) {
  .about-company__hero h1 {
    font-size: 46px;
  }
  .about-company__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-company__stats,
  .about-company__mission-grid,
  .about-company__card-grid,
  .about-company__card-grid--services,
  .about-company__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-company__principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-company__cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-company__cta-contact {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .about-company__hero-media img {
    object-position: 68% 50%;
  }
  .about-company__hero-inner {
    padding: 30px 24px 28px;
  }
  .about-company__hero h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.12;
  }
  .about-company__hero-lead {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.55;
  }
  .about-company__button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
  .about-company__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }
  .about-company__stat {
    padding: 16px 14px;
  }
  .about-company__stat strong {
    font-size: 24px;
  }
  .about-company__stat span {
    font-size: 11px;
  }
  .about-company__section,
  .about-company__section--compact {
    padding: 48px 0;
  }
  .about-company__section-head h2,
  .about-company__cta h2 {
    font-size: 27px;
  }
  .about-company__lead {
    margin-top: 14px;
    font-size: 15px;
  }
  .about-company__prose {
    font-size: 15px;
    line-height: 1.68;
  }
  .about-company__mission-grid,
  .about-company__card-grid,
  .about-company__card-grid--services,
  .about-company__facts,
  .about-company__catalog-list,
  .about-company__perks,
  .about-company__principles {
    grid-template-columns: 1fr;
  }
  .about-company__mission-item,
  .about-company__card {
    padding: 22px 20px;
  }
  .about-company__catalog-list {
    gap: 0;
  }
  .about-company__principles {
    gap: 10px;
  }
  .about-company__closing {
    margin-top: 38px;
    font-size: 16px;
  }
  .about-company__cta {
    gap: 20px;
    margin-top: 24px;
    padding: 24px 20px;
  }
  .about-company__cta .about-company__button {
    width: 100%;
  }
}
/* ============================================================
   @cms Информационные страницы витрины (медиацентр, заказ,
   гарантия, партнёрам, оплата, корпоративным клиентам).
   Оформление варианта C без левого оглавления: одна колонка
   контента, секции через волосяные линейки, правый рельс.
   ============================================================ */
.doc-page {
  --doc-header-height: 73px;
  padding: 0 0 56px;
}
.breadcrumbs + .doc-page {
  padding-top: 0;
}
/* ——— Шапка страницы ——— */
.doc-page__hero {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(112deg, #0f2a4f 0%, var(--col-primary) 58%, #1c5a9e 100%);
}
.doc-page__hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -260px auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 196, 255, 0.26), transparent 62%);
}
.doc-page__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 44px 36px;
}
.doc-page__eyebrow {
  margin: 0 0 9px;
  color: var(--col-primary-300);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.doc-page__hero h1 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
}
.doc-page__hero-lead {
  max-width: 560px;
  margin: 12px 0 0;
  color: #cfe0f5;
  font-size: 16px;
  line-height: 1.55;
}
.doc-page__figures {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.doc-page__figure {
  padding: 0 24px;
}
.doc-page__figure:first-child {
  padding-left: 0;
}
.doc-page__figure + .doc-page__figure {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.doc-page__figure strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}
.doc-page__figure span {
  display: block;
  margin-top: 3px;
  color: #a9c5e6;
  font-size: 12px;
  line-height: 1.35;
}
/* ——— Раскладка ——— */
.doc-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
  padding-top: 34px;
}
.doc-page__layout--wide {
  grid-template-columns: minmax(0, 1fr);
}
.doc-page__main {
  min-width: 0;
  color: var(--col-slate-700);
  font-size: 15.5px;
  line-height: 1.66;
}
/* ——— Секции ——— */
.doc-page__section {
  padding: 0 0 34px;
  scroll-margin-top: calc(var(--doc-header-height) + 16px);
}
.doc-page__section + .doc-page__section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.doc-page__section:last-child {
  padding-bottom: 0;
}
.doc-page__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.doc-page__badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--col-primary-50);
  color: var(--primary);
}
.doc-page__badge .icon {
  width: 23px;
  height: 23px;
}
.doc-page__section h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  text-wrap: balance;
}
.doc-page__sub {
  margin: 0;
  color: var(--col-primary-600);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.doc-page__main p {
  margin: 0 0 14px;
}
.doc-page__main p:last-child {
  margin-bottom: 0;
}
.doc-page__main strong {
  color: var(--text);
}
.doc-page__main a {
  color: var(--primary);
}
.doc-page__main a:hover {
  color: var(--col-primary-700);
}
/* ——— Нумерованные шаги ——— */
.doc-page__steps {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: docstep;
}
.doc-page__steps > li {
  counter-increment: docstep;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.doc-page__steps > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.doc-page__steps > li::before {
  content: counter(docstep);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.doc-page__steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}
.doc-page__steps p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}
/* ——— Карточки ——— */
.doc-page__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.doc-page__cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.doc-page__card {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.doc-page__card .doc-page__badge {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 11px;
}
.doc-page__card .doc-page__badge .icon {
  width: 21px;
  height: 21px;
}
.doc-page__card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 16.5px;
  font-weight: 700;
}
.doc-page__card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
/* ——— Плитки-факты ——— */
.doc-page__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 4px;
}
.doc-page__facts > div {
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--col-primary-50);
}
.doc-page__facts strong {
  display: block;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}
.doc-page__facts span {
  display: block;
  margin-top: 4px;
  color: var(--col-slate-700);
  font-size: 13px;
  line-height: 1.45;
}
/* ——— Списки ——— */
.doc-page__bullets {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.doc-page__bullets li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
}
.doc-page__bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--col-primary-600);
}
.doc-page__bullets--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 30px;
}
.doc-page__checks {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.doc-page__checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.doc-page__checks .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--col-primary-600);
}
.doc-page__checks strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.doc-page__checks span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
/* ——— Ограничения (когда гарантия не действует) ——— */
.doc-page__deny {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.doc-page__deny li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--col-slate-50);
  font-size: 14px;
  line-height: 1.5;
}
.doc-page__deny .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}
/* ——— Способы оплаты ——— */
.doc-page__pay {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.doc-page__pay > div {
  padding: 24px 24px 22px;
  border-radius: 12px;
  background: var(--col-primary-50);
}
.doc-page__pay .doc-page__badge {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 11px;
  background: var(--surface);
}
.doc-page__pay strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
}
.doc-page__pay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
/* ——— Контактные карточки ——— */
.doc-page__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.doc-page__contacts > div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.doc-page__contacts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.doc-page__contacts a {
  display: block;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}
.doc-page__contacts a:hover {
  color: var(--col-primary-600);
}
.doc-page__contacts span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}
/* ——— Выпуски журнала ——— */
.doc-page__issues {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.doc-page__issues li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.doc-page__issues li:last-child {
  border-bottom: 0;
}
.doc-page__issues em {
  flex: 0 0 82px;
  color: var(--col-primary-600);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}
.doc-page__issues span,
.doc-page__issues a {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.doc-page__issues a:hover {
  color: var(--primary);
}
/* ——— Каналы ——— */
.doc-page__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.doc-page__channels a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--col-primary-50);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.doc-page__channels a:hover {
  background: var(--col-primary-100);
}
.doc-page__channels .icon {
  width: 17px;
  height: 17px;
}
/* ——— Врезки ——— */
.doc-page__note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 10px;
  background: var(--col-primary-50);
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}
.doc-page__note p {
  margin: 0;
}
.doc-page__spaced {
  margin-top: 18px;
}
.doc-page__note p + p {
  margin-top: 10px;
}
.doc-page__note--legal {
  background: var(--col-slate-50);
  color: var(--muted);
  font-size: 13px;
}
/* ——— Правый рельс ——— */
.doc-page__rail {
  position: sticky;
  top: calc(var(--doc-header-height) + 16px);
  display: grid;
  gap: 14px;
}
.doc-page__rail-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.doc-page__rail-card .doc-page__badge {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 10px;
}
.doc-page__rail-card .doc-page__badge .icon {
  width: 30px;
  height: 20px;
}
.doc-page__rail-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.doc-page__rail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.doc-page__rail-card--cta {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}
.doc-page__rail-card--cta strong {
  color: #fff;
  font-size: 17px;
}
.doc-page__rail-card--cta p {
  color: #cfe0f5;
}
.doc-page__rail-card--cta .doc-page__badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.doc-page__rail-card--cta a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
.doc-page__rail-card--cta a + a {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.doc-page__rail-card--cta a:hover {
  opacity: 0.92;
}
@media (max-width: 1080px) {
  .doc-page__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .doc-page__rail {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .doc-page__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .doc-page__hero-inner {
    padding: 30px 24px 28px;
  }
  .doc-page__hero h1 {
    font-size: 28px;
  }
  .doc-page__figures {
    width: 100%;
    flex-direction: column;
  }
  .doc-page__figure {
    width: 100%;
    padding: 0;
  }
  .doc-page__figure + .doc-page__figure {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }
  .doc-page__section h2 {
    font-size: 22px;
  }
  .doc-page__rail,
  .doc-page__cards,
  .doc-page__cards--2,
  .doc-page__facts,
  .doc-page__pay,
  .doc-page__deny,
  .doc-page__contacts,
  .doc-page__bullets--cols {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ============================================================
   Юридические документы: длинный нумерованный текст без
   карточек. Задача — читабельная иерархия пунктов.
   ============================================================ */
.doc-page__legal {
  min-width: 0;
  color: var(--col-slate-700);
  font-size: 15.5px;
  line-height: 1.7;
  counter-reset: legal;
}
.doc-page__legal > h2,
.doc-page__legal > h3 {
  margin: 40px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  scroll-margin-top: calc(var(--doc-header-height) + 16px);
}
.doc-page__legal > h2:first-child,
.doc-page__legal > h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.doc-page__legal > h4 {
  margin: 24px 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
/* В документах встречаются бланки с длинными рядами подчёркиваний —
   без принудительного переноса они распирают страницу на мобильном. */
.doc-page__legal p,
.doc-page__legal li {
  overflow-wrap: anywhere;
}
.doc-page__legal p {
  margin: 0 0 13px;
}
/* Абзац-заголовок раздела: «1. Общие положения» отдельной строкой.
   В части документов такие строки размечены обычным <p>. */
.doc-page__legal p.doc-page__legal-head {
  margin: 40px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}
.doc-page__legal p.doc-page__legal-head:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.doc-page__legal ul,
.doc-page__legal ol {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding-left: 20px;
}
.doc-page__legal li::marker {
  color: var(--col-primary-600);
}
.doc-page__legal strong {
  color: var(--text);
}
.doc-page__legal a {
  color: var(--primary);
}
.doc-page__legal table {
  width: 100%;
  margin: 18px 0 24px;
  border-collapse: collapse;
  font-size: 14px;
}
.doc-page__legal th,
.doc-page__legal td {
  padding: 11px 13px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.doc-page__legal th {
  color: var(--text);
  background: var(--col-primary-50);
}
/* Соседние правовые документы в рельсе */
.doc-page__links {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.doc-page__links a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--col-slate-700);
  font-size: 13.5px;
  line-height: 1.4;
  transition-property: color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.doc-page__links a:hover {
  color: var(--primary);
  background: var(--col-primary-50);
}
.doc-page__links a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
  background: var(--col-primary-100);
}
/* ============================================================
   Контакты: офисы карточками, реквизиты, карты.
   ============================================================ */
.doc-page__offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.doc-page__office {
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.doc-page__office > h3 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}
.doc-page__office > h3 .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--primary);
}
.doc-page__office-addr {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.doc-page__office-rows {
  display: grid;
  gap: 8px;
}
.doc-page__office-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--col-slate-700);
  font-size: 14.5px;
}
.doc-page__office-row .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--primary);
}
a.doc-page__office-row {
  font-weight: 700;
}
a.doc-page__office-row:hover {
  color: var(--primary);
}
.doc-page__office-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
/* Реквизиты */
.doc-page__req {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--line);
}
.doc-page__req > div {
  padding: 14px 18px;
  background: var(--surface);
}
.doc-page__req dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 12px;
}
.doc-page__req dd {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.doc-page__req--full {
  grid-column: 1 / -1;
}
.doc-page__req--full dd {
  font-weight: 500;
}
/* Карты */
.doc-page__maps {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}
.doc-page__map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.doc-page__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
.doc-page__map figcaption {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 820px) {
  .doc-page__offices,
  .doc-page__req {
    grid-template-columns: minmax(0, 1fr);
  }
  .doc-page__legal > h2,
  .doc-page__legal > h3,
  .doc-page__legal p.doc-page__legal-head {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 19px;
  }
  .doc-page__map iframe {
    height: 260px;
  }
}
/* ============================================================
   Доставка: тарифные зоны и таблица подъёма.
   ============================================================ */
.doc-page__zones {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.doc-page__zone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.doc-page__zone-chip {
  display: inline-flex;
  min-width: 116px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}
.doc-page__zone-chip--green {
  background: #1f9d55;
}
.doc-page__zone-chip--yellow {
  color: var(--col-slate-900);
  background: #f1c40f;
}
.doc-page__zone-chip--red {
  background: #d93025;
}
.doc-page__zone-chip--blue {
  background: #1c72c4;
}
.doc-page__zone strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.doc-page__zone p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
/* Тариф: строка «условие — цена» */
.doc-page__rates {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.doc-page__rates li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 18px;
  font-size: 15px;
}
.doc-page__rates li + li {
  border-top: 1px solid var(--line);
}
.doc-page__rates li:nth-child(odd) {
  background: var(--col-slate-50);
}
.doc-page__rates b {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
/* Ссылки на калькуляторы транспортных компаний */
.doc-page__carriers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.doc-page__carriers a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  transition-property: color, border-color, background-color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.doc-page__carriers a:hover {
  border-color: var(--col-primary-300);
  background: var(--col-primary-50);
}
.doc-page__carriers .icon {
  width: 15px;
  height: 15px;
}
@media (max-width: 620px) {
  .doc-page__zone {
    flex-direction: column;
    gap: 10px;
  }
  .doc-page__zone-chip {
    align-self: flex-start;
  }
  .doc-page__rates li {
    flex-direction: column;
    gap: 3px;
  }
}
/* ============================================================
   Вакансия: шапка с условиями и две колонки требований.
   ============================================================ */
.doc-page__vacancy {
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.doc-page__vacancy-head {
  padding: 24px 26px 22px;
  border-bottom: 1px solid var(--line);
}
.doc-page__vacancy-head h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}
.doc-page__vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.doc-page__vacancy-meta li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--col-primary-50);
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 700;
}
.doc-page__vacancy-meta .icon {
  width: 15px;
  height: 15px;
}
.doc-page__vacancy-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.doc-page__vacancy-cols > div {
  padding: 22px 26px;
}
.doc-page__vacancy-cols > div + div {
  border-left: 1px solid var(--line);
}
.doc-page__vacancy-cols strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.doc-page__vacancy-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.doc-page__vacancy-foot > div {
  padding: 20px 26px;
}
.doc-page__vacancy-foot > div + div {
  border-left: 1px solid var(--line);
}
.doc-page__vacancy-foot dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
}
.doc-page__vacancy-foot dd {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .doc-page__vacancy-cols,
  .doc-page__vacancy-foot {
    grid-template-columns: minmax(0, 1fr);
  }
  .doc-page__vacancy-cols > div + div,
  .doc-page__vacancy-foot > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .doc-page__vacancy-head,
  .doc-page__vacancy-cols > div,
  .doc-page__vacancy-foot > div {
    padding-inline: 20px;
  }
}
/* ============================================================
   @cms Корзина: список позиций, итог заказа, пустое состояние.
   ============================================================ */
.basket {
  padding: 18px 0 40px;
}
.basket__title {
  margin: 6px 0 22px;
  font-size: 30px;
}
.basket__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.basket__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
/* Позиция */
.basket-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto auto 32px;
  grid-template-areas: "media info price qty sum remove";
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.basket-item__media {
  grid-area: media;
  display: block;
  width: 88px;
  height: 88px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.basket-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.basket-item__info {
  grid-area: info;
  min-width: 0;
}
.basket-item__code {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  margin-bottom: 2px;
}
.basket-item__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.basket-item__name:hover {
  color: var(--primary);
}
.basket-item__cat {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  color: var(--muted);
}
.basket-item__price {
  grid-area: price;
  text-align: right;
  white-space: nowrap;
}
.basket-item__price del {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.basket-item__price strong {
  font-size: 14px;
}
.basket-item .qty {
  grid-area: qty;
}
.basket-item .qty button {
  width: 34px;
  height: 40px;
  font-size: 18px;
}
.basket-item .qty input {
  width: 40px;
  height: 40px;
  font-size: 14px;
}
.basket-item__sum {
  grid-area: sum;
  min-width: 96px;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.basket-item__remove {
  grid-area: remove;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--col-slate-400, #94a3b8);
  cursor: pointer;
  border-radius: 6px;
}
.basket-item__remove:hover {
  color: var(--col-red);
  background: var(--col-red-50);
}
.basket-item__remove .icon {
  width: 16px;
  height: 16px;
}
/* Итог */
.basket-summary {
  position: sticky;
  top: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.basket-summary__title {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}
.basket-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--col-slate-700);
}
.basket-summary__row--save {
  color: var(--col-green-600);
  font-weight: 600;
}
.basket-summary__row--muted {
  color: var(--muted);
  font-size: 12.5px;
}
/* Количество меняется прямо в корзине — цифры не должны прыгать. */
.basket-summary__row span:last-child,
.basket-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.basket-summary__total b {
  font-size: 24px;
  font-weight: 800;
}
.basket-cert {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: var(--col-primary-50);
  font-size: 12.5px;
  color: var(--col-slate-700);
  line-height: 1.4;
}
.basket-cert .icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.basket-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
/* Видимая подпись занимает всю строку над полем и кнопкой. */
.basket-promo__label {
  flex: 0 0 100%;
  color: var(--muted);
  font-size: 12.5px;
}
.basket-promo input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}
/* Фокус поля промокода — общий из theme.less. */
.basket-promo .btn {
  flex-shrink: 0;
}
.basket-summary__checkout {
  width: 100%;
  height: 48px;
  font-size: 15px;
}
.basket-summary__continue {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 500;
}
/* Пустая корзина */
.basket-empty {
  text-align: center;
  padding: 64px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.basket-empty__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
}
.basket-empty__icon .icon {
  width: 34px;
  height: 34px;
}
.basket-empty strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}
.basket-empty p {
  margin: 0 0 18px;
  color: var(--muted);
}
/* Адаптив */
@media (max-width: 900px) {
  .basket__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .basket-summary {
    position: static;
  }
}
@media (max-width: 680px) {
  /* iOS Safari зумит страницу при фокусе на поле меньше 16px. */
  .basket-promo input,
  .quantity_input {
    font-size: 16px;
  }
  .basket-item {
    position: relative;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    grid-template-areas: "media info   remove" "media qty    sum";
    gap: 12px;
    padding: 14px;
  }
  .basket-item__media {
    width: 64px;
    height: 64px;
  }
  .basket-item__price {
    display: none;
  }
  .basket-item .qty button {
    width: 30px;
  }
  .basket-item .qty input {
    width: 34px;
  }
  .basket-item__sum {
    min-width: 0;
    align-self: center;
  }
  .basket-item__remove {
    align-self: start;
  }
}
/* ============================================================
   @cms Оформление заказа: шаги (получатель/доставка/оплата) + липкий итог.
   ============================================================ */
.checkout {
  padding: 18px 0 40px;
}
.checkout__title {
  margin: 6px 0 22px;
  font-size: 30px;
}
.checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.checkout__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
/* Шаг */
.co-step {
  padding: 22px 24px;
  border: 1px solid var(--line);
  /* Внутренняя карточка варианта — 10px, отступ 22px: внешний радиус берём
     больше внутреннего, иначе вложенный блок выглядит подпёртым. */
  border-radius: 16px;
  background: var(--surface);
}
.co-step__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.co-step__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.co-step__head h2 {
  margin: 0;
  font-size: 17px;
}
/* Физлицо / Юрлицо */
.co-recipient {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.co-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
.co-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.co-toggle.is-selected {
  border-color: var(--primary);
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 600;
}
/* Поля */
.co-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.co-legal {
  margin-top: 12px;
}
.co-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* Подпись поля: раньше .co-field был <label> с вложенным <span>. Теперь это
   контейнер с настоящим <label for>, поэтому целимся и в него. */
.co-field > label,
.co-field span {
  font-size: 12.5px;
  color: var(--muted);
}
.co-field input,
.co-field textarea {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  background: var(--surface);
}
.co-field textarea {
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}
/* Фокус текстовых полей задан один раз в theme.less: локальное правило с
   большей специфичностью перебивало его и возвращало неконтрастную рамку. */
.co-address {
  margin-top: 12px;
}
/* Радио-карточки способов */
.co-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.co-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.co-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Настоящий input скрыт прозрачностью и остаётся фокусируемым, поэтому кольцо
   фокуса переносим на видимый прокси. Цвет замерян: --col-primary-600 даёт
   3.53:1 к белому фону, светлые ступени палитры порог 3:1 не проходят. */
.co-option input:focus-visible + .co-option__radio {
  box-shadow: 0 0 0 2px var(--col-primary-600);
}
.co-option__radio {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--col-slate-300);
  border-radius: 50%;
  transition: border-color 0.15s;
}
.co-option__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.15s;
}
.co-option.is-selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, #fff);
}
.co-option.is-selected .co-option__radio {
  border-color: var(--primary);
}
.co-option.is-selected .co-option__radio::after {
  transform: scale(1);
}
.co-option__body {
  flex: 1;
  min-width: 0;
}
.co-option__body b {
  display: block;
  font-size: 14.5px;
}
.co-option__body small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
}
.co-option__price {
  font-weight: 700;
  white-space: nowrap;
  font-size: 14px;
}
.co-option__tag {
  color: var(--primary);
  flex-shrink: 0;
}
.co-option__tag .icon {
  width: 22px;
  height: 22px;
}
/* Итог */
.co-summary {
  position: sticky;
  top: 16px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.co-summary__title {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}
.co-summary__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow: auto;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.co-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.co-line__media {
  width: 44px;
  height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.co-line__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.co-line__info {
  min-width: 0;
}
.co-line__info b {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}
.co-line__info small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11.5px;
}
.co-line__sum {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.co-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.co-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--col-slate-700);
}
.co-summary__row--save {
  color: var(--col-green-600);
  font-weight: 600;
}
/* Суммы пересчитываются при смене доставки — фиксируем ширину цифр,
   иначе сводка дёргается на каждом пересчёте. */
.co-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.co-summary__total b {
  font-size: 22px;
  font-weight: 800;
}
.co-agree {
  display: flex;
  gap: 9px;
  margin: 14px 0;
  font-size: 12.5px;
  color: var(--col-slate-600);
  line-height: 1.45;
  cursor: pointer;
}
.co-agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.co-agree input:focus-visible + .co-agree__box {
  box-shadow: 0 0 0 2px var(--col-primary-600);
}
.co-agree__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--col-slate-300);
  border-radius: 5px;
  background: var(--surface);
  position: relative;
}
.co-agree input:checked + .co-agree__box {
  border-color: var(--primary);
  background: var(--primary);
}
.co-agree input:checked + .co-agree__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.co-summary__submit {
  width: 100%;
  height: 48px;
  font-size: 15px;
}
.co-summary__submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.co-summary__submit-hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  text-align: center;
}
.co-summary__back {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 500;
}
/* Успех (демо) */
.co-success {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 20px;
  text-align: center;
}
.co-success__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--col-green-50);
  color: var(--col-green-600);
}
.co-success__icon .icon {
  width: 34px;
  height: 34px;
}
.co-success h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.co-success p {
  margin: 0 0 20px;
  color: var(--muted);
}
/* ---------- «Заказ принят» ---------- */
.order-done {
  padding: 24px 0 44px;
}
.order-done__wrap {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 20px 0;
}
.order-done__icon {
  display: inline-grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--col-green-50);
  color: var(--col-green-600);
}
.order-done__icon .icon {
  width: 38px;
  height: 38px;
}
.order-done__title {
  margin: 0 0 10px;
  font-size: 28px;
}
.order-done__lead {
  margin: 0 0 6px;
  color: var(--col-slate-700);
  font-size: 16px;
  line-height: 1.5;
}
.order-done__demo {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12.5px;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  text-align: center;
}
.order-step {
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.order-step__ic {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--col-primary-200);
  color: var(--primary);
}
.order-step__ic .icon {
  width: 22px;
  height: 22px;
}
.order-step b {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
.order-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.order-done__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.order-done__actions .btn {
  height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
}
.order-done__help {
  color: var(--muted);
  font-size: 13.5px;
}
.order-done__help a {
  color: var(--link);
  font-weight: 600;
}
/* Адаптив */
@media (max-width: 900px) {
  .checkout__layout {
    grid-template-columns: 1fr;
  }
  .co-summary {
    position: static;
  }
}
@media (max-width: 680px) {
  .order-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  /* iOS Safari зумит страницу при фокусе на поле меньше 16px. */
  .co-field input,
  .co-field textarea {
    font-size: 16px;
  }
  .checkout__title {
    font-size: 23px;
  }
  .co-fields {
    grid-template-columns: 1fr;
  }
  .co-step {
    padding: 18px;
  }
}
/* ============================================================
   @cms Личный кабинет: боковое меню, обзор, заказы, профиль.
   ============================================================ */
.account {
  padding: 18px 0 40px;
}
.account__title {
  margin: 6px 0 22px;
  font-size: 30px;
}
.account__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
/* Боковое меню */
.account-nav {
  position: sticky;
  top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.account-nav__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.account-nav__avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
}
.account-nav__avatar .icon {
  width: 24px;
  height: 24px;
}
.account-nav__id {
  min-width: 0;
}
.account-nav__id b {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-nav__id small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm, 6px);
  color: var(--col-slate-700);
  font-size: 14px;
}
.account-nav__link .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.account-nav__link:hover {
  background: var(--col-slate-50);
  color: var(--text);
}
.account-nav__link.is-active {
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 600;
}
.account-nav__link.is-active .icon {
  color: var(--primary);
}
.account-nav__link--exit {
  margin-top: 6px;
  color: var(--muted);
}
.account-nav__logout {
  margin: 0;
}
.account-nav__logout .account-nav__link {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
/* Контент */
.account__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-hello {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.account-hello h2 {
  margin: 0 0 4px;
  font-size: 21px;
}
.account-hello p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.account-stat {
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
a.account-stat:hover {
  border-color: var(--col-primary-200);
}
.account-stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}
.account-stat span {
  color: var(--muted);
  font-size: 13px;
}
.account-block {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.account-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.account-block__head h3 {
  margin: 0;
  font-size: 16px;
}
.account-block__head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.account-block__head a {
  font-size: 13.5px;
  color: var(--link);
  font-weight: 500;
}
.account-block__save {
  margin-top: 16px;
}
.account-profile-email {
  max-width: 45%;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.account-form-grid__wide {
  grid-column: span 1;
}
.account-form-grid__full {
  grid-column: 1 / -1;
}
.account .form-group {
  min-width: 0;
}
.account .form-group > label:not(.form-check) {
  display: block;
  margin-bottom: 7px;
  color: var(--col-slate-700);
  font-size: 13px;
  font-weight: 700;
}
.account .form-control {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.account textarea.form-control {
  min-height: 108px;
  padding-block: 11px;
  resize: vertical;
}
.account select.form-control {
  appearance: auto;
}
.account .form-control:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(0, 113, 188, 0.12);
}
.account .text-danger {
  display: block;
  margin-top: 5px;
  color: var(--col-red);
  font-size: 12px;
}
.account .form-check {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.account-form-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.account-form-section > h3 {
  margin: 0 0 14px;
  font-size: 15px;
}
.account-form-actions {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.account-form-actions .btn {
  min-height: 44px;
}
.account .alert {
  padding: 13px 15px;
  border-radius: 6px;
}
.account .alert-danger {
  background: var(--col-red-50);
  color: var(--col-red);
}
.account .alert-success {
  background: var(--col-green-50);
  color: var(--col-green-600);
}
.account .system-auth-connections {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.account .system-auth-connections > h2 {
  margin: 0 0 5px;
  font-size: 16px;
}
.account .system-auth-connections > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.account .system-auth-connections-list {
  display: grid;
  gap: 10px;
}
.account .system-auth-connection {
  display: flex;
  min-width: 0;
  min-height: 52px;
  padding: 10px 12px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.account .system-auth-connection > div {
  min-width: 0;
  flex: 1;
}
.account .system-auth-connection strong,
.account .system-auth-connection small {
  display: block;
}
.account .system-auth-connection small {
  color: var(--muted);
  font-size: 12px;
}
.account .system-auth-provider-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.account .system-auth-linked {
  color: var(--col-green-600);
  font-size: 12px;
  font-weight: 700;
}
/* Статус заказа */
.order-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}
.order-status--new {
  background: var(--surface-soft);
  color: var(--primary);
}
.order-status--progress {
  background: color-mix(in srgb, var(--col-orange-600, #ea7d0b) 15%, #fff);
  color: var(--col-orange-600, #c2620a);
}
.order-status--done {
  background: var(--col-green-50);
  color: var(--col-green-600);
}
.order-status--cancel {
  background: var(--col-red-50);
  color: var(--col-red);
}
/* Список заказов / строка */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.order-row:hover {
  border-color: var(--col-primary-200);
  box-shadow: var(--shadow-md);
}
.order-row__main {
  min-width: 0;
}
.order-row__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.order-row__no {
  font-size: 14.5px;
  font-weight: 700;
}
.order-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  color: var(--muted);
  font-size: 13px;
}
.order-row__meta b {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.order-row__thumbs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-row__thumb {
  width: 40px;
  height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.order-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order-row__more {
  font-size: 12px;
  color: var(--muted);
}
.order-row__arrow {
  color: var(--col-slate-300);
}
.order-row__arrow .icon {
  width: 16px;
  height: 16px;
}
.order-row:hover .order-row__arrow {
  color: var(--primary);
}
/* Детали заказа */
.order-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.order-detail__head h1 {
  margin: 0;
  font-size: 24px;
}
.order-detail__date {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}
.order-track {
  display: flex;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.order-track__step {
  position: relative;
  flex: 1;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}
.order-track__step::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--col-slate-200);
}
.order-track__step:first-child::before {
  display: none;
}
.order-track__dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--col-slate-200);
}
.order-track__step.is-done::before {
  background: var(--primary);
}
.order-track__step.is-done .order-track__dot {
  background: var(--primary);
}
.order-track__step.is-done .order-track__label {
  color: var(--text);
}
.order-track__step.is-current .order-track__dot {
  box-shadow: 0 0 0 4px var(--surface-soft);
}
.order-cancel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--col-red-50);
  color: var(--col-red);
  font-size: 14px;
}
.order-cancel .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.order-items {
  display: flex;
  flex-direction: column;
}
.order-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--col-slate-100);
}
.order-item:last-child {
  border-bottom: none;
}
.order-item__media {
  width: 52px;
  height: 52px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.order-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.order-item__name {
  font-size: 13.5px;
}
.order-item__qty {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}
.order-item__sum {
  font-weight: 700;
  white-space: nowrap;
}
.order-detail__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.order-detail__total b {
  font-size: 22px;
  font-weight: 800;
}
.order-detail__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.order-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.order-info-card > span .icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.order-info-card b {
  display: block;
  font-size: 14px;
}
.order-info-card small {
  color: var(--muted);
  font-size: 12.5px;
}
.order-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.order-detail__actions .btn {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
}
/* Адреса */
.address-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.address-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.address-card__ic {
  color: var(--primary);
}
.address-card__ic .icon {
  width: 22px;
  height: 22px;
}
.address-card b {
  display: block;
  font-size: 14px;
}
.address-card small {
  color: var(--muted);
  font-size: 12.5px;
}
.address-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px dashed var(--col-slate-300);
  border-radius: var(--radius);
  background: none;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
}
.address-add .icon {
  width: 18px;
  height: 18px;
}
.address-add:hover {
  border-color: var(--primary);
  background: var(--surface-soft);
}
/* Адаптив */
@media (max-width: 900px) {
  .account__layout {
    grid-template-columns: 1fr;
  }
  .account-nav {
    position: static;
  }
}
@media (max-width: 560px) {
  .account__title {
    font-size: 23px;
  }
  .account-form-grid {
    grid-template-columns: 1fr;
  }
  .account-form-grid__full {
    grid-column: auto;
  }
  .account-block {
    padding: 18px;
  }
  .account-hello {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-profile-email {
    display: none;
  }
  .account-stats {
    grid-template-columns: 1fr;
  }
  .order-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .order-row__thumbs {
    display: none;
  }
  .order-detail__info {
    grid-template-columns: 1fr;
  }
  .order-item {
    grid-template-columns: 52px minmax(0, 1fr);
    row-gap: 4px;
  }
  .order-item__qty,
  .order-item__sum {
    grid-column: 2;
  }
}
.footer {
  position: relative;
  overflow: hidden;
  padding-block: 0;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, #0d2748 0%, var(--col-primary-950) 42%, var(--col-primary) 100%);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142, 219, 255, 0.45), transparent);
}
.footer::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -150px;
  width: 420px;
  height: 420px;
  border: 68px solid rgba(88, 196, 255, 0.055);
  border-radius: 50%;
  pointer-events: none;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px minmax(640px, 1fr) 282px;
  gap: 20px;
  align-items: stretch;
  padding-block: 34px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.footer__brand {
  display: grid;
  align-content: start;
  gap: 16px;
}
.footer__logo {
  display: inline-flex;
  width: 212px;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}
.footer__contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.footer__phone-row {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.075));
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.footer__phone-row:hover {
  border-color: rgba(142, 219, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.09));
  transform: translateY(-2px);
}
.footer__phone-row span,
.footer__phone-row b {
  display: block;
  margin: 0;
}
.footer__phone-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.3;
}
.footer__phone-row a,
.footer__phone-row b {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}
.footer__phone-row a:hover {
  color: var(--col-primary-200);
}
.footer__socials {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.065));
}
.footer__socials > span {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__social-list a {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.footer__social-list a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.footer__social-list img,
.footer__social-list .icon {
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  fill: currentColor;
}
.footer__grid,
.footer__grid--extended {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-block: 30px;
}
.footer__column {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(3, 7, 18, 0.08);
}
.footer__column strong {
  position: relative;
  display: block;
  margin: 0 0 16px;
  padding-bottom: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}
.footer__column strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--col-primary-300);
}
.footer__column a {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer__column a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer__mini-contact {
  margin-top: 12px;
}
.footer__mini-contact span {
  display: block;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.25;
}
.footer__mini-contact a,
.footer__mail {
  color: #fff;
  font-weight: 800;
}
.footer__mail {
  margin-top: 16px !important;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.35;
}
.cookie-notice {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  color: var(--col-slate-800);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
}
.cookie-notice[hidden] {
  display: none;
}
.cookie-notice__content {
  padding-right: 20px;
}
.cookie-notice__content strong {
  display: block;
  color: var(--col-slate-950);
  font-size: 16px;
  line-height: 1.2;
}
.cookie-notice__content p {
  margin: 7px 0 0;
  color: var(--col-slate-600);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-notice__accept {
  align-self: end;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--col-primary);
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}
.cookie-notice__accept:hover {
  border-color: var(--col-primary-800);
  background: var(--col-primary-800);
}
.cookie-notice__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--col-slate-500);
  background: transparent;
  cursor: pointer;
  transition: color 0.16s ease, background-color 0.16s ease;
}
.cookie-notice__close:hover {
  color: var(--col-slate-950);
  background: var(--col-slate-100);
}
.cookie-notice__close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
@media (max-width: 1280px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__grid,
  .footer__grid--extended {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .footer__top {
    padding-block: 26px;
    text-align: center;
  }
  .footer__brand,
  .footer__socials {
    justify-items: center;
  }
  .footer__brand p {
    margin-inline: auto;
  }
  .footer__contact-panel {
    grid-template-columns: 1fr;
  }
  .footer__phone-row {
    min-height: 0;
  }
  .footer__grid,
  .footer__grid--extended {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .footer__column {
    padding: 17px;
    background: rgba(255, 255, 255, 0.045);
  }
  .footer__column strong::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__column a {
    width: auto;
    margin-inline: auto;
  }
  .footer__column a:hover {
    transform: none;
  }
  .footer__social-list {
    justify-content: center;
  }
  .footer__bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .cookie-notice {
    left: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cookie-notice__accept {
    width: 100%;
  }
}
/* ============================================================
 * Посадочная «Оплата электронным сертификатом СФР» (/sfr)
 * Цвета СФР: тёмный якорь var(--col-primary) → бирюза #0aa5cc.
 * ============================================================ */
/* Модификатор общего заголовка секции — по центру */
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head--center > div {
  max-width: 720px;
}
/* ---------- HERO направления ---------- */
.sfr-hero {
  padding-block: 20px 0;
}
.sfr-hero__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
  min-height: 340px;
  padding: 44px 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(150deg, var(--col-primary) 0%, #0a7391 54%, #0aa5cc 120%);
}
.sfr-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.sfr-hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.sfr-hero__flag .icon {
  width: 18px;
  height: 18px;
}
.sfr-hero__title {
  margin: 16px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}
/* перебиваем легаси `.hero p { color: muted }` не нужно — свой скоуп */
.sfr-hero__lead {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.sfr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.sfr-hero__actions .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.sfr-hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sfr-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.sfr-hero__stats li {
  display: flex;
  flex-direction: column;
}
.sfr-hero__stats strong {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}
.sfr-hero__stats span {
  margin-top: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.sfr-hero__watermark {
  position: relative;
  z-index: 0;
  display: grid;
  width: 100%;
  place-items: center;
  color: #fff;
  opacity: 0.18;
  pointer-events: none;
}
.sfr-hero__watermark .icon {
  width: 100%;
  max-width: 420px;
  height: 400px;
}
/* ---------- Что это + выгоды ---------- */
.sfr-intro,
.sfr-steps,
.sfr-buy {
  padding-block: var(--section-y);
}
.sfr-intro__text {
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.sfr-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sfr-benefit {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.sfr-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--col-primary-50);
}
.sfr-benefit__icon .icon {
  width: 24px;
  height: 24px;
}
.sfr-benefit strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--text);
}
.sfr-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
/* ---------- Шаги ---------- */
.sfr-steps {
  background: var(--surface-soft);
}
.sfr-steps__list {
  counter-reset: sfr-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sfr-step {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.sfr-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(150deg, var(--col-primary) 0%, #0a7391 54%, #0aa5cc 120%);
}
.sfr-step__title {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--text);
}
.sfr-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
/* ---------- Что купить ---------- */
.sfr-buy__text {
  max-width: 720px;
  margin: -8px 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.sfr-buy__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sfr-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sfr-cat:hover {
  transform: translateY(-3px);
  border-color: var(--col-primary-200);
  box-shadow: var(--shadow-md);
}
.sfr-cat__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 7px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(150deg, var(--col-primary) 0%, #0a7391 54%, #0aa5cc 120%);
}
.sfr-cat__badge .icon {
  width: 15px;
  height: 15px;
}
.sfr-cat__media {
  display: grid;
  place-items: center;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--col-slate-50);
}
.sfr-cat__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
.sfr-cat__body {
  flex: 1 1 auto;
  padding: 16px 18px;
}
.sfr-cat__body strong {
  display: block;
  font-size: 16px;
  color: var(--text);
}
.sfr-cat__body small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.sfr-cat__arrow {
  position: absolute;
  right: 14px;
  bottom: 16px;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.sfr-cat__arrow .icon {
  width: 18px;
  height: 18px;
}
.sfr-cat:hover .sfr-cat__arrow {
  transform: translateX(4px);
}
/* ---------- Документы + FAQ ---------- */
.sfr-support {
  padding-block: var(--section-y);
}
.sfr-support__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: start;
}
.sfr-docs h2,
.sfr-faq h2 {
  margin: 8px 0 20px;
  font-size: 26px;
}
.sfr-docs__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sfr-docs__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.sfr-docs__tick {
  flex: 0 0 auto;
  color: var(--primary);
}
.sfr-docs__tick .icon {
  width: 20px;
  height: 20px;
}
.sfr-docs__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  font-size: 14px;
  line-height: 1.5;
  color: var(--col-primary-800);
}
/* FAQ-аккордеон */
.sfr-faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
}
.sfr-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.sfr-faq__item summary::-webkit-details-marker {
  display: none;
}
.sfr-faq__chev {
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 0.2s ease;
}
.sfr-faq__chev .icon {
  width: 18px;
  height: 18px;
}
.sfr-faq__item[open] .sfr-faq__chev {
  transform: rotate(180deg);
}
.sfr-faq__item p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
/* ---------- CTA ---------- */
.sfr-cta {
  padding-block: 0 var(--section-y);
}
.sfr-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(150deg, var(--col-primary) 0%, #0a7391 54%, #0aa5cc 120%);
}
.sfr-cta__text h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
}
.sfr-cta__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.sfr-cta__action {
  display: flex;
  justify-content: flex-end;
}
.sfr-cta__action .btn {
  min-width: 220px;
}
.sfr-cta__form {
  min-width: 0;
}
.sfr-cta__form form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sfr-cta__form .form-group,
.sfr-cta__form .row,
.sfr-cta__form .col-12 {
  min-width: 0;
  margin: 0;
}
.sfr-cta__form .row {
  display: contents;
}
.sfr-cta__form .control-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}
.sfr-cta__form input:not([type="hidden"]):not([type="checkbox"]) {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  color: var(--text);
}
.sfr-cta__form input:not([type="hidden"]):not([type="checkbox"]):focus {
  outline: 3px solid rgba(255, 255, 255, 0.24);
}
.sfr-cta__form .row.mb-3 .col-12,
.sfr-cta__form .row:not(.mb-3) .col-12:first-child {
  grid-column: 1 / -1;
}
.sfr-cta__form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.4;
}
.sfr-cta__form .form-check-input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--col-primary-950);
}
.sfr-cta__form .form-check-label a {
  color: #fff;
  font-weight: 700;
}
.sfr-cta__form .btn {
  display: inline-flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--col-primary-950);
  border-radius: 6px;
  background: var(--col-primary-950);
  border-color: var(--col-primary-950);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition-property: background-color, border-color, transform;
  transition-duration: 0.15s;
}
.sfr-cta__form .btn:hover {
  border-color: var(--col-primary-900);
  background: var(--col-primary-900);
}
.sfr-cta__form .btn:active {
  transform: scale(0.96);
}
.sfr-cta__form [data-dismiss="modal"] {
  display: none;
}
.sfr-cta__form small {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}
/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .sfr-benefits,
  .sfr-steps__list,
  .sfr-buy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sfr-support__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 860px) {
  .sfr-hero__inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .sfr-hero__watermark {
    position: absolute;
    right: -60px;
    bottom: -46px;
    width: 320px;
    opacity: 0.08;
  }
  .sfr-cta__inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .sfr-cta__action {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .sfr-intro,
  .sfr-steps,
  .sfr-buy,
  .sfr-support {
    padding-block: var(--section-y-sm);
  }
  .sfr-benefits,
  .sfr-steps__list,
  .sfr-buy__grid {
    grid-template-columns: 1fr;
  }
  .sfr-cta__action .btn {
    width: 100%;
    min-width: 0;
  }
  .sfr-hero__stats {
    gap: 14px 24px;
  }
  .sfr-cta__form form {
    grid-template-columns: 1fr;
  }
  .sfr-cta__form .row.mb-3 .col-12,
  .sfr-cta__form .row:not(.mb-3) .col-12:first-child {
    grid-column: auto;
  }
}
/* ============================================================
 * Мастер «Подбор ТСР по ИПРА» (/podbor)
 * Аккордеон групп на нативных <details> — работает без JS.
 * ============================================================ */
.podbor-hero {
  padding-block: 24px 8px;
}
.podbor-hero__inner {
  max-width: 820px;
}
.podbor-hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--col-primary, #0a7391);
}
.podbor-hero__flag .icon {
  width: 18px;
  height: 18px;
}
.podbor-hero__title {
  margin: 12px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
}
.podbor-hero__lead {
  font-size: 18px;
  color: var(--col-text-muted, #55606e);
  max-width: 680px;
}
.podbor-intro {
  padding-block: 8px 4px;
}
.podbor-intro__p {
  margin: 0 0 10px;
  max-width: 760px;
  color: var(--col-text-muted, #55606e);
}
/* ---------- Мастер ---------- */
.podbor-wizard {
  padding-block: 20px 8px;
}
.podbor-wizard__title {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 18px;
}
.podbor-groups {
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.podbor-group {
  border: 1px solid var(--col-border, #e4e8ee);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.podbor-group[open] {
  border-color: var(--col-primary, #0a7391);
  box-shadow: 0 6px 24px rgba(10, 115, 145, 0.08);
}
.podbor-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 17px;
}
.podbor-group__head::-webkit-details-marker {
  display: none;
}
.podbor-group__name {
  flex: 1 1 auto;
}
.podbor-group__count {
  flex: 0 0 auto;
  min-width: 26px;
  height: 24px;
  padding: 0 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--col-primary-soft, #e6f4f8);
  color: var(--col-primary, #0a7391);
  font-size: 13px;
  font-weight: 700;
}
.podbor-group__chevron .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
  color: var(--col-text-muted, #55606e);
}
.podbor-group[open] .podbor-group__chevron .icon {
  transform: rotate(180deg);
}
/* ---------- Категории ---------- */
.podbor-cats {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px;
  display: grid;
  gap: 8px;
}
.podbor-cat__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: var(--col-bg-soft, #f6f8fa);
  transition: background 0.15s ease, transform 0.15s ease;
}
.podbor-cat__link:hover {
  background: var(--col-primary-soft, #e6f4f8);
  transform: translateX(2px);
}
.podbor-cat__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.podbor-cat__name {
  font-weight: 600;
}
.podbor-cat__note {
  font-size: 13px;
  color: var(--col-text-muted, #55606e);
}
.podbor-cat__code {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--col-primary, #0a7391);
  white-space: nowrap;
}
.podbor-cat__go .icon {
  width: 18px;
  height: 18px;
  color: var(--col-primary, #0a7391);
}
.podbor-empty {
  color: var(--col-text-muted, #55606e);
}
/* ---------- Консультация ---------- */
.podbor-help {
  padding-block: 28px 36px;
}
.podbor-help__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--col-primary-soft, #e6f4f8);
}
.podbor-help__title {
  margin: 0 0 6px;
  font-size: 22px;
}
.podbor-help__lead {
  margin: 0;
  color: var(--col-text-muted, #55606e);
  max-width: 560px;
}
@media (max-width: 640px) {
  .podbor-help__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============================================================
   @cms Тема-надстройка: единые токены, иконки, фокус, кнопки, карточки,
   бейджи. Импортируется последней — аккуратно перекрывает базовые стили.
   ============================================================ */
:root {
  /* Интерактивный синий (ярче navy) для ссылок/CTA */
  --link: var(--col-primary-700);
  /* #1371e2 */
  --link-hover: var(--col-primary-800);
  /* #175ab6 */
  --primary-hover: var(--col-primary-800);
  /* Семантика */
  --focus-ring: 0 0 0 3px rgba(49, 167, 255, 0.4);
  --success: var(--col-green-600);
  --danger: var(--col-red);
  --warning: var(--col-orange-600, #ea7d0b);
  --bg-subtle: var(--col-primary-50);
  /* #eef9ff */
  /* Строгий вид: декоративные тени отключены (оставлены только оверлеи и фокус). */
  --shadow: none;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
}
/* ---------- Иконки: единый монохром по currentColor ---------- */
/* stroke-иконки имеют fill="none" (атрибут перебивает это правило),
   белые «выемки» соц-иконок сохраняются (fill="#fff"). */
.icon {
  fill: currentColor;
}
/* ---------- Видимый фокус (доступность) ---------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}
/* Текстовые поля: тяжёлого кольца нет — фокус обозначает рамка (по просьбе).
   Но одной светлой рамки недостаточно: --col-primary-300 даёт 1.53:1 к белому
   полю при пороге 3:1. Оставляем «рамочный» язык, но берём измеренный тон и
   добавляем тонкий ореол, чтобы у индикатора была видимая площадь. */
:where( input:not([type="checkbox"]):not([type="radio"]), textarea, select):focus-visible {
  outline: none;
  border-color: var(--col-primary-800);
  box-shadow: 0 0 0 2px var(--col-primary-100);
}
/* Мышиный фокус остаётся спокойным: только рамка, без ореола. */
:where( input:not([type="checkbox"]):not([type="radio"]), textarea, select):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
/* ---------- Кнопки: ховеры без тяжёлых теней ---------- */
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--col-primary-300);
  color: var(--primary);
}
/* ---------- Текстовые CTA и ссылки — интерактивный синий ---------- */
.article-card__more,
.news-card__more,
.related-article,
.catalog-root-card__all,
.seo-text__content a,
.article__body a,
.product-longtext a {
  color: var(--link);
}
.article-card__more:hover,
.news-card__more:hover,
.catalog-root-card__all:hover,
.seo-text__content a:hover,
.article__body a:hover,
.product-longtext a:hover {
  color: var(--link-hover);
}
/* Ссылки перехода из секций главной выглядят одинаково независимо от того,
   находится рядом карусельная навигация или нет. */
.section-head > a,
.section-head__actions > a {
  color: var(--link);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}
.section-head > a:hover,
.section-head__actions > a:hover {
  color: var(--link-hover);
  text-decoration: none;
}
.news-card h3 a:hover {
  text-decoration: none;
}
@media (max-width: 720px) {
  .section-head > a,
  .section-head__actions > a {
    font-size: 13px;
  }
}
/* ---------- Карточки: единый hover ---------- */
.article-card:hover,
.catalog-root-card:hover,
.related-article:hover,
.category-card:hover {
  border-color: var(--col-primary-200);
  box-shadow: var(--shadow-md);
}
/* ---------- Бейджи товара ---------- */
.product-badge--video,
.product-badge--registry,
.product-badge--tsr,
.product-badge--gift,
.product-badge--delivery {
  box-shadow: var(--shadow-sm);
}
/* ---------- Ритм фонов секций (чередование белый / светлый тинт) ---------- */
/* Главная: тинтуем «направления» и обе новостные ленты — между белыми
   каруселями и тёмными блоками (proof / about) появляется ритм. */
.quick-cats,
.news--company,
.news--industry {
  background: var(--col-slate-50);
  padding-block: var(--section-y);
}
/* убираем «двойной» отступ: у news был только padding-top */
.news--company,
.news--industry {
  padding-top: var(--section-y);
}
/* Внутренние страницы: закрывающая строка преимуществ на лёгком тинте */
.feature-strip {
  background: var(--surface);
  margin-top: 8px;
  padding-block: 40px;
}
/* ============================================================
   Строгий вид: убираем декоративные тени и «подскоки» на ховере
   у кнопок, карточек и блоков. Оверлеи (меню/тосты/куки),
   inset-рамки и кольцо фокуса не трогаем.
   ============================================================ */
/* Кнопки — плоские, без тени и подъёма */
.btn:hover,
.catalog-btn,
.catalog-btn:hover,
.catalog-trigger:hover,
.btn--cart:hover {
  box-shadow: none;
}
.btn:hover,
.catalog-trigger:hover,
.btn--cart:hover {
  transform: none;
}
/* Карточки и блоки — без теней */
.product-card,
.product-card:hover,
.news-card,
.news-card:hover,
.category-card,
.category-card:hover,
.article-card,
.article-card:hover,
.catalog-root-card,
.catalog-root-card:hover,
.related-article,
.related-article:hover,
.order-row:hover,
.sfr-cat,
.sfr-cat:hover,
.delivery-card,
.hero-slider__shell,
.hero-slider__track,
.catalog-section-banner,
.catalog-mobile__item,
.catalog-mobile__item[open],
.catalog-mobile__links a,
.podbor-group[open],
.product-tabs__tab.is-active,
.brand:hover .brand__mark {
  box-shadow: none;
}
/* Без «прыжка» вверх на ховере */
.product-card:hover,
.news-card:hover,
.category-card:hover,
.article-card:hover,
.catalog-root-card:hover,
.related-article:hover,
.order-row:hover,
.sfr-cat:hover,
.brand:hover .brand__mark {
  transform: none;
}
/* Отклик на ховер без тени — аккуратная рамка */
.article-card:hover,
.catalog-root-card:hover,
.related-article:hover,
.category-card:hover,
.delivery-card:hover {
  border-color: var(--col-primary-200);
}
/* entry-nav: оставить только inset-рамку, убрать падающую тень */
.entry-nav a:hover {
  box-shadow: none;
}
.entry-nav a,
.entry-nav a:hover,
.entry-nav a.is-active {
  border: 0;
  border-radius: 0;
  background: transparent;
}
