: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;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.container {
  width: min(68%, 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;
}
.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 {
  max-width: 720px;
  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: 16px;
}
.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(76%, 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: 18px;
  height: 10px;
  background: linear-gradient(currentColor, currentColor) left 50% / 14px 2px no-repeat, linear-gradient(45deg, transparent 45%, currentColor 46% 58%, transparent 59%) right 50% / 8px 8px 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,
h1 {
  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,
  h1 {
    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 {
  max-width: 520px;
  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 {
    max-width: 100%;
    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(--col-slate);
  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;
}
@font-face {
  font-display: swap;
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/museosanscyrl-100.woff2") format("woff2"), url("../fonts/museosanscyrl-100.woff") format("woff"), url("../fonts/museosanscyrl-100.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/museosanscyrl-300.woff2") format("woff2"), url("../fonts/museosanscyrl-300.woff") format("woff"), url("../fonts/museosanscyrl-300.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/museosanscyrl-500.woff2") format("woff2"), url("../fonts/museosanscyrl-500.woff") format("woff"), url("../fonts/museosanscyrl-500.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/museosanscyrl-700.woff2") format("woff2"), url("../fonts/museosanscyrl-700.woff") format("woff"), url("../fonts/museosanscyrl-700.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/museosanscyrl-900.woff2") format("woff2"), url("../fonts/museosanscyrl-900.woff") format("woff"), url("../fonts/museosanscyrl-900.ttf") format("truetype");
}
body {
  font-family: "Museo-Sans", "Segoe UI", Arial, sans-serif;
}
:root {
  --container-max: 1440px;
  --container-pad: 24px;
  --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;
}
.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: 92px;
  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: 54px;
  padding-inline: 18px 20px;
  border-color: var(--col-primary);
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary);
  box-shadow: 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: 54px;
  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 58px;
  width: 58px;
  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-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-suggestion {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  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-suggestion:hover,
.search-suggestion:focus-visible,
.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__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__all[hidden] {
  display: none;
}
.search-suggestions__all:hover {
  color: #fff;
  background: var(--col-primary-800);
}
.search-suggestions__all span {
  font-size: 18px;
  line-height: 1;
}
.header-action,
.cart {
  height: 54px;
  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: 54px;
}
.header-action--search {
  display: none;
}
.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 {
  min-width: 142px;
  gap: 10px;
  padding-inline: 10px 14px;
  color: var(--col-primary);
}
.cart__icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--col-primary);
}
.cart__icon svg {
  width: 20px;
  height: 20px;
}
.cart__count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--col-red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.cart__body {
  min-width: 0;
}
.cart strong {
  color: var(--col-slate-950);
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}
.cart small {
  margin-top: 3px;
  color: var(--col-slate-500);
  font-size: 12px;
  line-height: 1.1;
  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,
  .cart {
    height: 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 {
    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 .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;
    height: 42px;
    place-items: center;
    padding: 0;
    line-height: 0;
  }
  .catalog-btn {
    order: 5;
    flex: 0 0 42px;
    min-width: 0;
    width: 42px;
    padding: 0;
  }
  .catalog-btn > span:not(.catalog-btn__bars) {
    display: none;
  }
  .catalog-btn__icon {
    margin: 0;
  }
  .header-action,
  .cart {
    order: 1;
    flex: 0 0 42px;
  }
  .header-action {
    order: 2;
    width: 42px;
  }
  .header-action--search {
    display: inline-grid;
  }
  .cart {
    order: 4;
    min-width: 42px;
    width: 42px;
  }
  .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,
  .catalog-btn__icon {
    width: 20px;
    height: 20px;
    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;
  }
}
.hero-slider {
  padding-block: 20px 34px;
}
.hero-slider__shell {
  max-width: var(--container-max);
}
.hero-slider__track {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 5;
  min-height: 0;
  border-radius: 8px;
  background: var(--col-slate-100);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.hero-slider__track.is-dragging {
  cursor: grabbing;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.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 {
  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: 18px;
  background: var(--primary);
}
.hero__actions {
  margin-top: 26px;
}
@media (max-width: 900px) {
  .hero-slider__track {
    aspect-ratio: 16 / 7;
  }
}
.catalog-panel__layout {
  grid-template-columns: 390px minmax(0, 1fr);
  min-height: 520px;
}
.catalog-mobile {
  display: none;
}
.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 {
  max-height: 520px;
  overflow: auto;
  scrollbar-width: thin;
}
.catalog-menu__item {
  position: relative;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 66px;
  height: auto !important;
  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: 12px;
  bottom: 12px;
  left: 6px;
  width: 3px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0;
  transform: scaleY(0.45);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.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;
  transform: translateX(0) scaleY(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__icon img,
.catalog-menu__icon .icon {
  display: block;
  width: 23px;
  height: 23px;
  color: currentColor;
  fill: currentColor;
}
.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 {
  background: transparent;
  border-color: transparent !important;
  box-shadow: none;
}
.catalog-menu__item--tcr:hover,
.catalog-menu__item--tcr.is-active {
  color: #0b9fc7;
}
.catalog-menu__item--sale:hover,
.catalog-menu__item--sale.is-active {
  color: var(--col-red);
}
.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(--col-slate);
}
.catalog-content {
  min-height: 520px;
}
.catalog-content__pane {
  min-height: 320px;
}
.catalog-content__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: start;
}
.catalog-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(58px, auto);
  gap: 10px;
  align-items: start;
  align-content: start;
}
.catalog-link-grid a {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 38px 12px 14px;
  border: 1px solid var(--col-slate-100);
  border-radius: 8px;
  background: var(--col-slate-50);
  font-size: 14px;
  line-height: 1.28;
  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-section-banner {
  position: relative;
  display: flex;
  min-height: 270px;
  height: 270px;
  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;
}
.catalog-content__promo {
  margin-top: auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--col-primary-100);
  color: var(--col-primary-950);
  background: var(--col-primary-50);
}
.catalog-content__promo > div {
  min-width: 0;
}
.catalog-content__promo strong {
  font-size: 16px;
  line-height: 1.2;
}
.catalog-content__promo p {
  margin: 2px 0 0;
  color: var(--col-slate-600);
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-content__promo .btn {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--col-primary);
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .catalog-panel__layout {
    grid-template-columns: 340px minmax(0, 1fr);
  }
  .catalog-content__body {
    grid-template-columns: minmax(0, 1fr) 230px;
  }
}
@media (max-width: 900px) {
  .catalog-panel__layout,
  .catalog-content {
    min-height: 0;
  }
  .catalog-menu {
    max-height: 360px;
  }
  .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: 760px) {
  .catalog-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 45;
    max-height: calc(100vh - 16px);
    padding: 10px 0 18px;
    overflow: auto;
    background: #fff;
  }
  .container.catalog-panel__layout {
    display: none;
  }
  .container.catalog-mobile {
    display: grid;
    gap: 8px;
    width: calc(100% - 24px) !important;
    max-width: none;
    padding: 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 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 {
    background: #0ebde8;
  }
  .catalog-mobile__item--sale .catalog-mobile__icon {
    background: var(--col-red);
  }
  .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(--col-slate);
    font-size: 12px;
    line-height: 1.2;
  }
  .catalog-mobile__links {
    display: grid;
    gap: 7px;
    padding: 10px 12px 14px 64px;
    background: linear-gradient(180deg, var(--col-primary-50), #fff 42%);
  }
  .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::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);
  }
}
.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;
  cursor: default;
  touch-action: pan-y;
}
.product-carousel.is-dragging {
  cursor: default;
}
.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;
}
.product-track::-webkit-scrollbar {
  display: none;
}
.product-track .product-card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 18px;
  margin-top: 18px;
}
.carousel-dots button {
  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: 28px;
  background: var(--primary);
}
.carousel-controls button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--col-slate-200);
  border-radius: 8px;
  color: var(--col-primary);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
.carousel-controls button:hover {
  border-color: var(--col-primary-200);
  background: var(--col-primary-50);
  box-shadow: 0 12px 24px rgba(21, 67, 123, 0.1);
}
.carousel-controls button img,
.carousel-controls button .icon {
  display: block;
  width: 10px;
  height: 18px;
  color: var(--col-primary);
  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;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: radial-gradient(circle at 50% 42%, rgba(49, 167, 255, 0.1), transparent 42%), linear-gradient(180deg, #fbfdff 0%, #eef3f7 100%);
  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-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 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(21, 67, 123, 0.22);
}
.product-image-dots span.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--primary);
}
.product-badges {
  position: absolute;
  z-index: 5;
  top: 10px;
  display: grid;
  gap: 6px;
}
.product-badges--left {
  left: 10px;
}
.product-badges--right {
  right: 10px;
}
.product-badge {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  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: var(--col-orange-600);
}
.product-badge--tsr {
  background: #0ebde8;
}
.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;
}
.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;
  padding: 0 10px;
  border: 1px solid var(--col-primary-100);
  border-radius: 7px;
  color: var(--col-primary-800);
  background: linear-gradient(180deg, #fff, var(--col-primary-50));
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.availability {
  position: relative;
  margin: 0;
  padding-left: 13px;
  color: var(--col-green-700);
  font-size: 11px;
  font-weight: 800;
  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%);
}
.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.25;
}
.product-card__certificate .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #0ebde8;
}
.product-card h3 {
  display: -webkit-box;
  min-height: 50px;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--col-slate-950);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.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: 900;
  line-height: 0.92;
  white-space: nowrap;
}
.price-row strong small {
  margin-bottom: 2px;
  color: var(--col-slate-700);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.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 {
  width: 20px;
  height: 20px;
  color: currentColor;
  fill: currentColor;
}
.product-card .btn--cart:not(.btn--details) {
  min-height: 46px;
  gap: 8px;
  color: #fff;
  border-color: var(--col-primary);
  background: var(--col-primary);
  box-shadow: 0 12px 24px rgba(21, 67, 123, 0.2);
  font-weight: 900;
}
.product-card .btn--cart:not(.btn--details):hover {
  color: #fff;
  border-color: var(--col-primary-950);
  background: var(--col-primary-800);
  box-shadow: 0 16px 30px rgba(20, 48, 87, 0.24);
}
.product-card .btn--details {
  min-height: 46px;
  color: var(--col-primary);
  border-color: var(--col-primary-100);
  background: #fff;
  font-weight: 900;
}
.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: 27px;
    height: 27px;
    border-radius: 6px;
  }
  .product-badge img,
  .product-badge .icon {
    width: 17px;
    height: 17px;
  }
  .product-card__body {
    padding: 10px;
  }
  .product-card__meta {
    display: block;
    min-height: 0;
    margin-bottom: 8px;
  }
  .product-card__code {
    height: 21px;
    padding-inline: 7px;
    font-size: 10px;
  }
  .availability {
    margin-top: 6px;
    font-size: 10px;
    text-align: left;
  }
  .product-card__certificate {
    min-height: 34px;
    gap: 6px;
    margin-bottom: 9px;
    padding: 6px 7px;
    font-size: 9px;
    line-height: 1.2;
  }
  .product-card__certificate .icon {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
  .product-card h3 {
    min-height: 52px;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    -webkit-line-clamp: 3;
  }
  .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 del {
    display: inline;
    margin: 0;
    font-size: 10px;
  }
  .price-row__discount {
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
  }
  .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: 260px;
    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);
  background: url("/assets/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);
}
.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 .section-head {
    gap: 12px;
  }
  .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-card,
  .news-card--compact {
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: start;
  }
  .news-card__body {
    padding: 16px;
    min-height: 230px;
  }
  .news-card h3 {
    font-size: 17px;
  }
}
.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%;
  }
}
