@font-face {
  font-family: "Actay";
  src: url("../fonts/actay/Actay-Regular.woff2") format("woff2"),
       url("../fonts/actay/Actay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Actay";
  src: url("../fonts/actay/Actay-RegularItalic.woff2") format("woff2"),
       url("../fonts/actay/Actay-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Actay Wide";
  src: url("../fonts/actay/ActayWide-Bold.woff2") format("woff2"),
       url("../fonts/actay/ActayWide-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Actay Wide";
  src: url("../fonts/actay/ActayWide-BoldItalic.woff2") format("woff2"),
       url("../fonts/actay/ActayWide-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --green-100: #f2f4f2;
  --green-200: #e4eae6;
  --green-300: #bfcbc3;
  --green-400: #e3fbd0;
  --green-500: #c6f6a2;
  --green-600: #96d6a4;
  --green-700: #00904d;
  --white-100: #ffffff;
  --white-200: #f8f9f8;
  --grey-100: #ebedeb;
  --grey-200: #dbdbdb;
  --grey-300: #7c7c7c;
  --black: #222f30;
  --blue-100: #d0d6fb;
  --red-100: #cd0700;
  --container: 1376px;
  --gap: 16px;
  --font-body: "Actay", "Arial", sans-serif;
  --font-heading: "Actay Wide", "Arial", sans-serif;
  --shadow: 0 4px 40px rgba(34, 47, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white-100);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  font-kerning: normal;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.logo__text,
.button--primary,
.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  max-width: 524px;
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.icon--s {
  width: 16px;
  height: 16px;
}

.icon--l {
  width: 32px;
  height: 32px;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button:active,
.icon-button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--green-700);
  color: var(--white-100);
}

.button--primary:hover {
  background: #007d43;
}

.button--accent {
  min-height: 36px;
  background: var(--green-500);
  color: var(--black);
}

.button--accent:hover {
  background: var(--green-600);
}

.button--muted {
  min-height: 40px;
  background: var(--grey-200);
  color: var(--grey-300);
}

.button--ghost {
  background: var(--white-200);
  color: var(--black);
}

.button--ghost:hover {
  background: var(--green-400);
}

.button--full {
  width: 100%;
}

.button[disabled],
.icon-button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  color: var(--black);
}

.icon-button--primary {
  background: var(--green-700);
  color: var(--white-100);
}

#products .slider-controls .icon-button:not(.icon-button--primary) {
  border-color: #cbd7d2;
  background: var(--white-100);
  color: var(--green-700);
  box-shadow: 0 2px 8px rgb(34 47 48 / 8%);
}

#products .slider-controls .icon-button:not(.icon-button--primary):hover {
  border-color: var(--green-700);
  background: var(--green-400);
}

[data-scroll-prev="brands-list"],
[data-scroll-prev="documents-list"],
[data-scroll-prev="trust-list"] {
  background: var(--grey-200);
}

[data-scroll-prev="brands-list"]:hover,
[data-scroll-prev="documents-list"]:hover,
[data-scroll-prev="trust-list"]:hover {
  background: #cbd7d2;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white-100);
}

.header-top {
  height: 80px;
  background: var(--black);
  color: var(--white-100);
}

.header-top__inner,
.header-main__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 142px;
}

.logo--image {
  width: 142px;
  height: 48px;
  min-width: 142px;
}

.logo--image img {
  width: 142px;
  height: 48px;
  object-fit: contain;
}

.logo__mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--green-700);
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}

.logo__text {
  font-size: 24px;
  line-height: 1;
}

.city-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  padding: 0;
  background: transparent;
  color: inherit;
}

.trust-mark {
  display: inline-flex;
  width: 81px;
  height: 24px;
  color: var(--white-100);
}

.trust-mark img {
  width: 81px;
  height: 24px;
  object-fit: contain;
}

.header-top__contacts {
  display: flex;
  align-items: center;
  gap: 64px;
}

.header-top__contacts a:first-child {
  font-family: var(--font-body);
  font-weight: 400;
}

.header-top__contacts a,
.mobile-menu-contacts__phone {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.header-top__contacts a:hover,
.header-top__contacts a:focus-visible {
  color: var(--green-600);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.mobile-menu-contacts__phone:hover,
.mobile-menu-contacts__phone:focus-visible {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.messengers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.messengers a {
  color: currentColor;
}

.messengers img {
  width: 24px;
  height: 24px;
}

.header-top .messengers a,
.mobile-menu-contacts__messengers a,
.site-footer .messengers a {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.header-top .messengers a:hover,
.header-top .messengers a:focus-visible,
.site-footer .messengers a:hover,
.site-footer .messengers a:focus-visible {
  background: rgb(150 214 164 / 18%);
  transform: translateY(-2px);
}

.mobile-menu-contacts__messengers a:hover,
.mobile-menu-contacts__messengers a:focus-visible {
  background: var(--green-400);
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--green-700);
  color: var(--white-100);
}

.mobile-city-button,
.mobile-menu-contacts,
.mobile-bottom-nav {
  display: none;
}

.header-main {
  height: 72px;
  background: var(--white-100);
}

.button--catalog {
  position: relative;
  width: 133px;
  flex: 0 0 auto;
  gap: 8px;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 400;
}

.button--catalog .icon,
.footer-catalog .icon {
  position: static;
  transform: none;
}

.button--catalog span,
.footer-catalog span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  width: auto;
  text-align: left;
  transform: translateY(2px);
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 311px;
  height: 40px;
  padding: 0 0 0 16px;
  background: var(--green-100);
  color: var(--grey-300);
}

.search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--black);
  outline: 0;
}

.search input::placeholder {
  color: var(--grey-300);
  opacity: 1;
}

.search__submit {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  background: var(--green-200);
  color: var(--grey-300);
}

.search__submit:hover {
  color: var(--black);
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  display: none;
  width: 540px;
  max-height: min(70vh, 680px);
  overflow-y: auto;
  padding: 12px;
  background: var(--white-100);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  color: var(--black);
  z-index: 60;
}

.search.is-open .search-dropdown {
  display: grid;
  gap: 24px;
}

.search-dropdown__section {
  display: grid;
  gap: 16px;
}

.search-dropdown__title {
  display: flex;
  min-height: 31px;
  align-items: center;
  border-bottom: 1px solid var(--grey-100);
  padding: 8px 8px 12px;
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.search-dropdown__list {
  display: grid;
  gap: 4px;
}

.search-dropdown__products {
  gap: 16px;
}

.search-dropdown__item {
  display: flex;
  min-width: 0;
  min-height: 24px;
  align-items: center;
  gap: 16px;
  padding: 4px 8px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.search-dropdown__item:hover,
.search-dropdown__item:focus-visible,
.search-dropdown__history-remove:hover,
.search-dropdown__history-remove:focus-visible {
  background: var(--green-100);
}

.search-dropdown__item-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-dropdown__item-count {
  margin-left: auto;
  color: var(--grey-300);
  font-size: 12px;
  white-space: nowrap;
}

.search-dropdown__item--history {
  color: var(--text-grey, #b0b0b0);
}

.search-dropdown__history-remove {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--grey-300);
}

.search-dropdown__history-remove::before,
.search-dropdown__history-remove::after,
.search-panel__icon-button--close::before,
.search-panel__icon-button--close::after {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.search-dropdown__history-remove::before,
.search-panel__icon-button--close::before {
  transform: rotate(45deg);
}

.search-dropdown__history-remove::after,
.search-panel__icon-button--close::after {
  transform: rotate(-45deg);
}

.search-dropdown__product {
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0;
}

.search-dropdown__product img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.search-dropdown__product-body {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.search-dropdown__product-title {
  overflow: hidden;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-dropdown__product-meta {
  display: flex;
  min-height: 16px;
  align-items: center;
  gap: 12px;
}

.search-dropdown__product-details {
  min-width: 0;
  overflow: hidden;
  color: var(--grey-300);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-dropdown__product-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.search-dropdown__product-old-price {
  color: var(--grey-300);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: line-through;
}

.search-dropdown__product-discount {
  padding: 4px;
  background: var(--blue-100);
  color: var(--black);
  font-size: 12px;
  line-height: 1.2;
}

.search-dropdown__status {
  margin: 0;
  padding: 16px 8px;
  color: var(--grey-300);
  font-size: 14px;
}

.search-dropdown__all {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--grey-100);
  color: var(--green-700);
  font-size: 14px;
  font-weight: 600;
}

.search-dropdown__all:hover,
.search-dropdown__all:focus-visible {
  background: var(--green-100);
  color: var(--black);
}

.search-panel {
  display: contents;
}

.search-panel__field {
  display: contents;
}

.search-panel__head,
.search-panel__close {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  margin-right: auto;
  white-space: nowrap;
}

.main-nav a {
  flex: 0 1 auto;
  min-width: 0;
  width: max-content;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav a:hover {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .button--muted {
  width: 81px;
  padding-right: 16px;
  padding-left: 16px;
}

.icon-button--cart {
  position: relative;
  background: var(--green-700);
  color: var(--white-100);
}

.icon-button--cart img {
  width: 24px;
  height: 24px;
}

.icon-button--cart span {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  background: var(--green-500);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
}

@media (min-width: 1200px) {
  .header-top__inner,
  .header-main__inner {
    position: relative;
    display: block;
  }

  .header-top .logo--image {
    position: absolute;
    top: 16px;
    left: 0;
  }

  .city-button {
    position: absolute;
    top: 28px;
    left: 181px;
    margin-right: 0;
    font-size: 16px;
  }

  .trust-mark {
    position: absolute;
    top: 28px;
    left: 644px;
  }

  .header-top__contacts {
    display: contents;
  }

  .header-top__contacts a:first-child {
    position: absolute;
    top: 31px;
    left: 888px;
    font-size: 16px;
    line-height: 1.2;
  }

  .header-top__contacts a:last-child {
    position: absolute;
    top: 28px;
    left: 1197px;
    width: 179px;
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .header-top .messengers {
    position: absolute;
    top: 28px;
    left: 1052px;
    gap: 16px;
  }

  .button--catalog {
    position: absolute;
    top: 16px;
    left: 0;
    height: 40px;
    min-height: 40px;
  }

  .search {
    position: absolute;
    top: 16px;
    left: 145px;
    width: 311px;
    flex-basis: auto;
  }

  .main-nav {
    position: absolute;
    top: 30px;
    left: 502px;
    gap: 32px;
    margin-right: 0;
  }

  .header-actions {
    position: absolute;
    top: 16px;
    right: 0;
  }
}

.hero {
  min-height: 456px;
  padding: 64px 0 55px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 331px 1fr;
  gap: 36px;
}

.catalog-menu {
  display: grid;
  align-content: start;
  gap: 6px;
}

.catalog-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 10px 16px;
  background: var(--green-400);
  color: var(--black);
}

.catalog-menu a:nth-child(3),
.catalog-menu a:nth-child(6) {
  min-height: 50px;
}

.catalog-menu a:hover {
  background: var(--green-500);
}

.hero-slider {
  position: relative;
  z-index: 1;
  overflow: visible;
  min-width: 0;
}

.hero-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.35s ease;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: 16px;
  width: 100%;
  min-width: 100%;
  min-height: 359px;
  padding: 24px;
  background: var(--white-200);
}

.hero-slide__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 16px;
}

.hero-slide__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-slide__title--primary {
  max-width: 524px;
  font-size: 42px;
  text-transform: none;
}

.hero-slide .button--primary {
  font-family: var(--font-body);
  font-weight: 400;
}

.hero-slide p {
  max-width: 524px;
  font-size: 20px;
}

.hero-slide img {
  width: 100%;
  align-self: start;
  object-fit: contain;
}

.slider-arrow {
  position: absolute;
  top: 176px;
  z-index: 5;
  width: 40px;
  height: 40px;
  background: var(--green-700);
  color: var(--white-100);
}

.hero-slider .slider-arrow--prev {
  left: -20px;
  background: var(--grey-100);
  color: var(--black);
}

.hero-slider .slider-arrow--next {
  right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: var(--grey-200);
}

.slider-dots button.is-active {
  background: var(--green-700);
}

.section {
  padding: 60px 0;
}

.compact-section {
  padding: 60px 0;
}

.section--tinted {
  background: var(--green-100);
}

.about__intro {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 680px);
  gap: var(--gap);
  margin-bottom: 64px;
  align-items: start;
}

.about__intro h1,
.about__intro h2 {
  max-width: 680px;
}

.about__intro h1 {
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.about__intro h1 .about__brand,
.about__intro h2 .about__brand {
  color: var(--green-700);
}

.about__intro p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: normal;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.benefit-card {
  position: relative;
  display: flex;
  height: 177px;
  min-height: 177px;
  flex-direction: column;
  padding: 16px 16px 24px;
  background: var(--green-100);
}

.contact-item {
  min-height: 177px;
  padding: 16px;
  background: var(--white-200);
}

.benefit-card__head {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.benefit-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--green-700);
  color: var(--white-100);
  flex: 0 0 48px;
}

.benefit-card__icon img {
  width: 32px;
  height: 32px;
}

.benefit-card__title,
.benefit-card h3 {
  display: block;
  margin: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-transform: none;
}

.about .benefit-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.contact-item__title {
  margin-bottom: 18px;
}

.benefit-card p {
  position: absolute;
  top: 104px;
  right: 16px;
  left: 16px;
  max-width: 300px;
  font-size: 16px;
  line-height: 1.1;
  overflow-wrap: normal;
}

.benefit-card p,
.contact-item p,
.seo-section p,
.news-card p {
  color: var(--black);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.section-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-head--single {
  align-items: center;
  margin-bottom: 40px;
}

.section-head--single > div:first-child {
  display: flex;
}

.hit-products__title {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 24px;
}

@media (min-width: 1200px) {
  #products .section-head > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  #products .slider-controls {
    width: 104px;
    justify-content: space-between;
  }
}

.cards-row,
.logo-row,
.document-row {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cards-row::-webkit-scrollbar,
.logo-row::-webkit-scrollbar,
.document-row::-webkit-scrollbar {
  display: none;
}

.product-card {
  display: flex;
  width: 332px;
  flex: 0 0 332px;
  min-height: 519px;
  flex-direction: column;
  gap: 16px;
  padding: 12px 12px 24px;
  scroll-snap-align: start;
  background: var(--white-100);
}

.product-card__image {
  position: relative;
  display: grid;
  min-height: 207px;
  place-items: center;
  background: var(--white-100);
}

.product-card__image img {
  width: 308px;
  height: 207px;
  object-fit: contain;
}

.tag-row {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 4px;
  z-index: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--green-400);
  font-size: 12px;
}

.tag--promo {
  background: var(--green-600);
}

.tag--new {
  background: var(--green-500);
}

.tag--recommended {
  background: var(--green-400);
}

.tag--hit {
  background: var(--green-700);
  color: var(--white);
}

.product-card__brand {
  color: var(--grey-300);
  font-family: var(--font-heading);
  font-weight: 700;
}

.product-card__title,
.product-card h3 {
  display: block;
  min-height: 48px;
  color: inherit;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.product-card__heading {
  margin: 0;
}

.product-card__title:hover,
.product-card h3 a:hover {
  color: var(--green-700);
}

.product-card__price {
  margin-top: auto;
  font-size: 24px;
}

.product-card__price del {
  color: var(--grey-300);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}

.product-card__price mark {
  padding: 2px 8px;
  background: var(--blue-100);
  font-family: var(--font-body);
  font-size: 12px;
}

#products .product-card .button {
  width: 100%;
}

.button[data-modal-open="quick-buy"] {
  color: #222f30;
}

.logo-row {
  flex-wrap: nowrap;
}

.logo-card {
  display: grid;
  width: 216px;
  flex: 0 0 216px;
  height: 160px;
  place-items: center;
  scroll-snap-align: start;
  background: var(--white-100);
}

.logo-card:hover {
  background: var(--white-200);
}

.logo-card img {
  width: auto;
  max-width: min(168px, calc(100% - 32px));
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.category-grid {
  display: grid;
  grid-template-areas:
    "electro switches switches opto"
    "electro wire components opto"
    "promo promo promo promo";
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 216px 222px 224px;
  gap: var(--gap);
  margin-top: 50px;
}

.category-card,
.category-promo {
  position: relative;
  overflow: hidden;
  color: var(--black);
}

.category-card {
  display: flex;
  min-height: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding: 24px;
  background: var(--green-100);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.category-card img {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.category-card span,
.category-card__arrow {
  position: relative;
  z-index: 1;
}

.category-card span {
  max-width: calc(100% - 68px);
}

.category-card__arrow {
  width: 32px;
  height: 32px;
}

.category-card--electro {
  grid-area: electro;
}

.category-card--switches {
  grid-area: switches;
}

.category-card--wire {
  grid-area: wire;
}

.category-card--components {
  grid-area: components;
}

.category-card--opto {
  grid-area: opto;
}

.category-card--tall img {
  width: 200px;
  height: 200px;
}

.category-card--wide span {
  max-width: min(564px, calc(100% - 68px));
}

.category-promo {
  grid-area: promo;
  min-height: 224px;
  padding: 24px;
  background: var(--green-200);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.category-promo__icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--green-700);
  color: var(--white-100);
}

.category-promo__icon .icon,
.category-promo__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.category-promo__title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-size: 24px;
  text-transform: uppercase;
}

.category-promo__media,
.category-promo__image {
  position: absolute;
  inset: 0;
}

.category-promo__media {
  z-index: 1;
  pointer-events: none;
}

.category-promo__image {
  width: auto;
  height: auto;
  object-fit: contain;
}

.category-promo__image--main {
  top: 12.5%;
  left: 49.6%;
  width: 20%;
}

.category-promo__image--ic {
  top: 10.7%;
  left: 69.8%;
  width: 14.4%;
}

.category-promo__image--capacitor {
  top: 17.8%;
  right: 1.7%;
  left: auto;
  width: 14.9%;
}

.seo-section {
  padding-top: 4px;
}

.seo-grid {
  display: grid;
  gap: 64px;
}

.seo-grid > * {
  min-width: 0;
}

.seo-lead {
  max-width: 1029px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.125;
}

.seo-lead span {
  color: var(--green-700);
}

.seo-lead :where(p, ul, ol, blockquote) {
  margin: 0;
}

.seo-lead :where(p, ul, ol, blockquote) + :where(p, ul, ol, blockquote) {
  margin-top: 16px;
}

.seo-lead :where(ul, ol) {
  padding-left: 1.2em;
}

.seo-lead a {
  color: inherit;
}

.seo-content {
  display: grid;
  grid-template-columns: 448px minmax(0, 679px);
  gap: clamp(16px, calc(100% - 1127px), 249px);
  align-items: start;
}

.seo-logos {
  display: grid;
  grid-template-columns: repeat(2, 216px);
  gap: var(--gap);
}

.seo-logo {
  display: grid;
  width: 216px;
  height: 270px;
  place-items: center;
  background: var(--green-100);
}

.seo-logo--brand {
  background: var(--green-200);
}

.seo-logo--brand img {
  width: 106px;
}

.seo-logo--mark img {
  width: 120px;
}

.seo-copy {
  display: grid;
  gap: 40px;
}

.seo-copy__intro {
  max-width: 679px;
  font-size: 20px;
  line-height: 1.075;
}

.seo-copy__bottom {
  display: grid;
  grid-template-columns: minmax(0, 447px) 216px;
  gap: var(--gap);
  align-items: end;
  min-height: 144px;
}

.seo-copy__small {
  font-size: 16px;
  line-height: 1;
}

.seo-more {
  width: 216px;
  height: 36px;
  min-height: 36px;
  justify-content: space-between;
  padding: 10px 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-decoration-line: none;
}

.seo-content a.seo-more,
.seo-content a.seo-more:hover,
.seo-content a.seo-more:focus-visible {
  color: var(--black);
  text-decoration: none;
  text-decoration-line: none;
}

.seo-more .icon {
  display: none;
}

.seo-more::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.6 5.5 20.1 12l-6.5 6.5-1.4-1.4 4.1-4.1H4v-2h12.3L12.2 6.9l1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.6 5.5 20.1 12l-6.5 6.5-1.4-1.4 4.1-4.1H4v-2h12.3L12.2 6.9l1.4-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.documents-section {
  padding-top: 40px;
}

.document-row {
  flex-wrap: nowrap;
}

.document-card {
  display: grid;
  width: 332px;
  flex: 0 0 332px;
  height: 424px;
  place-items: center;
  scroll-snap-align: start;
  background: var(--green-100);
}

.document-card img {
  width: 246px;
  height: 344px;
  object-fit: contain;
}

.cta-section {
  padding: 0;
  background-color: var(--green-200);
  background-image: url("../images/home/cta-background.webp");
  background-position: center bottom;
  background-size: min(1440px, 100%) auto;
  background-repeat: no-repeat;
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  min-height: 488px;
  align-items: start;
  gap: var(--gap);
  padding: 60px 0 56px;
}

.cta-card__copy {
  display: grid;
  max-width: 680px;
  gap: 40px;
}

.cta-card__copy h2 {
  font-size: 42px;
  line-height: 0.7;
  text-transform: none;
}

.cta-card__copy p {
  max-width: 680px;
  font-size: 20px;
  line-height: 0.95;
}

.cta-card__copy span {
  color: var(--green-700);
}

.cta-card__copy span + span {
  margin-left: 0.25em;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white-100);
}

.cta-section .lead-form {
  display: block;
  width: 100%;
  min-height: 372px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.cta-section .lead-form label:not(.checkbox) {
  gap: 16px;
}

.cta-section .lead-form label:not(.checkbox) + label:not(.checkbox) {
  margin-top: 30px;
}

.lead-form span {
  font-size: 14px;
}

.cta-section .lead-form label:not(.checkbox) > span {
  font-size: 16px;
  line-height: 0.7;
}

.lead-form input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--grey-200);
  padding: 0 16px;
  background: var(--white-100);
  color: var(--black);
}

.lead-form input::placeholder {
  color: var(--grey-300);
  opacity: 1;
}

.cta-section .lead-form input:not([type="checkbox"]) {
  border-color: var(--green-300);
  font-size: 20px;
}

.lead-form input:focus {
  border-color: var(--green-700);
  outline: 0;
}

.cta-section .lead-form .button {
  width: 110px;
  height: 40px;
  min-height: 40px;
  margin-top: 40px;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.checkbox {
  display: flex !important;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 8px !important;
  color: var(--grey-300);
}

.cta-section .checkbox {
  margin-top: 16px;
  line-height: 1.2;
}

.checkbox input {
  width: 20px;
  height: 20px;
  padding: 0;
  accent-color: var(--green-700);
}

.cta-section .checkbox input {
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  margin: 0;
  appearance: none;
  background: var(--green-400);
}

.cta-section .checkbox input:checked::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.cta-section .checkbox span {
  color: var(--grey-300);
  font-size: 12px;
}

.form-status {
  min-height: 18px;
  color: var(--green-700);
}

.form-status.is-error {
  color: var(--red-100);
}

.form-status.is-success {
  color: var(--green-700);
}

.form-status.is-muted {
  color: var(--grey-300);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--red-100) !important;
  box-shadow: 0 0 0 2px rgba(205, 7, 0, 0.12);
}

.checkbox input[aria-invalid="true"],
.radio-option input[aria-invalid="true"] {
  outline: 2px solid var(--red-100);
  outline-offset: 3px;
  box-shadow: none;
}

.cta-section .form-status {
  min-height: 0;
  margin-top: 8px;
  font-size: 12px;
}

.cta-section .form-status:empty {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 448px));
  justify-content: center;
  gap: var(--gap);
}

.blog-section .section-head--single {
  margin-bottom: 40px;
}

.blog-section .section-head .button--accent {
  width: 404px;
  height: 36px;
  min-height: 36px;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.blog-section__mobile-cta {
  display: none;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 557px;
  flex-direction: column;
  border: 10px solid var(--green-100);
  overflow: hidden;
  background: var(--green-100);
}

.news-card > img {
  width: 100%;
  aspect-ratio: 448 / 299;
  height: auto;
  margin: 0;
  object-fit: cover;
  background: var(--white-100);
}

.news-card__body {
  display: flex;
  min-width: 0;
  min-height: 248px;
  flex-direction: column;
  padding: 32px 24px 24px;
  background: var(--green-100);
}

.news-card__title,
.news-card h3 {
  display: -webkit-box;
  max-height: 48px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.news-card__heading {
  margin: 0;
  font: inherit;
  text-transform: none;
}

.blog-section .news-card__title,
.blog-section .news-card h3 {
  font-family: var(--font-heading);
}

.news-card__title:hover,
.news-card h3 a:hover {
  color: var(--green-700);
}

.news-card p {
  display: -webkit-box;
  margin-top: 16px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: 16px;
  line-height: 1.2;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-top: auto;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
}

.news-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-card__meta .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.news-card__meta time {
  margin-left: auto;
}

.blog-page {
  padding-top: 40px;
}

.blog-listing {
  margin-bottom: 120px;
}

.blog-page__breadcrumbs {
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.2;
}

.blog-page__content {
  display: grid;
  gap: 40px;
}

.blog-page h1 {
  max-width: none;
  font-size: 42px;
}

.blog-page__grid {
  grid-template-columns: repeat(3, minmax(0, 448px));
  justify-content: center;
  align-items: stretch;
}

.blog-page .news-card {
  width: 100%;
  height: 100%;
  min-height: 557px;
}

.blog-page .news-card > img {
  width: 100%;
  margin: 0;
}

.blog-page .news-card__body {
  flex: 1 1 auto;
}

.blog-page .news-card__meta .icon {
  width: 28px;
  height: 28px;
}

.blog-page .news-card__title,
.blog-page .news-card h3 a {
  display: -webkit-box;
  font-family: var(--font-heading);
  font-weight: 700;
}

.blog-page .news-card__title,
.blog-page .news-card h3 {
  min-height: 48px;
}

.blog-page .news-card__meta {
  margin-top: auto;
  padding-top: 32px;
}

.blog-empty {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--green-100);
}

.blog-empty h2 {
  text-transform: none;
}

.blog-empty[hidden] {
  display: none;
}

.blog-pagination {
  margin-top: 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: var(--gap);
}

.contacts-content {
  display: grid;
  align-content: start;
}

.contacts-content h2 {
  margin-bottom: 96px;
}

.contact-list {
  display: grid;
}

.contact-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 126px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--grey-200);
  background: transparent;
}

.contact-item .benefit-card__icon {
  margin-bottom: 0;
}

.contact-item .benefit-card__icon .icon {
  width: 24px;
  height: 24px;
}

.contact-item .benefit-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-item__head {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.contact-item__title {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.contact-item p {
  margin-top: 0;
  font-size: 20px;
  line-height: 1.2;
}

.contact-item a {
  display: inline;
}

.manager-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 100px;
  padding: 16px;
  background: var(--green-100);
}

.manager-card > img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.manager-card p {
  margin-bottom: 12px;
  color: var(--grey-300);
  font-size: 14px;
}

.manager-card__name {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}

.messengers--dark {
  color: var(--black);
}

.manager-card .messengers {
  gap: 8px;
}

.map-block {
  min-height: 722px;
  overflow: hidden;
  background: var(--green-200);
}

.map-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 722px;
  place-items: center;
  align-content: center;
  padding: 0;
  background: var(--green-200);
  color: var(--grey-300);
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--font-body);
}

.map-placeholder span {
  display: block;
}

.map-block iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 722px;
  border: 0;
}

.qa-grid {
  display: grid;
  grid-template-columns: 450px minmax(0, 680px);
  justify-content: space-between;
  gap: var(--gap);
  align-items: start;
}

.qa-aside {
  display: flex;
  min-height: 492px;
  flex-direction: column;
  justify-content: space-between;
}

.qa-aside > h2 {
  margin: 0;
}

.qa-card {
  min-height: 180px;
  padding: 24px;
  background: var(--green-100);
}

.qa-card__title {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.qa-card p {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  margin-top: 40px;
}

.qa-grid > .faq-list {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-item__heading {
  margin: 0;
  font: inherit;
  text-transform: none;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.faq-item button .icon {
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  padding: 0;
  background: transparent;
  color: var(--green-700);
  transition: color 0.2s ease;
}

.faq-item.is-open button .icon {
  background: transparent;
  color: var(--black);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item__answer > p {
  overflow: hidden;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.site-footer {
  padding: 52px 0 44px;
  background: var(--black);
  color: var(--white-100);
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-logo {
  display: block;
  width: 215px;
  max-width: 100%;
  height: auto;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand__contacts {
  display: grid;
  gap: 16px;
}

.footer-brand__contacts a,
.footer-grid nav a {
  color: var(--white-100);
}

.footer-brand__contacts a,
.footer-grid nav a,
.footer-bottom a {
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-brand__contacts a:hover,
.footer-brand__contacts a:focus-visible,
.footer-grid nav a:hover,
.footer-grid nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--green-600);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.footer-logo {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.footer-catalog {
  position: relative;
  display: inline-flex;
  width: 118px;
  min-height: 40px;
  padding: 0 12px;
  gap: 8px;
  align-self: start;
  justify-content: center;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.footer-catalog .icon {
  width: 24px;
  height: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 540px) 250px 316px;
  justify-content: space-between;
  gap: 40px;
}

.footer-grid > div,
.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-grid nav {
  gap: 20px;
  color: var(--white-100);
}

.footer-contact__desktop {
  display: grid;
  gap: 24px;
}

.footer-contact__mobile {
  display: none;
}

.footer-contact__item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact__item p {
  margin-top: 8px;
  color: var(--white-100);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-contact__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.footer-contact__mobile {
  gap: 24px;
  color: var(--white-100);
}

.footer-contact__group {
  display: grid;
  gap: 12px;
}

.footer-contact__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact__badge {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  padding: 4px;
  background: var(--green-700);
  color: var(--white-100);
}

.footer-contact__badge .icon {
  width: 24px;
  height: 24px;
}

.footer-contact__badge img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-contact__title {
  display: block;
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-contact__group > p {
  color: var(--white-100);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.footer-contact__messengers {
  gap: 16px;
}

.footer-contact__messengers .icon {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 540px) 250px 316px;
  justify-content: space-between;
  gap: 40px;
  margin-top: 72px;
  color: var(--grey-200);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--grey-200);
}

.footer-bottom__legal,
.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-bottom__legal {
  width: 100%;
}

.footer-bottom__links {
  grid-column: 2 / 4;
  width: 100%;
  justify-content: space-between;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 47, 48, 0.4);
}

.modal__dialog {
  position: relative;
  width: min(480px, calc(100% - 20px));
  margin: 0;
  max-height: calc(100dvh - 40px);
  overflow: auto;
  background: var(--white-100);
  box-shadow: var(--shadow);
}

.modal__dialog--document {
  width: min(680px, calc(100% - 20px));
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  width: 40px;
  min-height: 40px;
  padding: 0;
  background: var(--green-100);
  color: var(--black);
}

.modal__content {
  padding: 32px;
}

.modal__content h2 {
  max-width: none;
  margin-bottom: 16px;
  text-transform: none;
}

.modal__lead {
  margin: 0 0 24px;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.modal__dialog--form-result {
  width: min(420px, calc(100% - 20px));
}

.form-result {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 16px 0 4px;
  text-align: center;
}

.form-result__icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
}

.form-result--error .form-result__icon {
  background: rgba(230, 64, 64, 0.12);
  color: var(--red-100);
}

.form-result__icon::before {
  content: "";
  width: 28px;
  height: 16px;
  border-bottom: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(-45deg) translate(2px, -2px);
}

.form-result--error .form-result__icon::before,
.form-result--error .form-result__icon::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  background: currentColor;
  border: 0;
  transform: rotate(45deg);
}

.form-result--error .form-result__icon::after {
  transform: rotate(-45deg);
}

.form-result h2 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
  text-transform: none;
}

.form-result p {
  max-width: 300px;
  margin: 0;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.25;
}

.form-result__button {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
}

.modal__dialog--document .modal__content {
  padding: 0;
}

.modal__dialog--document .modal__close {
  background: var(--white-100);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modal__content img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.lead-form--modal {
  padding: 0;
  background: transparent;
  gap: 16px;
}

.lead-form--modal label:not(.checkbox) {
  gap: 8px;
}

.lead-form--modal label:not(.checkbox) > span {
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.lead-form--modal input:not([type="checkbox"]) {
  border: 1px solid var(--green-300);
  height: 46px;
  padding: 0 16px;
  font-size: 16px;
}

.lead-form--modal .button {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.lead-form--modal .checkbox {
  align-items: flex-start;
  margin-top: 0;
}

.lead-form--modal .checkbox input {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  margin: 0;
  appearance: none;
  background: var(--green-400);
}

.lead-form--modal .checkbox input:checked::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.lead-form--modal .checkbox span {
  color: var(--grey-300);
  font-size: 12px;
  line-height: 1.2;
}

.lead-form--modal .form-status {
  min-height: 18px;
  font-size: 12px;
}

.modal-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--green-100);
}

.modal-product__image-wrap {
  display: grid;
  width: 96px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--white-100);
  overflow: hidden;
}

.modal-product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-product__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.modal-product__brand {
  color: var(--grey-300);
  font-size: 12px;
  line-height: 1.2;
}

.modal-product__title {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}

.modal-product__price {
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.modal-product__quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.modal-product__quantity strong {
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
}

.modal__dialog--cart {
  width: min(912px, calc(100% - 20px));
  margin: 0;
}

.modal__dialog--cart .modal__content {
  padding: 16px;
}

.modal__dialog--cart .modal__close {
  background: var(--white-200);
  color: var(--grey-500);
}

.cart-modal {
  display: grid;
  gap: 24px;
}

.cart-modal__title {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: none;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.cart-modal__title span {
  color: var(--green-700);
}

.cart-modal__table {
  display: grid;
  gap: 0;
}

.cart-modal__head,
.cart-modal__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px 112px;
  align-items: center;
  gap: 16px;
}

.cart-modal__head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white-200);
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.cart-modal__row {
  min-height: 74px;
  padding: 16px 0;
  border-bottom: 1px solid var(--white-200);
}

.cart-modal__item {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-right: 16px;
}

.cart-modal__brand {
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.cart-modal__name {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.2;
}

.cart-modal__qty {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cart-modal__qty-button {
  display: grid;
  width: 40px;
  min-height: 40px;
  place-items: center;
  border: 0;
  background: var(--white-200);
  color: var(--grey-500);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
}

.cart-modal__qty-value {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.cart-modal__price {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.cart-modal__total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
}

.cart-modal__total strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

.lead-form--cart {
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
}

.cart-modal__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cart-modal__field {
  display: grid;
  gap: 8px;
}

.cart-modal__field span {
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.cart-modal__field em {
  color: var(--red-100);
  font-style: normal;
}

.cart-modal__field input {
  height: 46px;
  border: 1px solid var(--green-300);
  padding: 0 16px;
  font-size: 16px;
}

.cart-modal__field--phone {
  grid-column: 1 / 2;
}

.cart-modal__submit {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.cart-modal--empty {
  min-height: 292px;
}

.cart-modal__empty {
  display: grid;
  min-height: 224px;
  place-items: center;
  gap: 12px;
  padding: 64px 16px 24px;
  text-align: center;
}

.cart-modal__empty-title {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
}

.cart-modal__empty-text {
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.cart-modal__empty-button {
  min-width: 212px;
}

.cookie-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  display: flex;
  width: min(552px, calc(100vw - 32px));
  align-items: center;
  gap: 10px;
  padding: 20px 16px 16px;
  background: var(--white-100);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  color: var(--black);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent.is-hiding {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.cookie-consent__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.cookie-consent__text {
  width: 490px;
  max-width: 100%;
  margin: 0;
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.cookie-consent__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__accept {
  min-width: 96px;
  min-height: 40px;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.cookie-consent__close {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--green-200);
  color: var(--black);
}

.cookie-consent__close::before,
.cookie-consent__close::after {
  position: absolute;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
}

.cookie-consent__close::before {
  transform: rotate(45deg);
}

.cookie-consent__close::after {
  transform: rotate(-45deg);
}

body.menu-open .cookie-consent {
  display: none;
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 10px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
  }

  .error-body .cookie-consent,
  .privacy-body .cookie-consent,
  .cookie-body .cookie-consent {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .cookie-consent__text {
    padding-right: 48px;
  }

  .cookie-consent__accept {
    min-width: 96px;
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .site-header {
    min-height: 112px;
  }

  .header-top {
    height: 56px;
  }

  .header-top__contacts,
  .messengers:not(.messengers--dark),
  .trust-mark,
  .city-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .header-main {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 56px;
    overflow: hidden;
    transition: height 0.25s ease;
  }

  .site-header.is-open .header-main {
    height: 744px;
    box-shadow: var(--shadow);
  }

  .header-main__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 10px 0 32px;
  }

  .button--catalog,
  .search,
  .main-nav,
  .header-actions,
  .header-actions .button {
    width: 100%;
  }

  .search {
    flex-basis: auto;
  }

  .main-nav {
    display: grid;
    gap: 20px;
    white-space: normal;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .hero__grid,
  .about__intro,
  .seo-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .seo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seo-copy {
    max-width: 679px;
  }

  .catalog-menu {
    display: flex;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-menu a {
    flex: 0 0 min(331px, 85vw);
  }

  .catalog-menu::-webkit-scrollbar {
    display: none;
  }

  .hero-slide {
    grid-template-columns: 1fr 320px;
  }

  .benefits-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "electro switches"
      "wire components"
      "opto opto"
      "promo promo";
  }

  .category-card {
    min-height: 222px;
  }

  .category-card--tall {
    min-height: 320px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: clamp(200px, 24vw, 260px);
    min-height: auto;
  }

  .cta-section {
    background-position: center top;
  }

  .qa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .qa-aside {
    min-height: auto;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom__links {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 1439px) and (min-width: 1200px) {
  .trust-mark {
    left: 560px;
  }

  .header-top__contacts a:first-child {
    right: 333px;
    left: auto;
  }

  .header-top__contacts a:last-child {
    right: 0;
    left: auto;
  }

  .header-top .messengers {
    right: 196px;
    left: auto;
  }

  .header-main__inner {
    display: flex;
    gap: 12px;
  }

  .button--catalog,
  .search,
  .main-nav,
  .header-actions {
    position: static;
    inset: auto;
  }

  .button--catalog {
    width: 133px;
  }

  .search {
    width: clamp(220px, 19vw, 280px);
    flex: 0 1 clamp(220px, 19vw, 280px);
  }

  .main-nav {
    flex: 1 1 auto;
    gap: 20px;
    justify-content: flex-end;
    font-size: clamp(13px, 1.05vw, 15px);
  }

  .main-nav a {
    width: auto;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .category-grid {
    grid-template-areas:
      "electro switches switches opto"
      "electro wire components opto"
      "promo promo promo promo";
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 216px 222px 224px;
  }
}

@media (max-width: 1279px) and (min-width: 1200px) {
  .trust-mark {
    left: 500px;
  }

  .header-top__contacts a:first-child {
    display: none;
  }

  .search {
    width: 220px;
    flex-basis: 220px;
  }

  .main-nav {
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  .hit-products__title {
    font-size: 18px;
  }

  h3 {
    font-size: 18px;
  }

  .container {
    width: min(calc(100% - 20px), 340px);
  }

  .site-header {
    min-height: 112px;
  }

  .header-top {
    height: 56px;
  }

  .header-top__contacts,
  .messengers:not(.messengers--dark),
  .trust-mark,
  .city-button {
    display: none;
  }

  .logo {
    min-width: 0;
  }

  .logo__text {
    font-size: 20px;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .header-main {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 56px;
    overflow: hidden;
    transition: height 0.25s ease;
  }

  .site-header.is-open .header-main {
    height: 744px;
    box-shadow: var(--shadow);
  }

  .header-main__inner {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 10px 0 32px;
  }

  .button--catalog,
  .search,
  .main-nav,
  .header-actions,
  .header-actions .button {
    width: 100%;
  }

  .search {
    flex-basis: auto;
  }

  .main-nav {
    display: grid;
    white-space: normal;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .hero {
    padding: 32px 0 48px;
  }

  .hero__grid {
    gap: 24px;
  }

  .catalog-menu {
    grid-auto-columns: 276px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 16px;
  }

  .hero-slide__content {
    padding: 0;
  }

  .hero-slide p {
    font-size: 16px;
  }

  .hero-slide img {
    width: 100%;
    max-height: 220px;
  }

  .slider-arrow {
    display: none;
  }

  .section,
  .compact-section {
    padding: 48px 0;
  }

  .about__intro,
  .benefits-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about__intro {
    margin-bottom: 32px;
  }

  .benefit-card__head {
    gap: 12px;
  }

  .benefit-card {
    height: 148px;
    min-height: 150px;
  }

  .section-head,
  .section-head--single {
    align-items: stretch;
    flex-direction: column;
  }

  .section-head > div:first-child {
    gap: 20px;
  }

  .documents-section .section-head--single {
    gap: 24px;
  }

  .documents-section h2 {
    letter-spacing: -0.02em;
  }

  .cards-row {
    grid-auto-columns: 322px;
  }

  .product-card {
    width: min(322px, 100%);
    flex-basis: min(322px, 100%);
    min-height: 478px;
  }

  .product-card__image img {
    width: 100%;
  }

  .logo-row {
    grid-auto-columns: 216px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "electro"
      "switches"
      "wire"
      "components"
      "opto"
      "promo";
    grid-template-rows: auto;
    grid-auto-rows: auto;
    margin-top: 32px;
  }

  .category-card,
  .category-card--tall,
  .category-card--wide {
    min-height: 224px;
  }

  .category-card--tall img {
    width: 140px;
    height: 140px;
  }

  .category-promo {
    min-height: 109px;
  }

  .seo-section {
    padding-top: 16px;
  }

  .seo-lead {
    font-size: 20px;
  }

  .seo-content,
  .seo-copy {
    gap: 32px;
  }

  .seo-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-logo {
    width: 100%;
    height: 120px;
  }

  .seo-logo--brand img {
    width: 118px;
  }

  .seo-logo--mark img {
    width: 110px;
  }

  .seo-copy__intro {
    font-size: 18px;
  }

  .seo-lead,
  .seo-copy__intro,
  .seo-copy__small {
    line-height: 1.2;
  }

  .seo-copy__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .seo-more {
    width: 100%;
  }

  .document-row {
    flex-wrap: nowrap;
  }

  .document-card {
    width: 280px;
    flex-basis: 280px;
    height: 384px;
  }

  .cta-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0;
  }

  .cta-section .lead-form {
    padding: 32px 24px;
  }

  .news-card {
    min-height: auto;
  }

  .news-card > img {
    height: 210px;
  }

  .news-card__body {
    min-height: auto;
  }

  .news-card__meta {
    gap: 24px;
    font-size: 16px;
    line-height: 1.2;
  }

  .news-card__meta span {
    gap: 6px;
  }

  .news-card__meta .icon {
    width: 24px;
    height: 24px;
  }

  .contacts-content h2 {
    margin-bottom: 32px;
  }

  .manager-card {
    margin-top: 32px;
  }

  .map-block,
  .map-placeholder,
  .map-block iframe {
    min-height: 340px;
    height: 340px;
  }

  .qa-grid {
    gap: 32px;
  }

  .faq-list {
    margin-top: 24px;
  }

  .faq-item button {
    min-height: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid > .footer-brand {
    gap: 32px;
  }

  .footer-brand__contacts {
    gap: 24px;
  }

  .footer-catalog {
    display: inline-flex;
  }

  .footer-contact__desktop {
    display: none;
  }

  .footer-contact__mobile {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    gap: 24px;
    margin-top: 40px;
    color: var(--white-100);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .footer-bottom__legal,
  .footer-bottom__links {
    display: grid;
    gap: 8px;
  }

  .footer-bottom__links {
    gap: 12px;
  }

  .modal__dialog {
    width: min(340px, calc(100vw - 20px));
    margin: 0;
    max-height: calc(100dvh - 40px);
  }

  .modal__dialog--document {
    width: min(340px, calc(100vw - 20px));
  }

  .modal__dialog--cart {
    width: calc(100vw - 20px);
    margin: 0;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(calc(100% - 20px), 340px);
  }

  .modal__content {
    padding: 24px 12px 20px;
  }

  .modal__content h2 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .modal__lead {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .modal__close {
    top: 12px;
    right: 12px;
  }

  .modal__dialog--cart .modal__content {
    padding: 12px;
  }

  .cart-modal {
    gap: 20px;
  }

  .cart-modal__title {
    gap: 6px;
    font-size: 24px;
  }

  .cart-modal__head {
    display: none;
  }

  .cart-modal__row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "item item"
      "qty price";
    gap: 12px;
    padding: 14px 0;
  }

  .cart-modal__item {
    grid-area: item;
    padding-right: 0;
  }

  .cart-modal__qty {
    grid-area: qty;
    grid-template-columns: 36px 40px 36px;
    gap: 12px;
    justify-content: flex-start;
  }

  .cart-modal__qty-button {
    width: 36px;
    min-height: 36px;
    font-size: 24px;
  }

  .cart-modal__qty-value {
    font-size: 18px;
  }

  .cart-modal__price {
    grid-area: price;
    font-size: 18px;
    text-align: right;
  }

  .cart-modal__total {
    justify-content: space-between;
  }

  .cart-modal__total strong {
    font-size: 20px;
  }

  .cart-modal__fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-modal__field--phone {
    grid-column: auto;
  }

  .cart-modal__field input {
    height: 42px;
    font-size: 14px;
  }

  .cart-modal__submit {
    margin-top: 4px;
    font-size: 14px;
  }

  .cart-modal__empty {
    min-height: 210px;
    padding: 28px 8px 20px;
  }

  .cart-modal__empty-title {
    font-size: 18px;
  }

  .cart-modal__empty-text {
    font-size: 14px;
  }

  .cart-modal__empty-button {
    width: 100%;
    min-width: 0;
  }

  .lead-form--modal {
    gap: 12px;
  }

  .lead-form--modal input:not([type="checkbox"]) {
    height: 42px;
  }

  .lead-form--modal .button {
    margin-top: 4px;
    font-size: 14px;
  }

  .modal-product {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
  }

  .modal-product__image-wrap {
    width: 72px;
  }

  .modal-product__title {
    font-size: 16px;
  }

  .modal-product__price {
    font-size: 14px;
  }

  .modal-product__quantity {
    font-size: 13px;
  }

  .site-header {
    min-height: 112px;
    background: var(--white-100);
  }

  .site-header.is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 60px;
    left: 0;
    z-index: 90;
    min-height: 0;
    overflow: hidden;
  }

  .header-top {
    height: 64px;
  }

  .header-top__inner {
    display: flex;
    height: 64px;
    align-items: center;
    gap: 0;
  }

  .header-top .logo--image,
  .header-top .logo--image img {
    width: 94px;
    height: 32px;
    min-width: 94px;
  }

  .header-top__contacts {
    display: flex;
    margin-left: auto;
  }

  .header-top__contacts a:first-child {
    display: inline-flex;
    width: 110px;
    align-items: center;
    justify-content: center;
    color: var(--white-100);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .header-top__contacts a:last-child,
  .header-top .messengers,
  .trust-mark,
  .city-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    margin-left: 12px;
    padding: 4px;
  }

  .mobile-menu-button .icon {
    width: 24px;
    height: 24px;
  }

  .header-main {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    height: 40px;
    overflow: hidden;
    background: var(--white-100);
    transition: height 0.25s ease;
  }

  .site-header.is-open .header-main {
    height: calc(100vh - 132px);
    height: calc(100dvh - 132px);
    box-shadow: none;
  }

  .header-main__inner {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: 40px auto auto 1fr;
    column-gap: 8px;
    row-gap: 0;
    align-items: start;
    height: 100%;
    padding: 0;
  }

  .header-main .button--catalog {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    width: 118px;
    height: 40px;
    min-height: 40px;
    gap: 4px;
    padding: 0 12px;
    font-size: 14px;
  }

  .header-main .search {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 40px;
    flex-basis: auto;
    padding-left: 16px;
  }

  .search input {
    font-size: 16px;
  }

  .search__submit {
    width: 40px;
    height: 40px;
  }

  .search.search--mobile-active {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    align-content: start;
    width: 100%;
    height: 100dvh;
    padding: 16px 10px 688px;
    background: var(--white-100);
  }

  .search.search--mobile-active .search-panel {
    display: grid;
    gap: 40px;
    width: 100%;
  }

  .search-panel__head {
    display: grid;
    width: 100%;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 8px;
  }

  .search-panel__title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .search-panel__icon-button {
    position: relative;
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--black);
  }

  .search-panel__icon-button--back .icon {
    transform: rotate(180deg);
  }

  .search.search--mobile-active .search-panel__field {
    position: relative;
    display: flex;
    width: 100%;
    height: 32px;
    align-items: center;
    padding-left: 16px;
    background: var(--green-100);
  }

  .search.search--mobile-active input {
    height: 32px;
    font-size: 14px;
  }

  .search.search--mobile-active .search__submit {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    padding: 4px;
  }

  .search.search--mobile-active .search-dropdown {
    position: relative;
    top: 24px;
    width: 100%;
    padding: 10px;
  }

  .search.search--mobile-active.is-open .search-dropdown {
    display: grid;
    gap: 16px;
  }

  .search.search--mobile-active .search-dropdown__section {
    gap: 12px;
  }

  .search.search--mobile-active .search-dropdown__title {
    min-height: 29px;
    padding: 8px 8px 10px;
    font-size: 12px;
  }

  .search.search--mobile-active .search-dropdown__item {
    font-size: 14px;
  }

  .search.search--mobile-active .search-dropdown__product-title {
    font-size: 14px;
  }

  .search.search--mobile-active .search-dropdown__product-price {
    font-size: 12px;
  }

  .search-panel__close {
    position: fixed;
    right: 10px;
    bottom: 40px;
    left: 10px;
    display: none;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0 16px;
    background: var(--grey-100);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  .search.search--mobile-active .search-panel__close {
    display: flex;
  }

  .mobile-city-button {
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: flex-start;
    height: 88px;
    gap: 4px;
    padding: 40px 0 24px;
    border-bottom: 1px solid var(--grey-200);
    background: transparent;
    color: var(--black);
    font-size: 16px;
    line-height: 1.2;
  }

  .site-header.is-open .mobile-city-button {
    display: flex;
  }

  .mobile-city-button img {
    width: 24px;
    height: 24px;
  }

  .header-main .main-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    display: none;
    gap: 24px;
    align-content: start;
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
  }

  .header-main .main-nav a {
    width: auto;
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-contacts {
    grid-column: 1 / -1;
    grid-row: 4;
    align-self: end;
    height: 88px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--grey-200);
  }

  .site-header.is-open .mobile-menu-contacts {
    display: flex;
  }

  .mobile-menu-contacts__phone {
    color: var(--black);
    font-size: 16px;
    line-height: 1.2;
  }

  .mobile-menu-contacts__messengers {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .mobile-menu-contacts__messengers img {
    width: 24px;
    height: 24px;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    height: 60px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 12px 10px 8px;
    background: var(--white-200);
  }

  .mobile-bottom-nav__item {
    display: grid;
    min-width: 0;
    justify-items: center;
    align-content: start;
    gap: 4px;
    color: var(--black);
    font-size: 12px;
    line-height: 1;
  }

  .mobile-bottom-nav__item img,
  .mobile-bottom-nav__icon {
    width: 24px;
    height: 24px;
  }

  .mobile-bottom-nav__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
  }

  .mobile-bottom-nav__badge {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    width: 15px;
    height: 14px;
    place-items: center;
    background: var(--green-500);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .hero {
    min-height: 612px;
    padding: 40px 0 60px;
  }

  .hero__grid {
    display: block;
  }

  .hero .catalog-menu {
    display: none;
  }

  .hero-slider {
    min-height: 572px;
  }

  .hero-slide {
    display: flex;
    min-height: 532px;
    flex-direction: column;
    gap: 16px;
    padding: 24px 10px;
    background: var(--white-200);
  }

  .hero-slide__content {
    display: contents;
  }

  .hero-slide__title {
    order: 1;
    max-width: 320px;
    font-size: 24px;
    line-height: 1.25;
  }

  .hero-slide p {
    order: 2;
    max-width: 320px;
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-slide img {
    order: 3;
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: contain;
  }

  .hero-slide .button {
    order: 4;
    width: 100%;
    margin-top: auto;
  }

  .slider-dots {
    margin-top: 16px;
  }

  .section,
  .compact-section {
    padding: 60px 0 0;
  }

  .about.section {
    padding-top: 0;
  }

  .about__intro {
    gap: 16px;
    margin-bottom: 64px;
  }

  .about__intro h1,
  .about__intro h2 {
    max-width: 340px;
    font-size: 18px;
    line-height: 1.2;
  }

  .about__intro p,
  .benefit-card p,
  .news-card p,
  .seo-text p {
    font-size: 14px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .benefit-card {
    height: 148px;
    min-height: 148px;
    padding: 16px 16px 24px;
  }

  .benefit-card p {
    top: 80px;
    line-height: 1.1;
  }

  .benefit-card__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .benefit-card__icon img {
    width: 24px;
    height: 24px;
  }

  .section--tinted {
    margin-top: 60px;
    padding: 24px 0;
  }

  .section-head {
    flex-direction: column;
    gap: 24px;
  }

  .section-head > div:first-child {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
  }

  .slider-controls {
    flex: 0 0 auto;
  }

  .section-head .button--accent {
    width: 100%;
  }

  .blog-section .section-head .button--accent {
    display: none;
  }

  .blog-section .section-head--single {
    margin-bottom: 24px;
  }

  .blog-grid {
    gap: 24px;
  }

  .blog-section__mobile-cta {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 10px 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
  }

  .blog-page {
    padding-top: 24px;
  }

  .blog-listing {
    margin-bottom: 60px;
  }

  .blog-page__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .blog-page__content {
    gap: 40px;
  }

  .blog-page h1 {
    font-size: 24px;
  }

  .blog-page__grid {
    width: 340px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-page .news-card {
    width: 340px;
    height: auto;
    min-height: auto;
  }

  .blog-page .news-card > img {
    height: 227px;
  }

  .blog-page .news-card__body {
    min-height: auto;
    padding: 32px 24px 24px;
  }

  .blog-page .news-card__title,
  .blog-page .news-card h3 {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 18px;
  }

  .blog-page .news-card p {
    -webkit-line-clamp: 5;
    font-size: 14px;
  }

  .blog-page .news-card__meta {
    gap: 24px;
    font-size: 16px;
  }

  .blog-empty {
    padding: 24px;
  }

  .compact-section .section-head--single {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .compact-section .slider-controls {
    gap: 16px;
  }

  .compact-section .icon-button {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .cards-row {
    grid-auto-columns: 322px;
    gap: 16px;
    padding-bottom: 0;
  }

  .logo-row {
    grid-auto-columns: 166px;
    gap: 16px;
  }

  .logo-card {
    height: 100px;
  }

  .category-grid {
    gap: 16px;
    margin-top: 40px;
  }

  .category-card,
  .category-card--tall,
  .category-card--wide {
    min-height: 224px;
    padding: 24px;
  }

  .category-card img {
    width: 100px;
    height: 100px;
    max-height: 140px;
    object-fit: contain;
  }

  .category-card--tall img {
    width: 140px;
    height: 140px;
  }

  .category-promo {
    min-height: 109px;
    padding: 16px;
  }

  .category-promo__icon {
    width: 40px;
    height: 40px;
  }

  .category-promo__icon .icon,
  .category-promo__icon img {
    width: 28px;
    height: 28px;
  }

  .category-promo__title {
    bottom: 16px;
    left: 16px;
    font-size: 20px;
  }

  .category-promo__image--main {
    top: 6px;
    left: 42%;
    width: 118px;
  }

  .category-promo__image--ic {
    top: 6px;
    left: 65%;
    width: 86px;
  }

  .category-promo__image--capacitor {
    top: 20px;
    right: -6px;
    width: 92px;
  }

  .seo-grid {
    gap: 24px;
  }

  .document-card {
    width: 251px;
    flex-basis: 251px;
    height: 320px;
    padding: 40px;
    overflow: hidden;
  }

  .document-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .documents-section .slider-controls {
    gap: 16px;
  }

  .documents-section .icon-button {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .cta-section {
    padding: 0;
    background: var(--green-200) url("../images/home/cta-background-mobile.png") left top / 100% auto no-repeat;
  }

  .cta-card {
    width: 100%;
    min-height: auto;
    padding: 24px 10px;
    gap: 200px;
  }

  .cta-card__copy {
    gap: 24px;
  }

  .cta-card__copy h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .cta-card__copy p {
    font-size: 16px;
    line-height: 1.2;
  }

  .cta-section .lead-form {
    min-height: auto;
    margin-top: 0;
    padding: 24px 12px;
  }

  .cta-section .lead-form label:not(.checkbox) {
    gap: 8px;
  }

  .cta-section .lead-form label:not(.checkbox) + label:not(.checkbox) {
    margin-top: 24px;
  }

  .cta-section .lead-form label:not(.checkbox) > span {
    font-size: 14px;
    line-height: 1.2;
  }

  .cta-section .lead-form input:not([type="checkbox"]) {
    font-size: 16px;
  }

  .cta-section .lead-form .button {
    width: 100%;
    margin-top: 32px;
    font-size: 14px;
  }

  .contacts-grid {
    gap: 40px;
  }

  .contacts-content h2 {
    margin-bottom: 24px;
  }

  .contact-item {
    min-height: auto;
    padding: 18px 0 16px;
    gap: 16px;
    align-items: center;
  }

  .contact-item__head {
    gap: 16px;
  }

  .contact-item__title {
    margin-bottom: 0;
    font-size: 16px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .manager-card {
    margin-top: 24px;
    padding: 12px;
    align-items: flex-start;
  }

  .manager-card > img {
    width: 72px;
    height: 72px;
  }

  .manager-card p {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .manager-card__name {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .map-block,
  .map-placeholder,
  .map-block iframe {
    min-height: 280px;
    height: 280px;
  }

  .qa-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .qa-aside {
    display: contents;
  }

  .qa-aside > h2 {
    order: 1;
  }

  .qa-grid > .faq-list {
    order: 2;
  }

  .qa-aside .qa-card {
    order: 3;
    min-height: auto;
  }

  .site-footer {
    margin-top: 60px;
    padding-bottom: 84px;
  }
}

/* About page */
.about-page {
  padding-top: 40px;
}

.about-hero {
  margin-bottom: 80px;
}

.about-hero__breadcrumbs {
  margin-bottom: 64px;
  font-size: 16px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 564px) minmax(0, 680px);
  justify-content: space-between;
  gap: clamp(64px, 9vw, 132px);
  align-items: start;
}

.about-hero__copy {
  display: grid;
  gap: 64px;
  align-content: start;
}

.about-hero__copy h1 {
  max-width: none;
}

.about-hero__copy p {
  max-width: 564px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: normal;
}

.about-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--green-100);
}

.about-stats {
  padding-top: 0;
  padding-bottom: 60px;
}

.about-stats .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px;
  background: var(--green-100);
}

.about-stats h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.about-stat {
  display: grid;
  align-content: start;
  gap: 24px;
  min-width: 0;
}

.about-stat strong {
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.about-stat span {
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.about-page .seo-section {
  padding-top: 0;
}

.about-page .blog-section {
  padding-bottom: 80px;
}

@media (max-width: 1199px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero__copy {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .about-page {
    padding-top: 16px;
  }

  .about-hero {
    margin-bottom: 60px;
  }

  .about-hero__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .about-hero__grid,
  .about-hero__copy {
    gap: 24px;
  }

  .about-hero__copy h1 {
    font-size: 24px;
  }

  .about-hero__copy p {
    font-size: 16px;
  }

  .about-stats {
    padding-bottom: 60px;
  }

  .about-stats .container {
    gap: 32px;
    padding: 24px 16px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-stat {
    gap: 12px;
  }

  .about-stat strong {
    font-size: 24px;
  }

  .about-stat span {
    font-size: 14px;
  }

  .about-page .blog-section {
    padding-bottom: 0;
  }
}

/* Contacts page */
.contacts-page {
  padding-top: 24px;
}

.contacts-breadcrumbs {
  margin-bottom: 24px;
}

.contacts-map-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  align-items: start;
  justify-content: center;
  gap: var(--gap);
  min-height: 731px;
  overflow: visible;
}

.contacts-map {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: 731px;
  overflow: hidden;
  background: var(--green-100);
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) brightness(1.03);
}

.contacts-card {
  position: static;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  display: grid;
  width: 100%;
  gap: 40px;
  padding: 0;
  background: var(--white-100);
}

.contacts-card h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.contacts-card__details {
  display: grid;
}

.contacts-info-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--green-300);
}

.contacts-info-row + .contacts-info-row {
  padding-top: 0;
}

.contacts-info-row__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-top: 0;
  background: var(--green-700);
  color: var(--white-100);
}

.contacts-info-row__icon .icon {
  width: 32px;
  height: 32px;
}

.contacts-info-row > div {
  display: contents;
}

.contacts-info-row h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  text-transform: none;
}

.contacts-info-row p {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.contacts-quick {
  display: grid;
  gap: 24px;
  padding: 16px;
  background: var(--green-100);
}

.contacts-quick__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.contacts-quick a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 0;
  border-bottom: 0;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.contacts-quick a:last-child {
  border-bottom: 0;
}

.contacts-quick .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.contacts-quick span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contacts-requisites {
  padding: 60px 0;
}

.contacts-requisites h2 {
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 1.2;
}

.requisites-list {
  margin: 0;
}

.requisites-list div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
}

.requisites-list dt,
.requisites-list dd {
  min-width: 0;
  margin: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.requisites-list dt {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.requisites-list dd {
  font-size: 20px;
}

.requisites-list a {
  color: inherit;
}

.contacts-form-section {
  padding: 0;
  background-color: var(--green-200);
  background-image: url("../images/home/cta-background.webp");
  background-position: center bottom;
  background-size: min(1440px, 100%) auto;
  background-repeat: no-repeat;
}

.contacts-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
  min-height: 709px;
  gap: var(--gap);
  align-items: start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contacts-form__copy {
  display: grid;
  max-width: 680px;
  gap: 24px;
}

.contacts-form__copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  text-transform: none;
}

.contacts-form__copy p {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.contacts-form__copy span {
  color: var(--green-700);
}

.contacts-form__form {
  gap: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contacts-form__form label:not(.checkbox) {
  gap: 8px;
}

.contacts-form__form label:not(.checkbox) > span {
  color: var(--black);
  font-size: 16px;
}

.contacts-form__form input:not([type="checkbox"]),
.contacts-form__form textarea {
  width: 100%;
  border: 1px solid var(--green-300);
  padding: 16px;
  background: var(--white-100);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
}

.contacts-form__form textarea {
  min-height: 160px;
  resize: vertical;
}

.contacts-form__form input::placeholder,
.contacts-form__form textarea::placeholder {
  color: var(--grey-300);
  opacity: 1;
}

.contacts-form__form input:focus,
.contacts-form__form textarea:focus {
  border-color: var(--green-700);
  outline: 0;
}

.contacts-form__form .button {
  width: 110px;
  min-height: 40px;
  padding: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.contacts-form__form .checkbox {
  margin-top: 16px;
}

.contacts-form__form .checkbox span {
  color: var(--grey-300);
  font-size: 12px;
}

@media (max-width: 767px) {
  .contacts-page {
    padding-top: 16px;
  }

  .contacts-breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .contacts-map-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    overflow: visible;
  }

  .contacts-map {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    height: 340px;
  }

  .contacts-map iframe {
    pointer-events: auto;
  }

  .contacts-card {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    gap: 32px;
    padding: 0 0 24px;
    background: var(--white-100);
  }

  .contacts-card h1 {
    font-size: 24px;
  }

  .contacts-info-row {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    padding-bottom: 24px;
  }

  .contacts-info-row__icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .contacts-info-row__icon .icon {
    width: 24px;
    height: 24px;
  }

  .contacts-info-row h2 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .contacts-info-row p {
    font-size: 16px;
  }

  .contacts-quick {
    gap: 16px;
    padding: 12px;
  }

  .contacts-quick__title {
    font-size: 18px;
  }

  .contacts-quick a {
    gap: 12px;
    font-size: 14px;
  }

  .contacts-quick .icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .contacts-requisites {
    padding: 60px 0;
  }

  .contacts-requisites h2 {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .requisites-list div {
    gap: 16px;
    padding: 24px 0;
  }

  .requisites-list dt {
    font-size: 18px;
  }

  .requisites-list dd {
    font-size: 16px;
  }

  .contacts-form-section {
    background: var(--green-200) url("../images/home/cta-background-mobile.png") left top / 100% auto no-repeat;
  }

  .contacts-form {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 200px;
    padding: 24px 10px 60px;
  }

  .contacts-form__copy {
    gap: 24px;
  }

  .contacts-form__copy h2 {
    font-size: 24px;
  }

  .contacts-form__copy p {
    font-size: 16px;
  }

  .contacts-form__form {
    gap: 24px;
    padding: 24px 12px;
  }

  .contacts-form__form label:not(.checkbox) > span {
    font-size: 14px;
  }

  .contacts-form__form input:not([type="checkbox"]),
  .contacts-form__form textarea {
    font-size: 16px;
  }

  .contacts-form__form textarea {
    min-height: 120px;
  }

  .contacts-form__form .button {
    width: 100%;
    font-size: 14px;
  }
}

/* Delivery and payment page */
.delivery-page {
  padding-top: 32px;
}

.delivery-hero {
  margin-bottom: 60px;
}

.delivery-hero__breadcrumbs {
  margin-bottom: 64px;
}

.delivery-hero__grid {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--gap);
}

.delivery-hero__media {
  position: relative;
  width: min(100%, 680px);
  min-height: 326px;
}

.delivery-hero__media h1 {
  margin: 0;
  max-width: 680px;
}

.delivery-hero__image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 448px;
  max-width: 100%;
  height: 252px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--green-100);
}

.delivery-hero__content {
  display: grid;
  width: min(100%, 680px);
  align-content: start;
  gap: 40px;
}

.delivery-steps {
  display: grid;
  gap: 24px;
}

.delivery-steps h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  text-transform: none;
}

.delivery-steps ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.delivery-steps li span {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: var(--green-500);
}

.delivery-form-step legend span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green-500);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.delivery-form-step legend span + span {
  display: inline;
  width: auto;
  height: auto;
  place-items: initial;
  flex: 0 1 auto;
  background: transparent;
  line-height: 1.2;
}

.delivery-steps p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.delivery-cost {
  padding-top: 0;
  padding-bottom: 60px;
}

.delivery-cost h2 {
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.2;
}

.delivery-table-wrap {
  overflow-x: auto;
}

.delivery-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  line-height: 1.2;
}

.delivery-table th,
.delivery-table td {
  height: 47px;
  padding: 16px;
  text-align: left;
  vertical-align: middle;
}

.delivery-table th {
  background: var(--white-100);
  font-family: var(--font-heading);
  font-weight: 700;
}

.delivery-table tbody tr:nth-child(odd) {
  background: var(--green-100);
}

.delivery-table tbody tr:nth-child(even) {
  background: var(--green-200);
}

.delivery-calculator-section {
  padding: 60px 0 32px;
  background: var(--green-200);
}

.delivery-calculator-section .container {
  display: grid;
  gap: 100px;
}

.delivery-calculator-section__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  justify-content: space-between;
  gap: var(--gap);
}

.delivery-calculator-section__intro h2 {
  margin: 0;
  font-size: 28px;
}

.delivery-calculator-section__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.delivery-calculator {
  display: grid;
  gap: 56px;
  padding: 40px;
  background: var(--white-100);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.delivery-calculator > h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  text-transform: none;
}

.delivery-calculator__steps {
  display: grid;
  gap: 40px;
}

.delivery-form-step {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.delivery-form-step__body {
  display: grid;
  gap: 24px;
}

.delivery-form-step legend {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
  padding: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.delivery-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
}

.delivery-calculator label:not(.checkbox),
.delivery-calculator .delivery-form-grid label {
  display: grid;
  gap: 16px;
  align-items: start;
}

.delivery-calculator label > span {
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.delivery-calculator em {
  color: var(--red-100);
  font-style: normal;
}

.delivery-calculator input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  height: 56px;
  padding: 16px;
  border: 1px solid var(--green-300);
  border-radius: 0;
  background: var(--white-100);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.delivery-calculator input:not([type="checkbox"]):not([type="radio"]):not([type="file"])::placeholder {
  color: var(--grey-300);
  opacity: 1;
}

.delivery-calculator input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus {
  border-color: var(--green-700);
  outline: none;
}

.file-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.file-upload__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: auto;
  cursor: pointer;
  color: var(--black);
}

.file-upload__button span,
.file-upload__name {
  font-size: 16px;
  line-height: 1.2;
}

.file-upload__button .icon {
  width: 16px;
  height: 20px;
  flex: 0 0 16px;
}

.file-upload__name {
  color: var(--grey-300);
}

.file-upload__remove {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--black);
  background: var(--grey-100);
}

.file-upload__remove[hidden] {
  display: none;
}

.transport-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.transport-options__column {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.radio-option {
  display: grid;
  width: fit-content;
  grid-template-columns: 20px minmax(0, auto);
  gap: 16px;
  align-items: center;
  cursor: pointer;
}

.delivery-calculator label.file-upload__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: auto;
}

.delivery-calculator label.radio-option,
.delivery-calculator .delivery-form-grid label.radio-option {
  display: grid;
  width: fit-content;
  grid-template-columns: 20px minmax(0, auto);
  gap: 16px;
  align-items: center;
}

.radio-option input {
  position: relative;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: var(--white-100);
}

.radio-option input:checked {
  border-color: var(--green-700);
}

.radio-option input:checked::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--green-700);
  content: "";
}

.delivery-calculator .radio-option span {
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
}

.delivery-calculator__submit {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.delivery-calculator__submit .button {
  min-width: 194px;
  min-height: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.delivery-calculator .checkbox span {
  color: var(--grey-300);
  font-size: 12px;
}

.delivery-methods {
  padding: 60px 0;
}

.delivery-methods__grid {
  display: grid;
  grid-template-columns: minmax(0, 1028px) 332px;
  justify-content: space-between;
  gap: var(--gap);
  align-items: start;
}

.delivery-methods__main {
  padding: 0;
}

.delivery-methods h2 {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 1.2;
}

.delivery-payments h2 {
  margin-bottom: 52px;
  font-size: 16px;
  line-height: 1.2;
  text-transform: none;
}

.delivery-method-tabs {
  margin-bottom: 32px;
}

.delivery-method-tabs button {
  color: var(--grey-300);
}

.delivery-method-tabs button.is-active {
  color: var(--black);
}

.delivery-method-panel {
  display: grid;
  gap: 16px;
  font-size: 16px;
  line-height: 1.2;
}

.delivery-method-panel[hidden] {
  display: none;
}

.delivery-method-panel h3 {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.2;
  text-transform: none;
}

.delivery-method-panel p,
.delivery-method-panel ul {
  margin: 0;
}

.delivery-method-panel ul {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.delivery-method-panel li {
  position: relative;
  padding-left: 18px;
}

.delivery-method-panel li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green-500);
  content: "";
}

.delivery-payments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.delivery-payments__list span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  background: var(--white-100);
}

.delivery-payments__list img {
  display: block;
  object-fit: contain;
}

.payment-logo--visa,
.payment-logo--sbp {
  width: 50px;
  height: 50px;
}

.payment-logo--mastercard {
  width: 40.18px;
  height: 24.65px;
}

.payment-logo--maestro {
  width: 40.18px;
  height: 31.25px;
}

.payment-logo--mir {
  width: 48px;
  height: 14px;
}

.delivery-global-cta {
  margin-bottom: 60px;
}

.delivery-faq {
  padding-top: 0;
}

.delivery-contact-cta {
  padding: 0;
  background: var(--green-200) url("../images/delivery/delivery-contact-cta.png") center / cover no-repeat;
}

.delivery-contact-cta__inner {
  grid-template-columns: repeat(2, minmax(0, 680px));
  min-height: 709px;
  gap: var(--gap);
  padding-top: 60px;
  padding-bottom: 60px;
}

.delivery-contact-cta__form {
  display: block;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
}

.delivery-contact-cta__form label:not(.checkbox) {
  gap: 16px;
}

.delivery-contact-cta__form label:not(.checkbox) + label:not(.checkbox) {
  margin-top: 30px;
}

.delivery-contact-cta__form .button {
  margin-top: 40px;
}

.delivery-contact-cta__form .checkbox {
  margin-top: 16px;
}

.delivery-contact-cta__form .form-status {
  margin-top: 8px;
}

.delivery-contact-cta__form .form-status:empty {
  display: none;
}

@media (max-width: 1199px) {
  .delivery-hero__grid {
    flex-direction: column;
  }

  .delivery-calculator-section__intro,
  .delivery-methods__grid {
    grid-template-columns: 1fr;
  }

  .delivery-hero__media {
    display: grid;
    gap: 40px;
    max-width: 680px;
    min-height: 0;
  }

  .delivery-hero__image {
    position: static;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .delivery-page {
    padding-top: 16px;
  }

  .delivery-hero {
    margin-bottom: 60px;
  }

  .delivery-hero__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .delivery-hero__grid {
    gap: 40px;
  }

  .delivery-hero__media {
    gap: 40px;
  }

  .delivery-hero__media h1 {
    font-size: 24px;
  }

  .delivery-steps h2,
  .delivery-methods h2,
  .delivery-payments h2 {
    font-size: 18px;
  }

  .delivery-steps ul {
    gap: 16px;
  }

  .delivery-steps li {
    gap: 12px;
  }

  .delivery-form-step legend span {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .delivery-steps p,
  .delivery-form-step legend {
    font-size: 14px;
  }

  .delivery-cost {
    padding-bottom: 60px;
  }

  .delivery-cost h2 {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .delivery-table {
    min-width: 340px;
    font-size: 14px;
  }

  .delivery-table th,
  .delivery-table td {
    height: 48px;
    padding: 6px 10px;
  }

  .delivery-calculator-section {
    padding: 24px 0 60px;
  }

  .delivery-calculator-section .container {
    gap: 40px;
  }

  .delivery-calculator-section__intro {
    gap: 24px;
  }

  .delivery-calculator-section__intro h2 {
    font-size: 18px;
  }

  .delivery-calculator-section__intro p,
  .delivery-method-panel,
  .delivery-method-panel h3 {
    font-size: 14px;
  }

  .delivery-calculator {
    gap: 40px;
    padding: 24px 16px;
  }

  .delivery-calculator > h2 {
    font-size: 18px;
  }

  .delivery-form-step {
    gap: 0;
  }

  .delivery-form-step legend {
    margin-bottom: 24px;
  }

  .delivery-form-grid,
  .transport-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .delivery-calculator label:not(.checkbox),
  .delivery-calculator .delivery-form-grid label {
    gap: 8px;
  }

  .delivery-calculator label.radio-option,
  .delivery-calculator .delivery-form-grid label.radio-option {
    gap: 16px;
  }

  .delivery-calculator label.file-upload__button {
    gap: 16px;
  }

  .delivery-calculator label > span {
    font-size: 14px;
  }

  .delivery-calculator .radio-option span {
    font-size: 20px;
  }

  .delivery-calculator input:not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
    height: 50px;
    font-size: 16px;
  }

  .delivery-calculator__submit .button {
    width: 100%;
  }

  .delivery-methods {
    padding: 60px 0;
  }

  .delivery-method-tabs {
    width: calc(100vw - 20px);
    margin-bottom: 32px;
    overflow-x: auto;
  }

  .delivery-method-tabs button {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .delivery-payments__list {
    gap: 12px;
  }

  .delivery-global-cta {
    margin-bottom: 60px;
  }

  .delivery-contact-cta {
    background: var(--green-200) url("../images/home/cta-background-mobile.png") left top / 100% auto no-repeat;
  }

  .delivery-contact-cta__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 200px;
    padding: 24px 10px 60px;
  }

  .delivery-contact-cta__form {
    display: block;
    max-width: none;
    padding: 24px 12px;
  }

  .delivery-contact-cta__form label:not(.checkbox) {
    gap: 8px;
  }

  .delivery-contact-cta__form label:not(.checkbox) + label:not(.checkbox) {
    margin-top: 24px;
  }

  .delivery-contact-cta__form .button {
    width: 100%;
    margin-top: 32px;
  }
}

/* Product detail page */
.product-detail {
  padding-top: 24px;
}

.breadcrumbs {
  margin-bottom: 40px;
  color: var(--grey-300);
  font-size: 12px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--black);
  content: ">";
}

.breadcrumbs a:hover {
  color: var(--green-700);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(420px, 564px) minmax(0, 680px);
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 60px;
}

.product-gallery {
  display: grid;
  gap: 32px;
  align-content: start;
}

.product-gallery__image {
  display: grid;
  width: 100%;
  aspect-ratio: 564 / 379;
  place-items: center;
  border: 1px solid var(--green-300);
  background: var(--white-100);
  padding: 0;
  overflow: hidden;
}

.product-gallery__image img {
  width: 89.53%;
  height: 100%;
  object-fit: contain;
}

.product-gallery p {
  max-width: 564px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.product-summary {
  display: grid;
  align-content: start;
  gap: 40px;
}

.product-title-block {
  display: grid;
  gap: 32px;
}

.product-title-block__tags {
  position: static;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -12px;
}

.product-summary h1 {
  max-width: none;
  font-size: 28px;
  text-transform: uppercase;
}

.product-rating {
  display: flex;
  align-items: center;
  color: var(--grey-300);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.product-rating span {
  color: inherit;
}

.product-actions,
.product-short-specs,
.product-buyline,
.product-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.product-actions button {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.product-actions button[aria-pressed="true"] {
  color: var(--green-700);
}

.product-short-specs {
  margin: 0;
  gap: 0 16px;
  background:
    linear-gradient(var(--green-300), var(--green-300)) top / 100% 1px no-repeat,
    linear-gradient(var(--green-300), var(--green-300)) 0 50% / 100% 1px no-repeat;
}

.product-short-specs div {
  display: grid;
  gap: 13px;
  min-height: 88px;
  padding: 20px 0 0;
  background: transparent;
}

.product-short-specs dt {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.product-short-specs dd {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}

.product-buyline {
  align-items: center;
}

.quantity {
  display: inline-flex;
  width: 332px;
  align-items: center;
  gap: 40px;
  background: transparent;
}

.quantity button,
.quantity input {
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: center;
}

.quantity button {
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--black);
}

.quantity button[data-quantity-plus] {
  background: var(--green-700);
  color: var(--white-100);
}

.quantity button:disabled {
  color: var(--grey-300);
  cursor: not-allowed;
}

.quantity input {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.product-price {
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
}

.product-price del {
  color: var(--grey-300);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
}

.product-price mark {
  padding: 2px 8px;
  background: var(--blue-100);
  color: var(--dark-900);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.product-cta-row .button {
  width: 100%;
  min-height: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.product-tabs-section {
  padding: 0 0 60px;
}

.product-tabs {
  display: grid;
  gap: 40px;
}

.product-tabs__list {
  display: flex;
  gap: 40px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs__list::-webkit-scrollbar {
  display: none;
}

.product-tabs__list button {
  flex: 0 0 auto;
  min-height: 56px;
  border-bottom: 4px solid transparent;
  padding: 16px 0;
  background: transparent;
  color: var(--grey-300);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.product-tabs__list button.is-active {
  border-color: var(--green-700);
  color: var(--black);
}

.product-tab-panel {
  width: 100%;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.characteristics-column {
  display: grid;
  gap: 20px;
}

.characteristic-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  font-size: 16px;
  line-height: 1.2;
}

.characteristics-grid dt {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  gap: 16px;
  color: var(--black);
  font-weight: 400;
}

.characteristics-grid dt::after {
  display: block;
  min-width: 24px;
  flex: 1 1 auto;
  border-bottom: 1px dashed var(--green-300);
  content: "";
}

.characteristics-grid dd {
  margin: 0;
  color: var(--black);
  text-align: left;
}

.product-text {
  display: grid;
  max-width: none;
  gap: 24px;
  font-size: 16px;
  line-height: 1.2;
}

.product-bullet-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-bullet-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.product-bullet-list li::before {
  width: 10px;
  height: 10px;
  background: var(--green-500);
  content: "";
}

.product-delivery {
  display: grid;
  gap: 32px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.product-delivery__text,
.product-delivery__text section,
.delivery-companies,
.delivery-company {
  display: grid;
  gap: 32px;
}

.product-delivery__text section {
  gap: 24px;
}

.product-delivery h3,
.payment-methods h3 {
  font-size: 16px;
}

.delivery-company {
  gap: 24px;
}

.delivery-company img {
  width: auto;
  max-width: 245px;
  height: auto;
}

.delivery-company img.delivery-company__logo--dpd {
  width: 100px;
}

.delivery-company a {
  color: var(--grey-300);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-methods {
  display: grid;
  gap: 52px;
}

.payment-methods__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.payment-methods__list span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  background: var(--white-100);
}

.payment-methods__list img {
  width: 50px;
  height: 50px;
}

.payment-methods__sbp {
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
}

.product-faq {
  display: grid;
  width: 680px;
  max-width: 100%;
  gap: 0;
}

.product-faq .faq-item {
  border-top: 1px solid var(--grey-200);
  border-bottom: 0;
}

.product-faq .faq-item.is-open {
  border-top-color: var(--green-700);
}

.product-faq .faq-item button {
  min-height: 64px;
  padding: 16px 0;
  gap: 55px;
  color: var(--black);
  font-size: 20px;
}

.product-faq .faq-item button .icon {
  color: var(--green-700);
}

.product-faq .faq-item.is-open button .icon {
  color: var(--black);
}

.product-faq .faq-item__answer > p {
  font-size: 16px;
  line-height: 1.2;
}

.product-cta {
  min-height: 488px;
  background: var(--green-100) url("../images/product/cta-product-search.png") center / cover no-repeat;
}

.product-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: var(--gap);
  align-items: start;
  min-height: 488px;
  padding-top: 60px;
  padding-bottom: 56px;
}

.product-cta__copy {
  display: grid;
  gap: 40px;
}

.product-cta__copy h2 {
  max-width: 600px;
  font-size: 42px;
  text-transform: none;
}

.product-cta__copy p {
  max-width: 600px;
  font-size: 20px;
}

.product-cta__copy span,
.product-bottom-cta h2 span {
  color: var(--green-700);
}

.product-cta__form {
  width: 100%;
  min-height: 368px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.product-cta__form label:not(.checkbox) {
  gap: 16px;
}

.product-cta__form input:not([type="checkbox"]) {
  height: 56px;
  border-color: var(--green-300);
  font-size: 20px;
}

.product-cta__form .button {
  width: 110px;
  min-height: 40px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.product-related {
  padding: 64px 0;
  background: var(--grey-100);
}

.product-related .product-card {
  width: calc((100% - 48px) / 4);
  flex-basis: calc((100% - 48px) / 4);
}

.product-section-head > div:first-child {
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.product-section-head .slider-controls {
  width: 104px;
  justify-content: space-between;
}

.product-section-head .slider-controls .icon-button:not(.icon-button--primary) {
  background: var(--green-100);
}

.product-related__catalog--mobile {
  display: none;
}

.product-recommendations,
.product-benefits,
.product-bottom-cta {
  margin-top: 80px;
}

.product-recommendations h2,
.product-benefits h2 {
  margin-bottom: 24px;
}

.product-category-grid {
  display: grid;
  grid-template-columns: 680px repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.product-category-card {
  display: flex;
  min-height: 216px;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 24px;
  background: var(--green-100);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.product-category-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.product-category-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-category-card .icon {
  align-self: flex-end;
  margin-top: -60px;
}

.product-benefits__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: var(--gap);
  margin-bottom: 64px;
}

.product-benefits__intro h2 {
  margin-bottom: 0;
}

.product-benefits__title {
  max-width: none;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-benefits__title-variable {
  color: var(--green-700);
}

.product-benefits__intro p {
  font-size: 16px;
}

.product-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--green-100);
}

.product-bottom-cta h2 {
  max-width: 872px;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-bottom-cta h2 span + span {
  margin-left: 0.25em;
}

.product-bottom-cta__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  padding: 0;
  background: transparent;
}

.product-bottom-cta__form input:not([type="checkbox"]) {
  height: 56px;
  border-color: var(--green-300);
  padding: 16px;
  background: var(--white-100);
  font-size: 20px;
  line-height: 1.2;
}

.product-bottom-cta__form .button {
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.product-bottom-cta__form > div {
  display: grid;
  gap: 16px;
  padding-top: 28px;
}

.product-bottom-cta__form .checkbox {
  margin-top: 0;
}

.product-bottom-cta__form label:not(.checkbox) {
  gap: 16px;
}

.product-bottom-cta__form label:not(.checkbox) > span {
  font-size: 16px;
  line-height: 1.2;
}

.product-bottom-cta__form .checkbox input {
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  margin: 0;
  appearance: none;
  border: 1px solid var(--grey-100);
  background: var(--green-400);
}

.product-bottom-cta__form .checkbox input:checked::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green-700);
  border-left: 2px solid var(--green-700);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.product-bottom-cta__form .checkbox span {
  font-size: 12px;
  line-height: 1.2;
}

.product-bottom-cta__form .form-status:empty {
  display: none;
}

@media (max-width: 1199px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-gallery__image,
  .product-gallery p {
    width: 100%;
    max-width: none;
  }

  .product-actions,
  .product-short-specs,
  .product-buyline,
  .product-cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-cta__inner,
  .product-benefits__intro,
  .product-bottom-cta__form {
    grid-template-columns: 1fr;
  }

  .product-bottom-cta__form > div {
    padding-top: 0;
  }

  .product-related .product-card {
    width: 322px;
    flex-basis: 322px;
  }

  .product-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-category-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .product-detail {
    padding-top: 24px;
    padding-bottom: 0;
  }

  .breadcrumbs {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .breadcrumbs ol {
    gap: 8px 6px;
  }

  .breadcrumbs li {
    gap: 6px;
  }

  .product-hero {
    gap: 40px;
    margin-bottom: 40px;
  }

  .product-gallery {
    gap: 16px;
  }

  .product-gallery__image {
    height: auto;
    padding: 0;
  }

  .product-gallery p {
    font-size: 14px;
  }

  .product-summary {
    gap: 40px;
  }

  .product-title-block {
    gap: 16px;
  }

  .product-summary h1 {
    font-size: 18px;
  }

  .product-rating {
    font-size: 14px;
  }

  .product-actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-actions button {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
  }

  .product-short-specs,
  .product-buyline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-short-specs div {
    gap: 16px;
    min-height: 88px;
    padding: 20px 0 0;
  }

  .product-short-specs dt {
    font-size: 18px;
  }

  .product-short-specs dd {
    font-size: 16px;
  }

  .product-cta-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quantity {
    width: auto;
    gap: 20px;
  }

  .quantity button,
  .quantity input {
    width: 32px;
    height: 32px;
  }

  .quantity button {
    padding: 4px;
  }

  .quantity input {
    font-size: 20px;
  }

  .product-price {
    font-size: 24px;
  }

  .product-tabs-section {
    padding-bottom: 40px;
  }

  .product-tabs {
    gap: 40px;
  }

  .product-tabs__list {
    gap: 32px;
    width: 100%;
  }

  .product-tabs__list button {
    flex: 0 0 auto;
    min-height: 56px;
    font-size: 18px;
  }

  .characteristics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .characteristics-column {
    gap: 20px;
  }

  .characteristic-row {
    gap: 16px;
    font-size: 14px;
  }

  .characteristics-grid dt {
    gap: 8px;
  }

  .characteristics-grid dt::after {
    min-width: 18px;
  }

  .product-text,
  .product-delivery,
  .product-delivery h3,
  .payment-methods h3,
  .product-faq .faq-item__answer > p {
    font-size: 14px;
  }

  .product-delivery,
  .product-delivery__text,
  .delivery-companies {
    gap: 32px;
  }

  .product-delivery__text section,
  .delivery-company {
    gap: 16px;
  }

  .payment-methods {
    gap: 16px;
  }

  .product-faq {
    width: 100%;
  }

  .product-faq .faq-item button {
    min-height: 64px;
    gap: 24px;
    font-size: 18px;
  }

  .product-cta {
    min-height: 623px;
    background-image: url("../images/product/cta-product-search-mobile.png");
    background-position: center top;
    background-size: 360px 623px;
  }

  .product-cta__inner {
    min-height: 623px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .product-cta__copy {
    gap: 24px;
  }

  .product-cta__copy h2 {
    font-size: 24px;
  }

  .product-cta__copy p {
    font-size: 16px;
  }

  .product-cta__form {
    align-self: end;
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 16px;
    padding: 24px 12px;
  }

  .product-cta__form label:not(.checkbox) {
    gap: 8px;
  }

  .product-cta__form label:not(.checkbox) > span {
    height: 17px;
    line-height: 1.2;
    overflow: hidden;
  }

  .product-cta__form input:not([type="checkbox"]) {
    height: 42px;
    font-size: 16px;
  }

  .product-cta__form .button {
    width: 100%;
    min-height: 40px;
    margin-top: 0;
  }

  .product-cta__form .checkbox span {
    font-size: 12px;
    line-height: 1.2;
  }

  .product-cta__form .form-status:empty {
    display: none;
  }

  .product-related {
    padding: 24px 0;
  }

  .product-related .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .product-related .section-head {
    margin-bottom: 0;
  }

  .product-section-head > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .product-section-head .slider-controls {
    width: auto;
    gap: 16px;
  }

  .product-section-head .slider-controls .icon-button {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 4px;
  }

  .product-related__catalog--desktop {
    display: none;
  }

  .product-related__catalog--mobile {
    display: flex;
    width: 100%;
    min-height: 37px;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }

  .product-related__catalog--mobile .icon {
    width: 16px;
    height: 16px;
  }

  .product-related .product-card {
    width: 322px;
    flex-basis: 322px;
  }

  .product-recommendations,
  .product-benefits,
  .product-bottom-cta {
    margin-top: 60px;
  }

  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .product-category-card,
  .product-category-card--wide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    grid-template-rows: 120px auto;
    align-items: center;
    min-height: 0;
    grid-column: auto;
    gap: 24px 36px;
    padding: 24px;
  }

  .product-category-card {
    font-size: 18px;
    line-height: 1.2;
  }

  .product-category-card img {
    grid-column: 1 / -1;
    width: 120px;
    height: 120px;
  }

  .product-category-card span {
    display: block;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .product-category-card .icon {
    width: 32px;
    height: 32px;
    align-self: center;
    justify-self: end;
    margin-top: 0;
  }

  .product-benefits__intro {
    gap: 16px;
    margin-bottom: 64px;
  }

  .product-benefits__intro h2 {
    font-size: 18px;
  }

  .product-benefits__title {
    font-size: 18px;
  }

  .product-benefits__intro p {
    font-size: 14px;
  }

  .product-benefits__grid {
    display: flex;
    flex-direction: column;
  }

  .product-bottom-cta {
    min-height: 467px;
    gap: 40px;
    margin-bottom: 60px;
    padding: 24px 10px 60px;
  }

  .product-bottom-cta h2 {
    font-size: 18px;
  }

  .product-bottom-cta__form {
    gap: 24px;
  }

  .product-bottom-cta__form .checkbox {
    align-items: flex-start;
  }
}

/* Catalog page */
.catalog-page {
  padding-top: 40px;
}

.catalog-intro .breadcrumbs {
  margin-bottom: 50px;
}

.catalog-categories {
  margin-top: 32px;
}

.catalog-search-results {
  margin-top: 32px;
}

.catalog-search-results__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.catalog-search-results__head h2,
.catalog-search-results__head p {
  margin: 0;
}

.catalog-search-results__head p {
  color: var(--grey-300);
}

.catalog-search-results .subcategory-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.catalog-search-results .subcategory-products-grid .product-card {
  width: auto;
}

.catalog-search-results .pagination {
  margin-top: 40px;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.catalog-category-card {
  display: grid;
  min-height: 454px;
  grid-template-rows: 200px auto;
  align-content: space-between;
  gap: 36px;
  padding: 24px;
  background: var(--green-100);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.catalog-category-card:hover,
.catalog-promo-card:hover {
  background-color: var(--green-200);
}

.catalog-category-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.catalog-category-card__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 36px;
  align-items: center;
}

.catalog-category-card__bottom span {
  min-width: 0;
  overflow-wrap: break-word;
}

.catalog-category-card__bottom .icon {
  justify-self: end;
}

.catalog-promo-card {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 120px;
  padding: 24px;
  background: var(--green-200) url("../images/catalog/promo-sale.png") center / cover no-repeat;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.catalog-promo-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--green-700);
  color: var(--white-100);
}

.catalog-benefits {
  margin-top: 120px;
}

.catalog-hits {
  margin-top: 120px;
  padding: 64px 0;
  background: var(--green-200);
}

.catalog-hits__head {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}

.catalog-hits__head .slider-controls {
  width: 104px;
  justify-content: space-between;
}

.catalog-hits__head .icon-button:not(.icon-button--primary) {
  background: var(--green-100);
}

.catalog-hits__row .product-card {
  width: calc((100% - 48px) / 4);
  flex-basis: calc((100% - 48px) / 4);
}

.catalog-cta {
  margin-top: 120px;
  margin-bottom: 0;
}

.catalog-faq {
  margin-top: 120px;
  margin-bottom: 80px;
}

.catalog-faq__grid {
  display: grid;
  grid-template-columns: 432px minmax(0, 680px);
  justify-content: space-between;
  gap: var(--gap);
}

.catalog-faq__aside {
  display: flex;
  min-height: 492px;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-faq__aside .qa-card {
  min-height: 180px;
}

.catalog-faq .faq-list {
  margin-top: 0;
}

.catalog-faq .faq-item:first-child {
  border-top: 1px solid var(--green-700);
}

@media (max-width: 1199px) {
  .catalog-search-results .subcategory-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-hits__row .product-card {
    width: 322px;
    flex-basis: 322px;
  }

  .catalog-faq__grid {
    grid-template-columns: 1fr;
  }

  .catalog-faq__aside {
    min-height: auto;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .catalog-page {
    padding-top: 16px;
  }

  .catalog-intro .breadcrumbs {
    margin-bottom: 24px;
  }

  .catalog-intro h1 {
    font-size: 24px;
  }

  .catalog-categories {
    margin-top: 24px;
  }

  .catalog-search-results {
    margin-top: 24px;
  }

  .catalog-search-results__head {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
  }

  .catalog-search-results .subcategory-products-panel {
    position: relative;
    left: 50%;
    width: 100vw;
    padding: 20px 10px 40px;
    transform: translateX(-50%);
    background: var(--green-100);
  }

  .catalog-search-results .subcategory-products-grid {
    width: 340px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .catalog-search-results .subcategory-products-grid .product-card {
    width: 340px;
  }

  .catalog-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-category-card {
    min-height: 152px;
    grid-template: 1fr / 104px minmax(0, 1fr);
    align-content: stretch;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    background: var(--white-100);
    box-shadow: 0 4px 18px rgba(34, 47, 48, 0.08);
    font-size: 18px;
  }

  .catalog-category-card img {
    width: 104px;
    height: 104px;
    justify-self: center;
  }

  .catalog-category-card__bottom {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px;
  }

  .catalog-category-card__bottom .icon {
    width: 24px;
    height: 24px;
    color: var(--green-700);
  }

  .catalog-promo-card {
    min-height: 109px;
    margin-top: 16px;
    padding: 16px;
    background-image: url("../images/catalog/promo-sale-mobile.png");
    font-size: 18px;
  }

  .catalog-promo-card__icon {
    width: 24px;
    height: 24px;
  }

  .catalog-promo-card__icon .icon {
    width: 16px;
    height: 16px;
  }

  .catalog-benefits {
    margin-top: 60px;
  }

  .catalog-hits {
    margin-top: 60px;
    padding: 24px 0;
  }

  .catalog-hits__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
  }

  .catalog-hits__head .slider-controls {
    width: auto;
    gap: 16px;
  }

  .catalog-hits__head .icon-button {
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 4px;
  }

  .catalog-hits__row .product-card {
    width: 322px;
    flex-basis: 322px;
  }

  .catalog-cta {
    margin-top: 60px;
  }

  .catalog-faq {
    margin-top: 60px;
    margin-bottom: 0;
  }

  .catalog-faq__grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .catalog-faq__aside {
    display: contents;
  }

  .catalog-faq__aside h2 {
    order: 1;
  }

  .catalog-faq .faq-list {
    order: 2;
  }

  .catalog-faq__aside .qa-card {
    order: 3;
    min-height: auto;
  }
}

/* Category page */
.category-page {
  padding-top: 40px;
}

.category-intro .breadcrumbs {
  margin-bottom: 64px;
}

.category-title {
  display: grid;
  width: fit-content;
  max-width: 100%;
  grid-template-columns: minmax(0, auto) auto;
  gap: 26px;
  align-items: start;
}

.category-title h1 {
  max-width: none;
}

.category-title__count {
  color: var(--grey-300);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.category-subcategories {
  margin-top: 20px;
}

.category-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: 40px var(--gap);
  justify-content: space-between;
}

.subcategory-group {
  min-width: 0;
}

.subcategory-group__heading {
  margin: 0;
  font: inherit;
  text-transform: none;
}

.subcategory-group__head,
.subcategory-group__list a {
  display: grid;
  min-width: 0;
  align-items: center;
  color: var(--black);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.subcategory-group__head {
  min-height: 56px;
  grid-template-columns: minmax(0, 1fr) auto 24px;
  gap: 20px;
  padding: 16px 28px 16px 16px;
  background: var(--green-100);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.subcategory-group__head > span {
  font-weight: 700;
}

.subcategory-group__list a {
  min-height: 40px;
  grid-template-columns: minmax(0, 1fr) auto 16px;
  gap: 24px;
  padding: 8px 32px 8px 16px;
  border-top: 1px solid var(--green-100);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.subcategory-group__head span,
.subcategory-group__list span {
  min-width: 0;
  overflow-wrap: break-word;
}

.subcategory-group__list span {
  font-weight: 400;
}

.subcategory-group small {
  color: var(--grey-300);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.subcategory-group__list small {
  font-size: 16px;
}

.subcategory-group .icon {
  justify-self: end;
}

.subcategory-group__head .icon {
  width: 24px;
  height: 24px;
}

.subcategory-group__list .icon {
  width: 16px;
  height: 16px;
}

.subcategory-group__extra {
  overflow: hidden;
  transition: height 0.34s ease;
}

.subcategory-group__toggle {
  display: block;
  width: fit-content;
  margin: 10px 0 0 16px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.subcategory-group__toggle:hover {
  color: var(--green-900);
}

.subcategory-group__toggle:focus-visible {
  outline: none;
  color: var(--green-900);
  text-decoration-thickness: 2px;
}

.subcategory-group__head:hover,
.subcategory-group__list a:hover {
  background: var(--green-100);
}

.subcategory-group__head:hover .icon,
.subcategory-group__list a:hover .icon {
  color: var(--green-700);
}

.category-recommendations {
  margin-top: 120px;
}

.category-recommendations h2 {
  line-height: 20px;
}

.category-recommendations .product-category-card {
  position: relative;
  height: 222px;
  min-height: 222px;
}

.category-recommendations .product-category-card--wide {
  height: 216px;
  min-height: 216px;
}

.category-recommendations .product-category-card span {
  display: block;
  padding-right: 44px;
}

.category-recommendations .product-category-card .icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  margin-top: 0;
}

.category-promo-card {
  margin-top: 120px;
}

.category-benefits {
  margin-top: 120px;
}

.category-cta {
  margin-top: 120px;
  margin-bottom: 0;
}

.category-faq {
  margin-top: 120px;
}

@media (max-width: 1199px) {
  .category-group-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}

@media (max-width: 767px) {
  .category-page {
    padding-top: 24px;
  }

  .category-intro .breadcrumbs {
    margin-bottom: 24px;
  }

  .category-intro .breadcrumbs ol {
    align-items: flex-start;
  }

  .category-title {
    width: 100%;
    grid-template-columns: minmax(0, 283px) auto;
    gap: 26px;
    justify-content: space-between;
  }

  .category-title h1 {
    max-width: 283px;
    font-size: 24px;
  }

  .category-title__count {
    font-size: 14px;
  }

  .category-subcategories {
    margin-top: 40px;
  }

  .category-group-grid {
    gap: 24px;
  }

  .subcategory-group__head {
    min-height: 40px;
    grid-template-columns: minmax(0, 1fr) auto 24px;
    gap: 12px;
    padding: 8px 10px 8px 12px;
    font-size: 18px;
  }

  .subcategory-group__list a {
    min-height: 32px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    gap: 14px;
    padding: 5px 14px 5px 12px;
    font-size: 16px;
  }

  .subcategory-group small,
  .subcategory-group__list small {
    font-size: 14px;
  }

  .subcategory-group__toggle {
    margin-top: 8px;
    margin-left: 12px;
    font-size: 15px;
  }

  .category-recommendations {
    margin-top: 60px;
  }

  .category-recommendations h2 {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.2;
  }

  .category-recommendations .product-category-grid {
    gap: 16px;
  }

  .category-recommendations .product-category-card,
  .category-recommendations .product-category-card--wide {
    height: 227px;
    min-height: 227px;
  }

  .category-recommendations .product-category-card--wide {
    height: 249px;
    min-height: 249px;
  }

  .category-promo-card {
    margin-top: 60px;
  }

  .category-benefits {
    margin-top: 60px;
  }

  .category-cta {
    margin-top: 60px;
    min-height: 467px;
    gap: 24px;
    padding-bottom: 24px;
  }

  .category-faq {
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subcategory-group__extra {
    transition: none;
  }
}

/* Subcategory page */
.subcategory-page {
  padding-top: 40px;
}

.subcategory-intro .breadcrumbs {
  margin-bottom: 64px;
}

.subcategory-title {
  grid-template-columns: minmax(0, auto) auto;
}

.leaf-category-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.leaf-category-tabs__item {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid var(--grey-200);
  background: var(--white-100);
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.leaf-category-tabs__item.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white-100);
}

.subcategory-sections {
  margin-top: 40px;
}

.subcategory-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: 0 var(--gap);
  justify-content: space-between;
}

.subcategory-link {
  display: grid;
  min-height: 40px;
  grid-template-columns: minmax(0, 1fr) auto 16px;
  gap: 24px;
  align-items: center;
  padding: 8px 32px 8px 16px;
  border-top: 1px solid var(--green-100);
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.subcategory-link span {
  min-width: 0;
  overflow-wrap: break-word;
}

.subcategory-link small {
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.subcategory-link .icon {
  width: 16px;
  height: 16px;
  justify-self: end;
}

.subcategory-link:hover {
  background: var(--green-100);
}

.subcategory-link:hover .icon {
  color: var(--green-700);
}

.subcategory-catalog {
  margin-top: 120px;
}

.subsubcategory-page .subcategory-catalog {
  margin-top: 40px;
}

.subcategory-catalog__inner {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: 380px minmax(0, 1060px);
  align-items: stretch;
}

.subcategory-filter {
  background: var(--white-200);
}

.subcategory-filter summary,
.filter-group summary {
  list-style: none;
}

.subcategory-filter summary::-webkit-details-marker,
.filter-group summary::-webkit-details-marker {
  display: none;
}

.subcategory-filter > summary {
  display: flex;
  min-height: 89px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 20px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  cursor: default;
  pointer-events: none;
}

.subcategory-filter > summary .icon {
  display: none;
}

.subcategory-filter__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 32px 40px;
}

.subcategory-filter__groups {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}

.subcategory-filter__top,
.filter-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-check {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 1;
}

.subcategory-filter__top .filter-check {
  height: 16px;
  line-height: 0.8;
}

.filter-check input {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--green-100);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background: var(--white-100);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.filter-options .filter-check {
  gap: 8px;
  font-size: 16px;
}

.filter-options .filter-check span {
  min-width: 0;
  flex: 1 1 auto;
}

.filter-options .filter-check small {
  flex: 0 0 auto;
  color: var(--grey-300);
  font-size: 12px;
  font-weight: 400;
}

.filter-options .filter-check[hidden] {
  display: none !important;
}

.filter-options .filter-check input {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  background-size: 16px 16px;
}

.filter-check--extra {
  display: none;
}

.filter-options.is-expanded .filter-check--extra {
  display: flex;
}

.filter-options.is-searching .filter-check--extra {
  display: flex;
}

.subcategory-filter .filter-check input:checked,
.spec-form .checkbox input:checked {
  border-color: var(--grey-100);
  background-color: var(--green-400);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.366 10.517 3.53 7.681 2.589 8.622l3.777 3.777 7.111-7.111-.941-.941-6.17 6.17Z' fill='%2300904D'/%3E%3C/svg%3E");
}

.filter-group {
  padding-top: 11px;
  border-top: 1px solid var(--grey-200);
}

.filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
  cursor: pointer;
}

.filter-group summary .icon {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  transition: transform 220ms ease;
}

.filter-group[open] summary .icon {
  transform: rotate(180deg);
}

.filter-group[open] summary {
  margin-bottom: 24px;
}

.filter-search {
  display: block;
  margin-bottom: 24px;
}

.filter-group[open] .filter-options {
  margin-bottom: 16px;
}

.filter-search input,
.filter-price input,
.spec-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--green-100);
  background: var(--white-100);
  color: var(--black);
  font-size: 16px;
}

.filter-search input {
  padding: 0 16px;
}

.filter-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.filter-price label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--grey-300);
  font-size: 12px;
}

.filter-price input {
  padding: 0 12px;
}

.filter-show-more {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1;
}

.filter-show-more .icon {
  width: 16px;
  height: 16px;
}

.subcategory-filter__reset {
  width: 308px;
  height: 40px;
  min-height: 40px;
  margin: 0;
  border: 0;
  padding: 0 12px;
  background: var(--grey-100);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
}

.spec-card {
  margin: 0 32px 40px;
  padding: 20px 16px;
  background: var(--green-100);
}

.spec-card__title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.spec-card__title span {
  display: block;
  color: var(--green-700);
}

.spec-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  background: transparent;
}

.spec-form label:not(.checkbox) {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1;
}

.spec-form label:not(.checkbox) > span {
  font-size: 16px;
  line-height: 1;
}

.spec-form input:not([type="checkbox"]) {
  height: 40px;
  min-height: 40px;
  padding: 0 16px;
  border-color: var(--green-300);
  font-size: 20px;
  line-height: 1.2;
}

.spec-form .button {
  height: 40px;
  min-height: 40px;
  margin-top: 28px;
  border: 0;
  padding: 0 12px;
}

.spec-form .checkbox {
  align-items: center;
  margin-top: -8px;
  line-height: 1;
}

.spec-form .checkbox input {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--green-100);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background: var(--white-100);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.spec-form .checkbox span {
  color: var(--grey-300);
  font-size: 12px;
  line-height: 1;
}

.spec-form .form-status:empty {
  display: none;
}

.subcategory-results {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 40px;
  padding: 32px;
  background: var(--green-100);
  transition: opacity 180ms ease;
}

.subcategory-results.is-loading {
  opacity: 0.62;
}

.subcategory-results.is-loading .subcategory-products-panel,
.subcategory-results.is-loading .subcategory-sort {
  pointer-events: none;
}

.subcategory-sort {
  display: flex;
  align-items: center;
  gap: 32px;
}

.subcategory-sort__label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
}

.subcategory-sort__label .icon {
  width: 24px;
  height: 24px;
}

.subcategory-sort__tabs {
  display: flex;
  align-items: center;
  gap: 24px;
}

.subcategory-sort__tab {
  padding: 0;
  background: transparent;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.subcategory-sort__tab.is-active {
  color: var(--green-700);
}

.subcategory-products-panel {
  min-width: 0;
}

.subcategory-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 322px));
  gap: 15px;
}

.subcategory-products-grid .product-card {
  width: 322px;
  min-height: 519px;
  flex: none;
  gap: 16px;
  scroll-snap-align: none;
}

.subcategory-products-grid .product-card__title,
.subcategory-products-grid .product-card h3 {
  min-height: 48px;
}

.subcategory-products-grid .product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  color: var(--grey-300);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.pagination a.is-active {
  color: var(--green-700);
}

.pagination__arrow {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--green-100);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pagination .pagination__arrow--next {
  background: var(--green-700);
  color: var(--white-100);
}

.pagination__arrow:hover {
  background: var(--green-300);
  color: var(--black);
  transform: translateX(-2px);
}

.pagination .pagination__arrow--next:hover {
  background: #006b39;
  color: var(--white-100);
  transform: translateX(2px);
}

.pagination__arrow:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
}

.pagination .pagination__arrow--next .icon {
  fill: currentColor;
}

.pagination__arrow .icon {
  width: 24px;
  height: 24px;
}

.subcategory-recommendations {
  margin-top: 120px;
}

@media (max-width: 1199px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 448px));
  }

  .subcategory-link-grid {
    grid-template-columns: 1fr;
  }

  .subcategory-catalog__inner {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .subcategory-products-grid {
    grid-template-columns: repeat(2, minmax(0, 322px));
  }
}

@media (max-width: 767px) {
  .subcategory-page {
    padding-top: 24px;
  }

  .subcategory-intro .breadcrumbs {
    margin-bottom: 24px;
  }

  .subcategory-title {
    width: 100%;
    grid-template-columns: minmax(0, 283px) auto;
    justify-content: space-between;
  }

  .subcategory-title h1 {
    max-width: 283px;
    font-size: 24px;
  }

  .leaf-category-tabs {
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .leaf-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .leaf-category-tabs__item {
    flex: 0 0 auto;
    min-height: 31px;
    font-size: 16px;
  }

  .subcategory-sections {
    margin-top: 40px;
  }

  .subcategory-link-grid {
    gap: 0;
  }

  .subcategory-link {
    min-height: 32px;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    gap: 14px;
    padding: 5px 14px 5px 12px;
    font-size: 16px;
  }

  .subcategory-link small {
    font-size: 14px;
  }

  .subcategory-catalog {
    margin-top: 60px;
  }

  .subcategory-catalog__inner {
    display: block;
    width: 340px;
    margin: 0 auto;
  }

  .subcategory-filter > summary {
    min-height: 42px;
    align-items: center;
    padding: 10px 16px;
    background: var(--grey-100);
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
  }

  .subcategory-filter > summary .icon {
    display: block;
    width: 32px;
    height: 32px;
  }

  .subcategory-filter__content {
    gap: 32px;
    padding: 16px;
  }

  .filter-check,
  .filter-group summary {
    font-size: 16px;
  }

  .subcategory-filter__top .filter-check {
    height: auto;
    line-height: 1;
  }

  .filter-options .filter-check {
    font-size: 14px;
  }

  .filter-search input,
  .filter-price input,
  .spec-form input:not([type="checkbox"]) {
    font-size: 14px;
  }

  .subcategory-filter__reset {
    width: 100%;
  }

  .spec-card {
    display: none;
  }

  .subcategory-results {
    gap: 24px;
    margin-top: 40px;
    padding: 0;
    background: transparent;
  }

  .subcategory-sort {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .subcategory-sort__label {
    font-size: 14px;
  }

  .subcategory-sort__tabs {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .subcategory-sort__tabs::-webkit-scrollbar {
    display: none;
  }

  .subcategory-sort__tab {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .subcategory-products-panel {
    position: relative;
    left: 50%;
    width: 100vw;
    padding: 20px 10px 40px;
    transform: translateX(-50%);
    background: var(--green-100);
  }

  .subcategory-products-grid {
    width: 340px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .subcategory-products-grid .product-card {
    width: 340px;
    min-height: 478px;
    gap: 16px;
  }

  .subcategory-products-grid .product-card__image {
    min-height: 207px;
  }

  .subcategory-products-grid .product-card__image img {
    width: 100%;
    height: 207px;
  }

  .subcategory-products-grid .tag {
    min-height: 26px;
    padding: 6px;
  }

  .subcategory-products-grid .product-card__brand {
    font-size: 14px;
  }

  .subcategory-products-grid .product-card__title,
  .subcategory-products-grid .product-card h3 {
    min-height: 38px;
    font-size: 16px;
    line-height: 1.2;
  }

  .subcategory-products-grid .product-card__price {
    font-size: 18px;
  }

  .subcategory-products-grid .product-card .button {
    min-height: 40px;
    font-size: 14px;
  }

  .pagination {
    width: 340px;
    justify-content: space-between;
    gap: 0;
    margin: 40px auto 0;
  }

  .pagination a,
  .pagination span {
    min-width: 24px;
    min-height: 24px;
    font-size: 18px;
  }

  .pagination__arrow {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .blog-page__grid {
    width: 340px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-page .news-card {
    width: 340px;
  }

.subcategory-recommendations {
  margin-top: 60px;
  }
}

.article-page {
  padding-top: 40px;
}

.article-shell {
  margin-bottom: 120px;
}

.article-page__breadcrumbs {
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.2;
}

.article-head {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.article-title-row {
  display: grid;
  grid-template-columns: minmax(0, 920px) auto;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}

.article-title-row h1 {
  max-width: 920px;
  font-size: 42px;
  line-height: 1.2;
}

.article-share {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 24px;
  padding: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.article-share .icon {
  width: 24px;
  height: 24px;
  color: var(--green-700);
  fill: currentColor;
}

.article-share.is-copied {
  color: var(--green-700);
}

.article-meta {
  display: grid;
  gap: 40px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.article-meta__info {
  display: grid;
  gap: 16px;
}

.article-meta__author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.article-meta__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.article-meta__stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.article-meta .icon {
  width: 24px;
  height: 24px;
  color: var(--green-700);
  fill: currentColor;
}

.article-meta__author a {
  color: var(--grey-300);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1028px) minmax(220px, 332px);
  align-items: start;
  gap: 16px;
}

.article-sidebar {
  position: sticky;
  top: 10px;
  display: grid;
  align-self: start;
  gap: 16px;
}

.article-toc,
.article-help {
  align-self: start;
  z-index: 2;
  background: var(--green-100);
}

.article-toc {
  display: grid;
  gap: 24px;
  padding: 32px 24px;
}

.article-toc__title {
  max-width: none;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.article-toc ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  color: var(--black);
  font-size: 16px;
  line-height: 1.2;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: var(--green-700);
}

.article-toc__subitem a {
  padding-left: 16px;
  color: var(--grey-300);
  font-size: 14px;
}

.article-content {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.4;
}

.article-content > * {
  min-width: 0;
  max-width: 100%;
}

.article-content p,
.article-content li,
.article-content a,
.article-content > div:not(.rich-table-shell) {
  overflow-wrap: anywhere;
}

.article-cover,
.article-media {
  display: grid;
  gap: 12px;
  margin: 0;
}

.article-cover {
  min-height: 455px;
  place-items: center;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.article-content .article-cover {
  margin: 0;
}

.article-cover img {
  width: 100%;
  height: 455px;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.article-media {
  width: 100%;
  max-width: 100%;
  margin: 8px 0;
}

.article-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: var(--white-200);
}

.article-media figcaption {
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.article-content h2,
.article-content h3 {
  max-width: none;
  line-height: 1.2;
  text-transform: none;
  scroll-margin-top: 128px;
}

.article-content h2 {
  margin-top: 16px;
  font-size: 24px;
}

.article-content h3 {
  margin-top: 8px;
  font-size: 20px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: normal;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 0;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content ol {
  padding-left: 24px;
}

.article-content li {
  padding-left: 4px;
}

.article-content ul li {
  position: relative;
  display: block;
  padding-left: 24px;
}

.article-content ul li::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--green-700);
}

.article-content blockquote {
  position: relative;
  display: grid;
  min-height: 122px;
  align-content: center;
  margin: 0;
  padding: 24px 0 24px 24px;
  border: 0;
  border-left: 2px solid var(--green-700);
  background: transparent;
}

.article-content blockquote::before {
  display: none;
}

.article-content blockquote p {
  margin: 0;
  max-width: 632px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.article-content .article-quote {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 122px;
  align-content: center;
  margin: 0;
  padding: 24px 0 24px 24px;
  border: 0;
  border-left: 2px solid var(--green-700);
  background: transparent;
}

.article-content .article-quote::before {
  display: none;
}

.article-content .article-quote blockquote {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.article-content .article-quote blockquote::before {
  display: none;
}

.article-content .article-quote blockquote p {
  margin: 0;
  max-width: 632px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.article-content .article-quote figcaption {
  max-width: 632px;
  color: var(--grey-300);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.article-content .article-quote figcaption::before {
  content: "\2014  ";
}

.article-content h1,
.seo-content h1,
.product-tab-panel h1,
.privacy-content h1 {
  max-width: none;
  margin: 0;
  color: var(--black);
  font-size: 42px;
  line-height: 1.1;
  text-transform: none;
}

.article-content h4,
.seo-content h4,
.product-tab-panel h4,
.privacy-content h4 {
  max-width: none;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

.article-content a,
.seo-content a,
.product-tab-panel a,
.privacy-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content p a,
.article-content li a,
.article-content blockquote a,
.article-content .article-quote a {
  display: inline;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.article-content figure,
.seo-content figure,
.product-tab-panel figure,
.privacy-content figure {
  margin: 24px 0;
}

.article-content .article-media,
.seo-content .article-media,
.product-tab-panel .article-media,
.privacy-content .article-media {
  display: grid;
  gap: 10px;
}

.article-content img,
.seo-content img,
.product-tab-panel img,
.privacy-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article-content .article-media__frame {
  display: block;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: var(--white-200);
}

.article-content .article-media__frame > img,
.article-content .article-media > img,
.article-content img.article-inline-media {
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: var(--white-200);
}

.article-content .article-media__frame > img {
  height: 100%;
}

.article-content img.article-inline-media {
  margin: 24px 0;
}

.article-content figcaption,
.seo-content figcaption,
.product-tab-panel figcaption,
.privacy-content figcaption {
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.35;
}

.article-content .rich-table-wrap,
.seo-content .rich-table-wrap,
.product-tab-panel .rich-table-wrap,
.privacy-content .rich-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.article-content > :has(.rich-table-wrap),
.seo-content > :has(.rich-table-wrap),
.product-tab-panel > :has(.rich-table-wrap),
.privacy-content > :has(.rich-table-wrap),
.rich-table-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.article-content table,
.seo-content table,
.product-tab-panel table,
.privacy-content table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white-100);
}

.article-content th,
.article-content td,
.seo-content th,
.seo-content td,
.product-tab-panel th,
.product-tab-panel td,
.privacy-content th,
.privacy-content td {
  border: 1px solid var(--white-300);
  padding: 14px 16px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.article-content th,
.seo-content th,
.product-tab-panel th,
.privacy-content th {
  background: var(--white-200);
  font-weight: 700;
}

@media (max-width: 767px) {
  .article-content .rich-table-wrap,
  .seo-content .rich-table-wrap,
  .product-tab-panel .rich-table-wrap,
  .privacy-content .rich-table-wrap {
    width: min(100%, calc(100vw - 20px), 340px);
    max-width: min(100%, calc(100vw - 20px), 340px);
  }

  .article-content h1,
  .seo-content h1,
  .product-tab-panel h1,
  .privacy-content h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .article-content h4,
  .seo-content h4,
  .product-tab-panel h4,
  .privacy-content h4 {
    font-size: 16px;
  }

  .article-content table,
  .seo-content table,
  .product-tab-panel table,
  .privacy-content table {
    min-width: 520px;
  }

  .article-content th,
  .article-content td,
  .seo-content th,
  .seo-content td,
  .product-tab-panel th,
  .product-tab-panel td,
  .privacy-content th,
  .privacy-content td {
    padding: 12px;
    font-size: 14px;
  }
}

.article-help {
  display: grid;
  gap: 24px;
  padding: 32px 24px;
}

.article-help__title {
  max-width: none;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.article-section-head__title {
  max-width: none;
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-help p {
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.article-help .button {
  width: max-content;
  min-width: 164px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.article-related-articles {
  margin-bottom: 120px;
}

.article-section-head {
  align-items: center;
}

.article-section-head h2,
.article-products-head h2 {
  max-width: none;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-news-row {
  grid-template-columns: repeat(3, minmax(0, 448px));
  justify-content: center;
}

.article-hit-section {
  padding: 64px 0;
  background: var(--green-200);
}

.article-hit-section .product-card {
  width: calc((100% - 48px) / 4);
  flex-basis: calc((100% - 48px) / 4);
}

.article-products-head .slider-controls .icon-button:not(.icon-button--primary),
.article-section-head .slider-controls .icon-button:not(.icon-button--primary) {
  background: var(--green-100);
}

@media (max-width: 1199px) {
  .article-page {
    padding-top: 24px;
  }

  .article-shell {
    margin-bottom: 60px;
  }

  .article-page__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .article-head {
    gap: 20px;
    margin-bottom: 24px;
  }

  .article-title-row {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .article-title-row h1 {
    max-width: none;
    font-size: 24px;
  }

  .article-share {
    order: -1;
    min-height: 24px;
    justify-content: flex-start;
    font-size: 14px;
  }

  .article-meta {
    gap: 32px;
    font-size: 14px;
  }

  .article-meta__stats {
    gap: 24px;
  }

  .article-meta__stat {
    font-size: 18px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-sidebar {
    position: static;
    order: -1;
    gap: 24px;
  }

  .article-toc,
  .article-help {
    position: static;
  }

  .article-toc {
    gap: 20px;
    padding: 24px;
  }

  .article-toc__title {
    font-size: 18px;
  }

  .article-toc a {
    font-size: 14px;
  }

  .article-content {
    gap: 20px;
    font-size: 14px;
  }

  .article-cover {
    min-height: 228px;
  }

  .article-cover img {
    height: 228px;
  }

  .article-media img {
    height: 190px;
  }

  .article-content .article-media__frame,
  .article-content .article-media > img,
  .article-content img.article-inline-media {
    height: 190px;
  }

  .article-content h2 {
    margin-top: 12px;
    font-size: 18px;
  }

  .article-content h3 {
    font-size: 16px;
  }

  .article-content p,
  .article-content li {
    font-size: 14px;
    line-height: 1.35;
  }

  .article-content blockquote {
    min-height: 96px;
    padding: 20px 0 20px 16px;
  }

  .article-content blockquote::before {
    display: none;
  }

  .article-content blockquote p {
    font-size: 16px;
    line-height: 1.25;
  }

  .article-content .article-quote {
    min-height: 96px;
    gap: 10px;
    padding: 20px 0 20px 16px;
  }

  .article-content .article-quote::before {
    display: none;
  }

  .article-content .article-quote blockquote p {
    font-size: 16px;
    line-height: 1.25;
  }

  .article-content .article-quote figcaption {
    font-size: 14px;
  }

  .article-help {
    padding: 32px 24px;
  }

  .article-help__title {
    font-size: 24px;
  }

  .article-help p {
    font-size: 14px;
  }

  .article-related-articles {
    margin-bottom: 60px;
  }

  .article-section-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
  }

  .article-section-head h2,
  .article-products-head h2 {
    font-size: 18px;
  }

  .article-section-head .slider-controls,
  .article-products-head .slider-controls {
    gap: 16px;
  }

  .article-section-head .icon-button,
  .article-products-head .icon-button {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .article-news-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .article-news-row::-webkit-scrollbar {
    display: none;
  }

  .article-news-row .news-card {
    width: 340px;
    flex: 0 0 340px;
    scroll-snap-align: start;
  }

  .article-hit-section {
    position: relative;
    left: 50%;
    width: 100vw;
    padding: 24px 10px 64px;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .article-hit-section .container {
    display: flex;
    width: min(100%, 340px);
    flex-direction: column;
    margin: 0 auto;
  }

  .article-products-head {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .article-products-head > div:first-child {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .article-hit-section .product-related__catalog--desktop {
    display: none;
  }

  .article-hit-section .product-related__catalog--mobile {
    display: flex;
    width: 100%;
    min-height: 37px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }

  .article-hit-section .product-related__catalog--mobile .icon {
    width: 16px;
    height: 16px;
  }

  .article-products-row {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .article-hit-section .product-card {
    width: 322px;
    flex: 0 0 322px;
    min-height: 478px;
    gap: 16px;
    padding: 12px 12px 24px;
  }

  .article-hit-section .product-card__image {
    min-height: 207px;
  }

  .article-hit-section .product-card__image img {
    width: 100%;
    height: 207px;
    object-fit: contain;
  }

  .article-hit-section .product-card__brand {
    font-size: 14px;
    line-height: 1.2;
  }

  .article-hit-section .product-card__title,
  .article-hit-section .product-card h3 {
    min-height: 38px;
    max-height: 38px;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.2;
  }

  .article-hit-section .product-card__price {
    font-size: 18px;
    line-height: 1.2;
  }

  .article-hit-section .product-card .button {
    width: 100%;
    min-height: 40px;
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .article-shell,
  .article-related-articles > .container {
    width: 340px;
  }

  .article-page__breadcrumbs {
    font-size: 14px;
  }

  .article-meta {
    gap: 24px;
  }

  .article-meta__stats {
    gap: 20px;
  }

  .article-meta__stat {
    font-size: 16px;
  }

  .article-content ul,
  .article-content ol {
    gap: 10px;
  }

  .article-content ul {
    padding-left: 0;
  }

  .article-content ol {
    padding-left: 20px;
  }

  .article-content ul li {
    padding-left: 18px;
  }

  .article-content ul li::before {
    top: 6px;
    width: 6px;
    height: 6px;
  }

  .article-related-articles .news-card > img {
    height: 227px;
  }

.article-related-articles .news-card__body {
    padding: 32px 24px 24px;
  }
}

/* 404 page */
.error-body,
.privacy-body,
.cookie-body {
  min-height: 100vh;
}

.error-page {
  margin-bottom: 120px;
}

.error-page__inner {
  display: grid;
  gap: 40px;
  padding-top: 40px;
}

.error-breadcrumbs {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
}

.error-breadcrumbs a {
  color: var(--black);
}

.error-breadcrumbs span:last-child {
  color: var(--grey-300);
}

.error-hero {
  display: grid;
  justify-items: center;
  gap: 100px;
}

.error-hero__image {
  width: 680px;
  height: 210px;
  object-fit: contain;
}

.error-hero__copy {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 20px;
  color: var(--black);
  text-align: center;
}

.error-hero__copy h1 {
  max-width: none;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.error-hero__copy p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: normal;
}

.error-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.error-hero__actions .button {
  width: 308px;
  min-height: 40px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.error-hero__actions .button--ghost {
  background: var(--grey-100);
}

/* Privacy policy page */
.privacy-page {
  margin-bottom: 120px;
}

.privacy-page__inner {
  display: grid;
  gap: 64px;
  padding-top: 40px;
}

.privacy-breadcrumbs {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2;
}

.privacy-breadcrumbs a {
  color: var(--black);
}

.privacy-breadcrumbs span:last-child {
  color: var(--grey-300);
}

.privacy-content {
  display: grid;
  gap: 40px;
  color: var(--black);
}

.privacy-content h1 {
  max-width: none;
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  text-transform: none;
}

.privacy-content section {
  display: grid;
  gap: 24px;
}

.privacy-content h2 {
  max-width: none;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  text-transform: none;
}

.privacy-content p {
  margin: 0;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: normal;
}

@media (max-width: 767px) {
  .error-body .site-header,
  .privacy-body .site-header,
  .cookie-body .site-header {
    min-height: 64px;
  }

  .error-body .site-header.is-open,
  .privacy-body .site-header.is-open,
  .cookie-body .site-header.is-open {
    bottom: 0;
  }

  .error-body .header-main,
  .privacy-body .header-main,
  .cookie-body .header-main {
    top: 64px;
    height: 0;
  }

  .error-body .site-header.is-open .header-main,
  .privacy-body .site-header.is-open .header-main,
  .cookie-body .site-header.is-open .header-main {
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
  }

  .error-page {
    margin-bottom: 60px;
  }

  .error-body .site-footer,
  .privacy-body .site-footer,
  .cookie-body .site-footer {
    margin-top: 0;
    padding-bottom: 54px;
  }

  .error-page__inner {
    gap: 24px;
    padding-top: 24px;
  }

  .error-breadcrumbs {
    font-size: 14px;
  }

  .error-hero {
    gap: 80px;
  }

  .error-hero__image {
    width: 340px;
    height: 105px;
  }

  .error-hero__copy h1 {
    font-size: 18px;
  }

  .error-hero__copy p {
    max-width: 340px;
    font-size: 16px;
  }

  .error-hero__actions {
    display: grid;
    width: 100%;
    gap: 16px;
  }

  .error-hero__actions .button {
    width: 100%;
    font-size: 14px;
  }

  .privacy-page {
    margin-bottom: 60px;
  }

  .privacy-page__inner {
    gap: 24px;
    padding-top: 24px;
  }

  .privacy-breadcrumbs {
    font-size: 14px;
  }

  .privacy-content {
    gap: 32px;
  }

  .privacy-content h1 {
    font-size: 24px;
  }

  .privacy-content section {
    gap: 20px;
  }

  .privacy-content h2 {
    font-size: 18px;
  }

  .privacy-content p {
    font-size: 14px;
  }
}

.promotions-page {
  padding-top: 40px;
}

.promotions-listing {
  margin-bottom: 120px;
}

.promotions-page__breadcrumbs {
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.2;
}

.promotions-page__content {
  display: grid;
  gap: 40px;
}

.promotions-page h1 {
  max-width: none;
  font-size: 42px;
  line-height: 1.2;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: 16px;
  align-items: stretch;
}

.promotion-card {
  display: flex;
  min-height: 288px;
  min-width: 0;
  gap: 16px;
  overflow: hidden;
  padding: 24px 0 24px 24px;
  background: var(--green-200);
  color: var(--black);
}

a.promotion-card {
  transition: background-color 0.2s ease;
}

a.promotion-card:hover {
  background: var(--green-100);
}

.promotion-card__content {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.promotion-card__date,
.promotion-card__discount {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.promotion-card__date {
  min-height: 24px;
  padding: 4px 8px;
  background: var(--green-600);
}

.promotion-card__text {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.promotion-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.promotion-card__description {
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.promotion-card__prices {
  display: grid;
  gap: 3px;
  align-self: start;
}

.promotion-card__price-row {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.promotion-card__old-price {
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
  text-decoration: line-through;
}

.promotion-card__discount {
  padding: 4px;
  background: var(--blue-100);
}

.promotion-card__new-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.promotion-card__media {
  display: grid;
  width: 240px;
  min-width: 240px;
  place-items: center;
  align-self: center;
  overflow: hidden;
}

.promotion-card__media img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

.promotions-empty {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--green-100);
}

.promotions-empty h2 {
  text-transform: none;
}

.promotions-empty[hidden] {
  display: none;
}

.promotions-pagination {
  margin-top: 0;
}

.promotions-cta {
  margin-bottom: 120px;
  background: transparent;
}

.promotions-cta__inner {
  grid-template-columns: minmax(0, 872px) minmax(0, 1fr);
  min-height: auto;
  gap: 40px;
  align-items: start;
  padding: 40px;
  background: var(--green-100);
}

.promotions-cta__copy {
  max-width: 872px;
}

.promotions-cta__copy h2 {
  max-width: 872px;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.promotions-cta__form {
  display: grid;
  max-width: none;
  min-height: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 8px 40px;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.promotions-cta__form label:not(.checkbox) {
  gap: 8px;
}

.promotions-cta__form label:not(.checkbox) + label:not(.checkbox) {
  margin-top: 0;
}

.promotions-cta__form label:not(.checkbox) > span {
  font-size: 14px;
  line-height: 1.2;
}

.promotions-cta__form input:not([type="checkbox"]) {
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
}

.promotions-cta__form .button {
  width: 100%;
  height: 40px;
  min-height: 40px;
  margin-top: 0;
  font-size: 14px;
}

.promotions-cta__form .checkbox {
  grid-column: 3;
  margin-top: 0;
}

.promotions-cta__form .form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin-top: 8px;
}

.promotions-cta__form .form-status:empty {
  display: none;
}

@media (max-width: 1199px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .promotions-cta__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .promotions-page {
    padding-top: 24px;
  }

  .promotions-listing {
    width: 340px;
    margin-bottom: 60px;
  }

  .promotions-page__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .promotions-page__content {
    gap: 40px;
  }

  .promotions-page h1 {
    font-size: 24px;
  }

  .promotions-grid {
    width: 340px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promotion-card {
    width: 340px;
    min-height: 220px;
    flex-direction: column;
    gap: 16px;
    padding: 12px 0 16px 12px;
  }

  .promotion-card__content {
    gap: 16px;
    padding-right: 16px;
  }

  .promotion-card__date {
    padding: 6px;
  }

  .promotion-card__text {
    gap: 10px;
  }

  .promotion-card__title {
    font-size: 18px;
  }

  .promotion-card__description {
    font-size: 14px;
  }

  .promotion-card__prices {
    width: calc(100% - 112px);
  }

  .promotion-card__old-price {
    font-size: 14px;
  }

  .promotion-card__new-price {
    font-size: 18px;
  }

  .promotion-card__media {
    width: 100px;
    min-width: 100px;
    margin-left: auto;
    margin-top: -103px;
    align-self: end;
  }

  .promotion-card__media img {
    width: 100px;
    height: 100px;
  }

  .promotions-empty {
    width: 340px;
    padding: 24px;
  }

  .promotions-cta {
    width: 340px;
    margin: 0 auto 60px;
  }

  .promotions-cta__inner {
    width: 340px;
    gap: 40px;
    padding: 24px 10px 60px;
  }

  .promotions-cta__copy h2 {
    font-size: 18px;
  }

  .promotions-cta__form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promotions-cta__form label:not(.checkbox),
  .promotions-cta__form label:not(.checkbox) + label:not(.checkbox) {
    margin-top: 0;
  }

  .promotions-cta__form .button {
    margin-top: 0;
  }

  .promotions-cta__form .checkbox,
  .promotions-cta__form .form-status {
    grid-column: auto;
  }
}

/* China logistics page */
.logistics-page {
  padding-top: 24px;
}

.logistics-hero {
  margin-bottom: 56px;
}

.logistics-hero__breadcrumbs {
  margin-bottom: 64px;
  font-size: 16px;
}

.logistics-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 681px) minmax(0, 678px);
  gap: 17px;
  align-items: start;
}

.logistics-hero__content {
  display: grid;
  min-height: 381px;
  align-content: start;
  gap: 40px;
}

.logistics-hero__content h1 {
  max-width: 681px;
}

.logistics-hero__content p {
  max-width: 565px;
  font-size: 20px;
  line-height: 1.2;
}

.logistics-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.logistics-hero__actions .button {
  min-width: 218px;
}

.logistics-hero__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.logistics-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logistics-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
  margin-bottom: 120px;
}

.logistics-benefits .benefit-card {
  gap: 0;
}

.logistics-benefits .benefit-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.logistics-benefits .benefit-card__icon img {
  width: 32px;
  height: 32px;
}

.logistics-benefits .benefit-card__title,
.logistics-benefits .benefit-card h3 {
  position: static;
  font-size: 20px;
  line-height: 1.2;
}

.logistics-benefits .benefit-card p {
  position: absolute;
  top: 104px;
  right: 16px;
  left: 16px;
  max-width: none;
  margin-top: 0;
}

.logistics-section-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  justify-content: space-between;
  gap: var(--gap);
  margin-top: 120px;
  margin-bottom: 64px;
}

.logistics-section-head h2,
.logistics-calculator-section .delivery-calculator-section__intro h2,
.logistics-terms h2,
.logistics-trust h2 {
  max-width: 680px;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.logistics-calculator-section .delivery-calculator-section__intro h2 .text-accent,
.logistics-global-cta h2 span {
  color: var(--green-700);
}

.logistics-section-head p,
.logistics-calculator-section .delivery-calculator-section__intro p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-calculator-section .delivery-calculator-section__intro h2,
.logistics-calculator-section .delivery-calculator-section__intro p,
.logistics-calculator > h2,
.logistics-calculator .delivery-form-step legend,
.logistics-calculator label > span,
.logistics-calculator input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.logistics-calculator .radio-option span,
.logistics-calculator .checkbox span,
.logistics-calculator .delivery-calculator__submit .button,
.logistics-calculator .file-upload__button span,
.logistics-calculator .file-upload__name {
  letter-spacing: -0.02em;
}

.logistics-calculator .delivery-calculator__submit .button {
  width: auto;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  gap: 10px;
  padding: 12px;
  border: 0;
  background: var(--green-700);
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.logistics-countries {
  padding-top: 0;
  padding-bottom: 60px;
}

.logistics-country-grid {
  display: grid;
  grid-template-columns: 448px repeat(2, minmax(0, 448px));
  grid-template-rows: repeat(2, 207px);
  gap: 20px 16px;
}

.logistics-country-grid--three {
  width: min(100%, 912px);
  grid-template-columns: 448px minmax(0, 448px);
}

.country-card {
  position: relative;
  display: grid;
  min-height: 207px;
  grid-template-columns: minmax(0, 1fr) 95px;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--green-100);
  color: var(--black);
  text-decoration: none;
}

.country-card--large {
  min-height: 434px;
  grid-row: span 2;
  background: var(--green-200);
}

.country-card--disabled {
  grid-template-columns: minmax(0, 1fr);
  cursor: default;
}

.country-card--disabled > .icon {
  display: none;
}

.country-card__title {
  display: block;
  margin-bottom: 24px;
  color: var(--black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.country-card span {
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.country-card img {
  width: 95px;
  height: 64px;
  object-fit: cover;
}

.country-card p {
  grid-column: 1;
  align-self: end;
  font-size: 16px;
  line-height: 1.2;
}

.country-card > .icon {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 32px;
  height: 32px;
}

.logistics-countries__all {
  display: flex;
  width: 448px;
  height: 40px;
  margin: 32px 0 0 auto;
}

.logistics-trust {
  padding-top: 0;
  padding-bottom: 120px;
}

.logistics-logo-track {
  display: grid;
  grid-auto-columns: minmax(260px, 332px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.logistics-logo-card {
  display: grid;
  height: 160px;
  place-items: center;
  scroll-snap-align: start;
  background: var(--green-100);
}

.logistics-logo-card img {
  max-width: 190px;
  max-height: 96px;
  object-fit: contain;
}

.logistics-calculator-section {
  scroll-margin-top: 140px;
  padding-bottom: 32px;
}

.logistics-calculator-section .container {
  gap: 100px;
}

.logistics-calculator__wide {
  grid-column: 1 / -1;
}

.logistics-calculator .delivery-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logistics-calculator .delivery-form-step:nth-of-type(2) .delivery-form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.china-logistics-page .logistics-calculator .delivery-form-step:nth-of-type(2) .delivery-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logistics-calculator .form-status:empty {
  display: none;
}

.logistics-methods {
  padding: 88px 0 120px;
}

.logistics-methods__grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 680px);
  gap: var(--gap);
  align-items: stretch;
}

.logistics-methods__info {
  display: grid;
  min-height: 508px;
  align-content: space-between;
  gap: 48px;
  padding-right: 16px;
}

.logistics-methods__intro {
  display: grid;
  gap: 24px;
  max-width: 448px;
}

.logistics-methods h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.logistics-methods__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-methods__meta {
  display: grid;
  gap: 32px;
}

.logistics-methods__payments,
.logistics-methods__contacts {
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.logistics-methods h3 {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-methods__payments h3,
.logistics-methods__contacts h3 {
  color: var(--grey-300);
}

.logistics-methods__payment-list {
  justify-content: flex-start;
}

.logistics-methods__contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 56px;
}

.logistics-methods__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.logistics-methods__contact-list .icon {
  width: 24px;
  height: 24px;
  color: var(--green-700);
}

.logistics-methods__cards {
  display: grid;
  gap: 16px;
}

.logistics-method-card {
  min-height: 159px;
  background: var(--green-100);
}

.logistics-method-card__top {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  background: var(--green-200);
}

.logistics-method-card__top .icon {
  width: 32px;
  height: 32px;
  color: var(--green-700);
}

.logistics-method-card__top span {
  color: var(--grey-300);
  font-size: 14px;
  line-height: 1.2;
}

.logistics-method-card__title {
  display: block;
  margin: 24px 16px;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.logistics-method-card p {
  max-width: 560px;
  margin: 0 16px 16px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.logistics-terms {
  padding: 120px 0;
}

.logistics-terms__grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 680px);
  gap: var(--gap);
  align-items: start;
}

.logistics-terms__media {
  min-height: 668px;
  overflow: hidden;
  background: var(--green-100);
}

.logistics-terms__media img {
  width: 100%;
  height: 100%;
  min-height: 668px;
  object-fit: cover;
}

.logistics-terms__content {
  display: grid;
  gap: 40px;
  align-content: start;
}

.logistics-terms__content > p {
  max-width: 448px;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-terms__aside {
  display: grid;
  min-height: 668px;
  align-content: space-between;
  gap: 40px;
}

.logistics-terms__aside > p {
  max-width: 448px;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-terms h3 {
  font-size: 16px;
  line-height: 1.2;
}

.logistics-terms .delivery-payments {
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.logistics-terms .delivery-payments h3,
.logistics-terms__contacts h3 {
  margin-bottom: 32px;
  color: var(--grey-300);
}

.logistics-terms__contacts {
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.logistics-terms__contacts a {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-right: 40px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.logistics-terms__contacts .icon {
  width: 24px;
  height: 24px;
  color: var(--green-700);
}

.logistics-term-cards {
  display: grid;
  gap: 16px;
}

.logistics-term-cards--times {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logistics-term-card {
  min-height: 212px;
  background: var(--green-100);
}

.logistics-term-cards--times .logistics-term-card {
  min-height: 244px;
}

.logistics-term-card > div {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--green-200);
}

.logistics-term-card .icon {
  width: 48px;
  height: 48px;
  color: var(--green-700);
}

.logistics-term-card span {
  color: var(--grey-300);
  font-size: 20px;
}

.logistics-term-card h3,
.logistics-term-card p {
  margin: 0 16px;
}

.logistics-term-card h3 {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.2;
}

.logistics-term-card p {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.2;
}

.logistics-steps {
  padding-top: 0;
  padding-bottom: 60px;
}

.logistics-steps__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 64px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: logistics-step;
}

.logistics-steps__list li {
  position: relative;
  display: grid;
  gap: 40px;
  align-content: start;
  min-height: 210px;
}

.logistics-steps__list li.is-final {
  padding-top: 0;
}

.logistics-steps__list li::before {
  position: absolute;
  top: 19px;
  left: 64px;
  right: 32px;
  height: 2px;
  border-top: 2px dashed var(--green-600);
  content: "";
}

.logistics-steps__list li::after {
  position: absolute;
  top: 8px;
  right: 0;
  color: var(--green-600);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
  content: "»";
}

.logistics-steps__list li.is-final::before,
.logistics-steps__list li.is-final::after {
  display: none;
}

.logistics-steps__list li.is-final::before {
  border-top-style: solid;
  border-color: var(--green-700);
}

.logistics-steps__list li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.logistics-steps__final-top {
  display: flex;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.logistics-steps__final-top > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--green-700);
  color: var(--white-100);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}

.logistics-steps__final-track {
  display: flex;
  flex: 1 1 auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: var(--green-700);
}

.logistics-steps__final-track i {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  border-top: 2px solid currentColor;
}

.logistics-steps__final-track .icon {
  width: 32px;
  height: 32px;
}

.logistics-steps__final-track .logistics-steps__final-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.logistics-steps__list h3 {
  min-height: 48px;
  font-size: 20px;
  line-height: 1.2;
}

.logistics-steps__list p {
  font-size: 16px;
  line-height: 1.2;
}

.logistics-global-cta {
  margin-top: 120px;
  margin-bottom: 120px;
}

.logistics-global-cta .product-bottom-cta {
  margin-top: 0;
  margin-bottom: 0;
}

.logistics-faq {
  padding-bottom: 120px;
}

.modal__lead {
  margin: 0 0 24px;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.2;
}

.lead-form--logistics-quote label em {
  color: var(--red-100);
  font-style: normal;
}

@media (max-width: 1199px) {
  .logistics-hero__grid,
  .logistics-section-head,
  .logistics-methods__grid,
  .logistics-terms__grid,
  .logistics-calculator-section .delivery-calculator-section__intro {
    grid-template-columns: 1fr;
  }

  .logistics-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .country-card--large {
    grid-row: auto;
  }

  .logistics-calculator .delivery-form-step:nth-of-type(2) .delivery-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-term-cards--times {
    grid-template-columns: 1fr;
  }

  .logistics-steps__scroller {
    overflow-x: auto;
  }

  .logistics-steps__list {
    width: 1264px;
    grid-template-columns: repeat(10, 240px);
    grid-template-rows: 1fr;
  }
}

@media (max-width: 767px) {
  .logistics-page {
    padding-top: 16px;
  }

  .logistics-page .container {
    width: 340px;
    max-width: calc(100vw - 20px);
  }

  .logistics-hero {
    margin-bottom: 64px;
  }

  .logistics-hero__breadcrumbs {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .logistics-hero__grid {
    gap: 40px;
  }

  .logistics-hero__content {
    min-height: auto;
    gap: 40px;
  }

  .logistics-hero__content h1 {
    font-size: 24px;
  }

  .logistics-hero__content p {
    font-size: 16px;
  }

  .logistics-hero__actions {
    order: 3;
    margin-top: 0;
  }

  .logistics-hero__actions .button {
    width: 100%;
  }

  .logistics-hero__media {
    aspect-ratio: 340 / 191;
  }

  .logistics-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }

  .logistics-benefits .benefit-card {
    width: 340px;
    height: 148px;
    min-height: 148px;
    padding: 16px;
  }

  .logistics-benefits .benefit-card__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .logistics-benefits .benefit-card__icon img {
    width: 24px;
    height: 24px;
  }

  .logistics-benefits .benefit-card__title,
  .logistics-benefits .benefit-card h3 {
    position: static;
    font-size: 18px;
  }

  .logistics-benefits .benefit-card p {
    top: 80px;
    font-size: 14px;
    line-height: 1.1;
  }

  .logistics-section-head {
    gap: 16px;
    margin-bottom: 40px;
  }

  .logistics-section-head h2,
  .logistics-calculator-section .delivery-calculator-section__intro h2,
  .logistics-terms h2,
  .logistics-trust h2 {
    font-size: 18px;
  }

  .logistics-section-head p,
  .logistics-calculator-section .delivery-calculator-section__intro p {
    font-size: 14px;
  }

  .logistics-countries {
    padding-bottom: 60px;
  }

  .logistics-country-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .country-card,
  .country-card--large {
    min-height: 168px;
    padding: 24px;
  }

  .country-card--large {
    min-height: 297px;
  }

  .country-card__title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .country-card p {
    font-size: 14px;
  }

  .country-card > .icon {
    right: 24px;
    bottom: 24px;
  }

  .logistics-countries__all {
    width: 100%;
    margin-top: 24px;
  }

  .logistics-trust {
    padding-bottom: 60px;
  }

  .logistics-trust .section-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .logistics-trust .slider-controls {
    flex: 0 0 auto;
  }

  .logistics-logo-track {
    width: 340px;
    grid-auto-columns: 260px;
  }

  .logistics-logo-card {
    height: 132px;
  }

  .logistics-calculator-section {
    padding: 24px 0 60px;
    scroll-margin-top: 90px;
  }

  .logistics-calculator-section .container {
    gap: 40px;
  }

  .logistics-calculator {
    padding: 24px 12px;
  }

  .logistics-calculator .delivery-form-grid,
  .china-logistics-page .logistics-calculator .delivery-form-step:nth-of-type(2) .delivery-form-grid,
  .logistics-calculator .delivery-form-step:nth-of-type(2) .delivery-form-grid {
    grid-template-columns: 1fr;
  }

  .logistics-calculator__wide {
    grid-column: auto;
  }

  .logistics-methods {
    padding: 60px 0;
  }

  .logistics-methods__grid,
  .logistics-methods__info,
  .logistics-methods__cards {
    gap: 16px;
  }

  .logistics-methods__info {
    min-height: auto;
    padding-right: 0;
  }

  .logistics-methods__intro {
    max-width: none;
    gap: 16px;
  }

  .logistics-methods h2 {
    font-size: 18px;
  }

  .logistics-methods__intro p,
  .logistics-method-card p {
    font-size: 14px;
  }

  .logistics-methods__meta {
    gap: 24px;
  }

  .logistics-methods__payments,
  .logistics-methods__contacts {
    padding-top: 24px;
  }

  .logistics-methods h3 {
    margin-bottom: 24px;
  }

  .logistics-methods__contact-list {
    display: grid;
    gap: 16px;
  }

  .logistics-methods__contact-list a {
    font-size: 14px;
  }

  .logistics-method-card {
    min-height: 177px;
  }

  .logistics-method-card__top {
    min-height: 64px;
  }

  .logistics-method-card__title {
    margin-top: 16px;
    font-size: 18px;
  }

  .logistics-method-card p {
    margin-top: 20px;
  }

  .logistics-terms {
    padding: 60px 0;
  }

  .logistics-terms__aside {
    min-height: auto;
    gap: 40px;
  }

  .logistics-terms__media,
  .logistics-terms__media img {
    min-height: 191px;
  }

  .logistics-terms__content {
    gap: 24px;
  }

  .logistics-terms__aside > p,
  .logistics-terms__content > p,
  .logistics-term-card p {
    font-size: 14px;
  }

  .logistics-terms .delivery-payments h3,
  .logistics-terms__contacts h3 {
    margin-bottom: 24px;
  }

  .logistics-terms__contacts a {
    display: flex;
    margin-right: 0;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .logistics-term-card {
    min-height: 177px;
  }

  .logistics-term-card > div {
    height: 64px;
  }

  .logistics-term-card .icon {
    width: 32px;
    height: 32px;
  }

  .logistics-term-card span {
    font-size: 16px;
  }

  .logistics-term-card h3 {
    margin-top: 16px;
    font-size: 18px;
  }

  .logistics-term-card p {
    margin-top: 20px;
  }

  .logistics-steps {
    padding-bottom: 60px;
  }

  .logistics-steps__scroller {
    width: 340px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .logistics-steps__list {
    width: 2544px;
    grid-template-columns: repeat(10, 240px);
    gap: 16px;
  }

  .logistics-steps__list li {
    min-height: 210px;
    gap: 40px;
  }

  .logistics-steps__list li.is-final {
    padding-top: 0;
  }

  .logistics-steps__list li:nth-child(5)::before,
  .logistics-steps__list li:nth-child(5)::after {
    display: block;
  }

  .logistics-steps__list li > span {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .logistics-steps__final-top {
    gap: 16px;
  }

  .logistics-steps__final-top > span {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .logistics-steps__final-track .logistics-steps__final-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .logistics-steps__list li::before {
    top: 15px;
    left: 56px;
    right: 28px;
  }

  .logistics-steps__list li::after {
    top: 4px;
  }

  .logistics-steps__list h3 {
    min-height: 44px;
    font-size: 18px;
  }

  .logistics-steps__list p {
    font-size: 14px;
  }

  .logistics-global-cta {
    width: 340px;
    margin: 120px auto 60px;
  }

  .logistics-global-cta .product-bottom-cta {
    width: 340px;
    min-height: auto;
    gap: 40px;
    padding: 24px 10px 60px;
  }

  .logistics-global-cta .product-bottom-cta h2 {
    font-size: 18px;
  }

  .logistics-global-cta .product-bottom-cta__form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .logistics-faq {
    padding-bottom: 60px;
  }

  .modal__lead {
    margin: 0 0 16px;
    font-size: 14px;
  }
}

.checkbox input {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--grey-200);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background: var(--white-100);
  background-image: none;
  accent-color: var(--green-700);
}

.checkbox input:checked {
  border-color: var(--green-700) !important;
  background: var(--green-700) !important;
  background-image: none !important;
}

.checkbox input:checked::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--white-100) !important;
  border-left: 2px solid var(--white-100) !important;
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.logistics-terms {
  padding: 0 0 60px;
}

.logistics-terms__grid {
  display: grid;
  grid-template-columns: minmax(0, 568px) minmax(0, 680px);
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding-top: 120px;
}

.logistics-terms__media {
  display: grid;
  min-height: 344px;
  align-content: space-between;
  gap: 40px;
  overflow: visible;
  background: transparent;
}

.logistics-terms__media h2 {
  max-width: 520px;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.logistics-terms__media img {
  width: 432px;
  height: 240px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.logistics-term-cards--times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.logistics-term-cards--times .logistics-term-card--time {
  display: grid;
  min-height: 104px;
  align-content: start;
  gap: 12px;
  padding: 16px;
  background: var(--green-200);
}

.logistics-term-card--time h3,
.logistics-term-card--time p {
  margin: 0;
}

.logistics-term-card--time h3 {
  font-size: 20px;
  line-height: 1.2;
}

.logistics-term-card--time p {
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .logistics-terms__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logistics-terms__media {
    min-height: auto;
  }

  .logistics-terms__media img {
    width: min(432px, 100%);
    height: auto;
    aspect-ratio: 432 / 240;
  }

  .logistics-term-cards--times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .logistics-terms__grid {
    gap: 24px;
  }

  .logistics-terms__media {
    gap: 40px;
  }

  .logistics-terms__media h2 {
    font-size: 18px;
  }

  .logistics-terms__media img {
    width: 100%;
    height: 191px;
  }

  .logistics-term-cards--times {
    grid-template-columns: 1fr;
  }

  .logistics-term-cards--times .logistics-term-card--time {
    min-height: 104px;
    padding: 16px;
  }

  .logistics-term-card--time h3 {
    font-size: 20px;
  }

  .logistics-term-card--time p {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .header-main__inner {
    position: relative;
    background: var(--white-100);
  }

  .catalog-mega-trigger {
    position: static;
    width: 133px;
    flex: 0 0 133px;
  }

  .catalog-mega-trigger::after {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
    content: "";
  }

  .header-main .main-nav,
  .header-main .main-nav a {
    background: transparent;
  }

  .catalog-mega-trigger > .button--catalog {
    width: 133px;
  }

  .catalog-mega-toggle__chevron {
    width: 14px;
    height: 14px;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .catalog-mega-trigger.is-open .catalog-mega-toggle__chevron {
    transform: rotate(180deg);
  }

  .catalog-mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    display: grid;
    width: 100%;
    height: min(660px, calc(100vh - 176px));
    grid-template-columns: 292px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--grey-100);
    background: var(--white-100);
    box-shadow: 0 18px 48px rgb(20 48 40 / 18%);
    color: var(--black);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    visibility: hidden;
  }

  .catalog-mega-trigger.is-open .catalog-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .catalog-mega-menu__roots {
    display: grid;
    min-height: 0;
    align-content: start;
    overflow-y: auto;
    border-right: 1px solid var(--grey-100);
    background: #f8faf9;
  }

  .catalog-mega-menu__root {
    display: grid;
    min-height: 67px;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--grey-100);
    padding: 10px 16px;
    color: var(--black);
    font-size: 14px;
    line-height: 1.25;
    transition: background-color 0.16s ease, color 0.16s ease;
  }

  .catalog-mega-menu__root img,
  .catalog-mega-menu__root-placeholder {
    width: 36px;
    height: 36px;
  }

  .catalog-mega-menu__root img {
    object-fit: contain;
  }

  .catalog-mega-menu__root-placeholder {
    display: block;
    border-radius: 50%;
    background: var(--green-200);
  }

  .catalog-mega-menu__root > .icon {
    width: 16px;
    height: 16px;
    color: var(--green-700);
  }

  .catalog-mega-menu__root:hover,
  .catalog-mega-menu__root:focus-visible,
  .catalog-mega-menu__root.is-active {
    background: var(--green-200);
    color: var(--green-900, #123c30);
  }

  .catalog-mega-menu__content {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .catalog-mega-menu__panel {
    height: 100%;
    overflow-y: auto;
    padding: 24px 28px 30px;
  }

  .catalog-mega-menu__panel[hidden] {
    display: none;
  }

  .catalog-mega-menu__panel-head {
    display: flex;
    min-height: 44px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--grey-100);
    margin-bottom: 12px;
    padding-bottom: 14px;
  }

  .catalog-mega-menu__panel-head > span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  .catalog-mega-menu__panel-head > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 600;
  }

  .catalog-mega-menu__panel-head > a:hover,
  .catalog-mega-menu__panel-head > a:focus-visible {
    color: var(--black);
  }

  .catalog-mega-menu__panel-head .icon,
  .catalog-mega-menu__child .icon {
    width: 16px;
    height: 16px;
  }

  .catalog-mega-menu__children {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 28px 32px;
    padding-top: 6px;
  }

  .catalog-mega-menu__children::before,
  .catalog-mega-menu__children::after {
    position: absolute;
    top: 6px;
    bottom: 0;
    width: 1px;
    background: #e5e9e7;
    content: "";
    pointer-events: none;
  }

  .catalog-mega-menu__children::before {
    left: calc(33.333% - 5px);
  }

  .catalog-mega-menu__children::after {
    left: calc(66.666% + 5px);
  }

  .catalog-mega-menu__group {
    min-width: 0;
  }

  .catalog-mega-menu__group-title {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.16s ease;
  }

  .catalog-mega-menu__group-title:hover,
  .catalog-mega-menu__group-title:focus-visible,
  .catalog-mega-menu__nested-link:hover,
  .catalog-mega-menu__nested-link:focus-visible {
    color: var(--green-700);
  }

  .catalog-mega-menu__nested {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
  }

  .catalog-mega-menu__nested-link {
    color: var(--grey-300);
    font-size: 12px;
    line-height: 1.35;
    transition: color 0.16s ease;
  }

  .catalog-mega-menu__group-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.16s ease;
  }

  .catalog-mega-menu__group-all:hover,
  .catalog-mega-menu__group-all:focus-visible {
    color: var(--black);
  }

  .catalog-mega-menu__group-all .icon {
    width: 14px;
    height: 14px;
  }

  .catalog-mega-menu__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px 8px;
    color: var(--grey-300);
  }
}

@media (max-width: 1199px) {
  .catalog-mega-trigger {
    display: contents;
  }

  .catalog-mega-menu,
  .catalog-mega-toggle__chevron {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-mega-menu,
  .catalog-mega-toggle__chevron {
    transition: none;
  }
}

/* Keep action labels visually light and consistent across the public site. */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"],
.button,
[class$="__button"],
[class*="__button "] {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}

@property --scroll-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.scroll-top-progress {
  --scroll-progress: 0deg;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  background: conic-gradient(
    from 0deg,
    var(--green-700) 0deg var(--scroll-progress),
    rgba(0, 144, 77, 0.18) var(--scroll-progress) 360deg
  );
  box-shadow:
    0 8px 24px rgba(0, 144, 77, 0.28),
    0 0 18px rgba(0, 144, 77, 0.2);
  transition:
    --scroll-progress 0.12s linear,
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.2s ease;
}

.scroll-top-progress::before {
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: inherit;
  background: var(--black);
  content: "";
}

.scroll-top-progress.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-progress:hover {
  box-shadow:
    0 10px 28px rgba(0, 144, 77, 0.4),
    0 0 24px rgba(0, 144, 77, 0.32);
  transform: translateY(-2px) scale(1.02);
}

.scroll-top-progress:active {
  transform: translateY(0) scale(0.98);
}

.scroll-top-progress__surface {
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0, 144, 77, 0.18), rgba(0, 144, 77, 0));
}

.scroll-top-progress__icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white-100);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .scroll-top-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-progress {
    transition: none;
  }
}

/* Mobile search overlay retained while restoring the current catalog visuals. */
@media (max-width: 767px) {
  .header-main.has-open-search {
    overflow: visible;
  }

  .header-main .search.is-open .search-dropdown {
    position: fixed;
    top: 112px;
    right: 10px;
    bottom: auto;
    left: 10px;
    z-index: 140;
    width: auto;
    max-height: calc(100vh - 122px);
    max-height: calc(100dvh - 122px);
    padding: 12px;
    border-radius: 0 0 8px 8px;
  }
}

.subcategory-link-grid__extra {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: 0 var(--gap);
  justify-content: space-between;
  overflow: hidden;
  transition: height 0.34s ease;
}

.subcategory-link-grid__toggle {
  display: block;
  width: fit-content;
  grid-column: 1 / -1;
  margin: 10px 0 0 16px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.subcategory-link-grid__toggle:hover,
.subcategory-link-grid__toggle:focus-visible {
  color: var(--green-900);
}

.subcategory-link-grid__toggle:focus-visible {
  outline: none;
  text-decoration-thickness: 2px;
}

@media (max-width: 1199px) {
  .subcategory-link-grid__extra {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .subcategory-link-grid__toggle {
    margin-top: 8px;
    margin-left: 12px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subcategory-link-grid__extra {
    transition: none;
  }
}
