:root {
  --onix-green: #63b700;
  --onix-green-dark: #4f9700;
  --onix-green-soft: #f0f8e8;
  --onix-navy: #08365b;
  --onix-text: #21384a;
  --onix-muted: #6f7f89;
  --onix-line: #e5ebe6;
  --onix-soft: #f7f9f7;
  --onix-radius: 18px;
  --onix-shadow: 0 14px 38px rgba(19, 45, 59, .09);
}

/* The old 84px desktop offset belonged to the removed left catalog. */
.wrapper {
  padding-left: 0;
}

.header {
  gap: 20px;
}

/* Compact 2026 desktop header. Mobile keeps the native headerMob layout. */
@media (min-width: 991px) {
  .header {
    height: 76px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    background: #f4f6f5;
    border-bottom-color: #e2e7e3;
    box-shadow: 0 1px 0 rgba(19, 45, 59, .055), 0 7px 20px rgba(24, 52, 47, .085);
  }

  .header__logo,
  .header__contacts,
  .header__auth,
  .header__basket {
    flex: 0 0 auto;
  }

  .header__logo .logo {
    display: flex;
    align-items: center;
  }

  .header__contacts {
    min-width: 0;
  }

  .header .headContacts {
    display: flex;
    align-items: center;
    gap: clamp(4px, .42vw, 8px);
    min-width: 0;
  }

  .header .headContacts > .headContacts__item {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    height: 58px;
    padding: 5px 9px;
    overflow: hidden;
    border: 1px solid rgba(219, 226, 220, .9);
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    transition: border-color .18s ease, background .18s ease;
  }

  .header .headContacts > .headContacts__item:hover {
    border-color: #cfdbd0;
    background: rgba(255, 255, 255, .96);
  }

  .header .headContacts > .headContacts__item:first-child {
    flex: 0 0 108px;
  }

  .header .headContacts__item--address {
    flex: 0 0 218px;
  }

  .header .headContacts__item--phone {
    flex: 0 0 146px;
  }

  .header .headContacts__item--email {
    flex: 0 0 156px;
  }

  .header .headContacts__label {
    margin: 0 0 2px;
    overflow: hidden;
    color: #87928b;
    font-size: 10px;
    line-height: 1.15;
    text-overflow: ellipsis;
  }

  .header .headContacts__text,
  .header .selectCity__text {
    display: block;
    overflow: hidden;
    color: #253b33;
    font-size: 12.5px;
    line-height: 1.22;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header .headContacts__item--address .headContacts__text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10.8px;
    line-height: 1.05;
    text-wrap: balance;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .header .headContacts__item--email .headContacts__text {
    font-size: 11.5px;
  }

  .header .headContacts__item--address .headContacts__text br {
    display: none;
  }

  .header .selectCity__text {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .header .selectCity__icon {
    flex: 0 0 auto;
    width: 9px;
    height: 12px;
    margin: 0;
  }

  .header__search {
    flex: 1 1 320px;
    min-width: 200px;
    max-width: 620px;
    padding: 0;
  }

  .header .search__input {
    box-sizing: border-box;
    height: 46px;
    padding: 0 50px 0 16px;
    border: 1px solid #e1e6e2;
    border-radius: 11px;
    background: rgba(255, 255, 255, .9);
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }

  .header .search__input:hover {
    border-color: #d3dbd4;
    background: #fff;
  }

  .header .search__input:focus {
    border-color: rgba(122, 183, 0, .62);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(122, 183, 0, .11);
  }

  .header .search.open .search__wrap {
    border-radius: 11px;
  }

  /* Keep the live-search result panel independent from the compact input width. */
  .header__search .search.open .search__wrap {
    background: transparent;
    box-shadow: none;
  }

  .header__search .search.open .search__field::after {
    display: none;
  }

  .header__search .search .suggests {
    position: fixed;
    z-index: 13;
    top: var(--onix-search-popup-top, 84px);
    left: 50%;
    width: min(1080px, calc(100% - 32px));
    height: var(--onix-search-popup-height, min(538px, calc(100dvh - 100px)));
    min-height: 0;
    max-height: calc(100dvh - var(--onix-search-popup-top, 84px) - 12px);
    overflow: hidden;
    border: 1px solid rgba(218, 226, 220, .96);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 22px 62px rgba(20, 43, 36, .2), 0 4px 14px rgba(20, 43, 36, .08);
    transform: translateX(-50%);
  }

  .header__search .search .suggests__body.onixSearchSuggestHost,
  .header__search .search .onixSearchSuggest,
  .header__search .search .onixSearchSuggest__grid {
    height: 100% !important;
    min-height: 0 !important;
    max-height: 100% !important;
  }

  .header__search .search .suggests__body.onixSearchSuggestHost {
    overflow: hidden !important;
  }

  .header__search .search .onixSearchSuggest {
    overflow: hidden;
  }

  .header__search .search .onixSearchSuggest__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }

  .header__search .search .onixSuggestPanel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
  }

  .header__search .search .onixSuggestPanel__body,
  .header__search .search .onixSearchSuggest--desktop .onixSuggestPanel__body {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
  }

  .header__auth,
  .header__basket {
    align-items: center;
  }

  .header .auth__test {
    gap: 0;
  }

  .header .auth__signin,
  .header .auth__profile {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto;
    min-width: 88px;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #dce3dd;
    border-radius: 10px;
    color: #223a31;
    background: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 7px rgba(24, 52, 47, .035);
    transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
  }

  .header .auth__signin:hover,
  .header .auth__profile:hover {
    color: #5b9200;
    border-color: rgba(122, 183, 0, .48);
    background: #fff;
    transform: translateY(-1px);
  }

  .header .auth__signin:focus-visible,
  .header .auth__profile:focus-visible {
    outline: 3px solid rgba(99, 183, 0, .25);
    outline-offset: 2px;
  }

  .header .onixAccountButton__icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .header .auth__test .onixAccountButton__label {
    font-size: 13px;
  }

  .header .auth__submenu {
    right: 0;
    left: auto;
    top: calc(100% + 10px);
    transform: none;
    border: 1px solid #e3e8e4;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(24, 52, 47, .14);
  }

  .header .auth__submenu::before {
    right: 27px;
    left: auto;
  }

  .header .auth__submenu-wrap {
    border-radius: 12px;
  }

  .header .basketBtn__btn {
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 3px 9px rgba(80, 123, 0, .1);
  }
}

@media (min-width: 991px) and (max-width: 1500px) {
  .header {
    gap: 16px;
  }

  .header .headContacts {
    gap: 4px;
  }

  .header .headContacts > .headContacts__item:first-child {
    flex-basis: 96px;
  }

  .header .headContacts__item--address {
    flex-basis: 196px;
  }

  .header .headContacts__item--phone {
    flex-basis: 136px;
  }

  .header .headContacts__item--email {
    flex-basis: 134px;
  }

  .header .headContacts__item--email .headContacts__text {
    font-size: 10.8px;
  }
}

@media (min-width: 991px) {
  html.onixHeaderSearchRoutesCatalog .header__search .search .suggests {
    display: none !important;
  }
}

@media (min-width: 991px) and (max-width: 1300px) {
  .header .headContacts__item--email {
    display: none !important;
  }
}

@media (min-width: 991px) and (max-width: 1100px) {
  .header .headContacts__item--address {
    display: none !important;
  }

  .header .auth__signin,
  .header .auth__profile {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.onixHeaderCatalogButton {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 124px;
  height: 46px;
  padding: 0 19px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #7ab700;
  box-shadow: 0 4px 10px rgba(80, 123, 0, .12);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.onixHeaderCatalogButton:hover,
.onixHeaderCatalogButton:focus-visible,
.onixHeaderCatalogButton[aria-expanded="true"] {
  color: #fff;
  background: #699e00;
  box-shadow: 0 5px 12px rgba(75, 112, 0, .15);
  transform: translateY(-1px);
}

.onixHeaderCatalogButton:focus-visible,
.onixSliderArrow:focus-visible,
.onixCatalogDialog button:focus-visible,
.onixCatalogDialog a:focus-visible,
.onixConsultDialog button:focus-visible,
.onixConsultDialog input:focus-visible,
.onixConsultDialog textarea:focus-visible,
.onixHomepage2026 a:focus-visible,
.onixHomepage2026 button:focus-visible {
  outline: 3px solid rgba(99, 183, 0, .32);
  outline-offset: 3px;
}

.onixHeaderCatalogButton__icon {
  display: grid;
  gap: 3px;
  width: 16px;
}

.onixHeaderCatalogButton__icon i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.burger {
  padding: 0;
  border: 0;
  background: transparent;
}

html.onixCatalogLock,
body.onixCatalogLock {
  overflow: hidden !important;
}

/* Full catalog dialog */
.onixCatalogOverlay[hidden] {
  display: none !important;
}

.onixCatalogOverlay {
  --onix-catalog-edge: clamp(72px, 5.25vw, 108px);
  position: fixed;
  z-index: 1000;
  inset: 0;
  box-sizing: border-box;
  padding: var(--onix-catalog-edge);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.onixCatalogOverlay.is-open {
  opacity: 1;
  visibility: visible;
}

.onixCatalogOverlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(24, 42, 50, .36);
  -webkit-backdrop-filter: blur(7px) saturate(.82);
  backdrop-filter: blur(7px) saturate(.82);
  cursor: default;
}

.onixCatalogDialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 26px;
  color: var(--onix-text);
  background:
    radial-gradient(circle at 94% 4%, rgba(183, 243, 104, .37), transparent 24%),
    radial-gradient(circle at 24% 110%, rgba(193, 228, 238, .42), transparent 31%),
    rgba(250, 252, 250, .9);
  box-shadow: 0 36px 90px rgba(14, 36, 46, .3), inset 0 1px 0 rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(26px) saturate(1.25);
  backdrop-filter: blur(26px) saturate(1.25);
  transform: translateY(12px) scale(.992);
  transition: transform .2s ease;
}

.onixCatalogOverlay.is-open .onixCatalogDialog {
  transform: translateY(0) scale(1);
}

.onixCatalogDialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .18);
}

.onixCatalogDialog__head > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.onixCatalogDialog__head h2 {
  margin: 0;
  color: var(--onix-navy);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 600;
}

.onixCatalogSearch {
  display: block;
  flex: 1 1 660px;
  max-width: 760px;
  margin: 0 auto;
}

.onixCatalogSearch--bridge[hidden] { display: none !important; }

.onixCatalogSearch__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.onixCatalogSearch__field {
  position: relative;
  display: flex;
  align-items: center;
}

.onixCatalogSearch__input {
  box-sizing: border-box;
  width: 100%;
  height: 46px;
  padding: 0 88px 0 17px;
  border: 1px solid rgba(216, 225, 218, .96);
  border-radius: 12px;
  outline: 0;
  color: var(--onix-text);
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94), 0 7px 18px rgba(27, 52, 62, .05);
  font: inherit;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.onixCatalogSearch__input::-webkit-search-cancel-button { display: none; }
.onixCatalogSearch__input::placeholder { color: #9aa6a1; }
.onixCatalogSearch__input:hover { border-color: #cdd8cf; background: #fff; }
.onixCatalogSearch__input:focus { border-color: rgba(122, 183, 0, .68); background: #fff; box-shadow: 0 0 0 3px rgba(122, 183, 0, .11), 0 9px 22px rgba(27, 52, 62, .07); }

.onixCatalogSearch__clear,
.onixCatalogSearch__submit {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: #68736f;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .18s ease, background .18s ease;
}

.onixCatalogSearch__clear { right: 43px; }
.onixCatalogSearch__submit { right: 5px; color: var(--onix-green-dark); }
.onixCatalogSearch__clear[hidden] { display: none !important; }
.onixCatalogSearch__clear:hover,
.onixCatalogSearch__submit:hover { color: var(--onix-text); background: rgba(228, 236, 230, .72); }

.onixCatalogSearch__clear span::before,
.onixCatalogSearch__clear span::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 1.6px;
  border-radius: 2px;
  background: currentColor;
}
.onixCatalogSearch__clear span::before { transform: rotate(45deg); }
.onixCatalogSearch__clear span::after { transform: rotate(-45deg); }
.onixCatalogSearch__submit svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.onixCatalogDialog__close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  box-shadow: 0 8px 18px rgba(30, 54, 66, .08);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.onixCatalogDialog__close:hover {
  transform: rotate(6deg) scale(1.04);
  background: #fff;
}

.onixCatalogDialog__close span::before,
.onixCatalogDialog__close span::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--onix-text);
}

.onixCatalogDialog__close span::before { transform: rotate(45deg); }
.onixCatalogDialog__close span::after { transform: rotate(-45deg); }

.onixCatalogDialog__body {
  min-height: 0;
  padding: 14px 18px;
  overflow: hidden;
}

.onixCatalogLoading,
.onixCatalogError,
.onixCatalogEmpty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  text-align: center;
}

.onixCatalogLoading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(99, 183, 0, .18);
  border-top-color: var(--onix-green);
  border-radius: 50%;
  animation: onixCatalogSpin .8s linear infinite;
}

@keyframes onixCatalogSpin { to { transform: rotate(360deg); } }

.onixCatalogError p { margin: 0; color: var(--onix-muted); }
.onixCatalogError button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--onix-green);
  font-weight: 700;
  cursor: pointer;
}

.onixCatalogDialog__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 64px;
  padding: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .28);
  color: var(--onix-muted);
  font-size: 13px;
}

.onixCatalogDialog__foot button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--onix-green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.onixCatalogDialog__foot button:hover {
  background: var(--onix-green-dark);
  box-shadow: 0 9px 20px rgba(79, 151, 0, .2);
  transform: translateY(-1px);
}

.onixCatalogDialog__foot strong {
  color: var(--onix-text);
  font-size: 13px;
  font-weight: 650;
}

/* Consultation form opened from the catalog footer. */
.onixConsultOverlay[hidden] {
  display: none !important;
}

.onixConsultOverlay {
  position: fixed;
  z-index: 1120;
  inset: 0;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: clamp(12px, 2.5vw, 42px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.onixConsultOverlay.is-open {
  opacity: 1;
  visibility: visible;
}

.onixConsultOverlay__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(14, 34, 43, .46);
  -webkit-backdrop-filter: blur(13px) saturate(.88);
  backdrop-filter: blur(13px) saturate(.88);
  cursor: default;
}

.onixConsultDialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 31%) minmax(0, 1fr);
  width: min(900px, 100%);
  max-height: min(780px, calc(100vh - 32px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 28px;
  color: var(--onix-text);
  background:
    radial-gradient(circle at 93% 4%, rgba(191, 246, 121, .34), transparent 26%),
    rgba(250, 252, 250, .94);
  box-shadow: 0 38px 100px rgba(10, 30, 40, .38), inset 0 1px 0 rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(30px) saturate(1.25);
  backdrop-filter: blur(30px) saturate(1.25);
  transform: translateY(16px) scale(.985);
  transition: transform .22s ease;
}

.onixConsultOverlay.is-open .onixConsultDialog {
  transform: translateY(0) scale(1);
}

.onixConsultDialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
}

.onixConsultDialog__aside {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 42px 30px 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 27px 0 0 27px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .25), transparent 22%),
    linear-gradient(150deg, #72c600, #397e00 82%);
}

.onixConsultDialog__aside::before,
.onixConsultDialog__aside::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.onixConsultDialog__aside::before { top: -80px; right: -95px; width: 260px; height: 260px; }
.onixConsultDialog__aside::after { top: -24px; right: -28px; width: 160px; height: 160px; }

.onixConsultDialog__mark {
  position: absolute;
  top: 34px;
  left: 30px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.onixConsultDialog__aside strong {
  position: relative;
  max-width: 250px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 650;
}

.onixConsultDialog__aside ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.35;
}

.onixConsultDialog__aside li {
  position: relative;
  padding-left: 22px;
}

.onixConsultDialog__aside li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.onixConsultDialog__content {
  min-width: 0;
  padding: 42px clamp(25px, 4vw, 48px) 34px;
}

.onixConsultDialog__head { padding-right: 44px; }
.onixConsultDialog__head > span {
  display: block;
  margin-bottom: 9px;
  color: var(--onix-green-dark);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.onixConsultDialog__head h2 { margin: 0; color: var(--onix-navy); font-size: clamp(25px, 3vw, 34px); line-height: 1.08; font-weight: 620; }
.onixConsultDialog__head p { margin: 9px 0 0; color: var(--onix-muted); font-size: 13px; line-height: 1.45; }

.onixConsultForm { margin-top: 25px; }
.onixConsultForm__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.onixConsultField { display: grid; gap: 7px; min-width: 0; }
.onixConsultField--wide { grid-column: 1 / -1; }
.onixConsultField > span { color: #3d5362; font-size: 12px; font-weight: 700; }
.onixConsultField > span b { color: var(--onix-green-dark); }
.onixConsultField input,
.onixConsultField textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(48, 76, 89, .14);
  border-radius: 12px;
  color: var(--onix-text);
  background: rgba(255, 255, 255, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.onixConsultField textarea { min-height: 110px; resize: vertical; }
.onixConsultField input:focus,
.onixConsultField textarea:focus { border-color: rgba(99, 183, 0, .62); background: #fff; box-shadow: 0 0 0 4px rgba(99, 183, 0, .1); }
.onixConsultField input[aria-invalid="true"],
.onixConsultField textarea[aria-invalid="true"] { border-color: #d45a4c; box-shadow: 0 0 0 3px rgba(212, 90, 76, .1); }

.onixConsultFile {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  margin-top: 15px;
  padding: 8px 12px;
  border: 1px dashed rgba(79, 151, 0, .34);
  border-radius: 13px;
  color: var(--onix-text);
  background: rgba(244, 250, 239, .68);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.onixConsultFile:hover { border-color: rgba(79, 151, 0, .64); background: rgba(240, 249, 232, .9); }
.onixConsultFile input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.onixConsultFile__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 10px;
  color: #111820;
  background: #f4f6f5;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.onixConsultFile__icon svg { width: 20px; height: 20px; fill: none !important; stroke: currentColor !important; }
.onixConsultFile__icon svg * { fill: none !important; stroke: currentColor !important; }
.onixConsultFile:hover .onixConsultFile__icon { color: var(--onix-green-dark); border-color: rgba(79, 151, 0, .28); background: #fff; transform: translateY(-1px); }
.onixConsultFile > span:last-child { display: grid; gap: 2px; min-width: 0; }
.onixConsultFile b { overflow: hidden; font-size: 12px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.onixConsultFile small { color: var(--onix-muted); font-size: 11px; }
.onixConsultFile[aria-invalid="true"] { border-color: #d45a4c; }

.onixConsultForm__trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.onixConsultForm__status { min-height: 20px; margin-top: 11px; color: #b43f34; font-size: 12px; line-height: 1.35; }
.onixConsultForm__status.is-ok { color: var(--onix-green-dark); }
.onixConsultForm__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 4px; }
.onixConsultForm__actions p { max-width: 280px; margin: 0; color: var(--onix-muted); font-size: 10.5px; line-height: 1.4; }
.onixConsultForm__actions button,
.onixConsultSuccess button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #70c400, #4d9f00);
  box-shadow: 0 11px 24px rgba(79, 151, 0, .21);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.onixConsultForm__actions button[disabled] { cursor: wait; opacity: .65; }

.onixConsultSuccess { display: grid; place-items: center; min-height: 430px; align-content: center; text-align: center; }
.onixConsultSuccess[hidden] { display: none !important; }
.onixConsultSuccess > span { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 19px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #78ca12, #4d9e00); box-shadow: 0 15px 32px rgba(79, 151, 0, .24); font-size: 30px; }
.onixConsultSuccess h2 { margin: 0; color: var(--onix-navy); font-size: 30px; }
.onixConsultSuccess p { margin: 10px 0 23px; color: var(--onix-muted); }

.onixCatalogLayout {
  display: grid;
  grid-template-columns: 284px minmax(0, 1fr);
  gap: 18px;
  height: 100%;
  min-height: 0;
}

.onixCatalogRail,
.onixCatalogPanels {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 183, 0, .5) transparent;
}

.onixCatalogRail::-webkit-scrollbar,
.onixCatalogPanels::-webkit-scrollbar { width: 6px; height: 6px; }
.onixCatalogRail::-webkit-scrollbar-track,
.onixCatalogPanels::-webkit-scrollbar-track { margin-top: 10px; margin-bottom: 10px; }
.onixCatalogRail::-webkit-scrollbar-thumb,
.onixCatalogPanels::-webkit-scrollbar-thumb { border-radius: 10px; background: rgba(99, 183, 0, .42); }

.onixCatalogRail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 19px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 10px 28px rgba(31, 57, 69, .07);
  touch-action: pan-y;
  cursor: grab;
}

.onixCatalogRail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.onixCatalogRail__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
  min-height: 48px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--onix-text);
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.onixCatalogRail__item:hover,
.onixCatalogRail__item.is-active {
  color: var(--onix-text);
  border-color: rgba(255, 255, 255, .9);
  background: linear-gradient(120deg, rgba(224, 247, 199, .78), rgba(255, 255, 255, .76));
  box-shadow: 0 8px 18px rgba(30, 55, 67, .07);
  transform: translateX(2px);
}

.onixCatalogMainIcon,
.onixCatalogSubIcon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--onix-green);
}

.onixCatalogMainIcon {
  width: 30px;
  height: 30px;
}

.onixCatalogMainIcon svg,
.onixCatalogMainIcon img,
.onixCatalogSubIcon svg,
.onixCatalogSubIcon img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.onixCatalogRail__text {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.24;
  font-weight: 650;
  text-overflow: ellipsis;
}

.onixCatalogRail__copy,
.onixCatalogCard__copy {
  display: grid;
  min-width: 0;
}

.onixCatalogRail__copy { gap: 2px; }
.onixCatalogRail__copy small,
.onixCatalogCard__meta {
  overflow: hidden;
  color: var(--onix-muted);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 450;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.onixCatalogCard__meta { display: none; }

.onixCatalogRail__arrow,
.onixHomeSectionCard__go,
.onixSliderArrow span,
.onixHomeProjectCard__go span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  transform: rotate(45deg);
}

.onixCatalogPanels {
  padding: 4px 7px 12px 1px;
}

.onixCatalogSearchView[hidden] { display: none !important; }

.onixCatalogSearchView {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0 2px 8px 0;
}

.onixCatalogSearchView__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  margin-bottom: 10px;
}

.onixCatalogSearchView__head > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.onixCatalogSearchView__head span {
  color: var(--onix-navy);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 600;
}

.onixCatalogSearchView__head strong {
  overflow: hidden;
  color: var(--onix-green-dark);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.onixCatalogSearchView__head a {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 9px 15px;
  border: 1px solid rgba(122, 183, 0, .55);
  border-radius: 10px;
  color: var(--onix-green-dark);
  background: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.onixCatalogSearchView__head a:hover { color: #fff; background: var(--onix-green); text-decoration: none; }

.onixCatalogSearchView__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.onixCatalogSearchView .onixSearchSuggest {
  height: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.onixCatalogSearchView .onixSearchSuggest__grid {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.onixCatalogSearchView .onixSuggestPanel {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.onixCatalogSearchView .onixSuggestPanel__body,
.onixCatalogSearchView .onixSearchSuggest--desktop .onixSuggestPanel__body {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  scrollbar-color: rgba(90, 153, 0, .78) rgba(222, 230, 224, .72);
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

.onixCatalogSearchView .onixSuggestPanel__body::-webkit-scrollbar { width: 8px; }
.onixCatalogSearchView .onixSuggestPanel__body::-webkit-scrollbar-track { border-radius: 999px; background: rgba(222, 230, 224, .72); }
.onixCatalogSearchView .onixSuggestPanel__body::-webkit-scrollbar-thumb { border: 2px solid rgba(222, 230, 224, .72); border-radius: 999px; background: rgba(90, 153, 0, .78); }
.onixCatalogSearchView .onixSuggestPanel__body::-webkit-scrollbar-thumb:hover { background: var(--onix-green-dark); }

.onixCatalogSearchState {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  height: 100%;
  min-height: 260px;
  padding: 28px;
  border: 1px dashed rgba(171, 187, 176, .72);
  border-radius: 18px;
  color: var(--onix-muted);
  background: rgba(255, 255, 255, .42);
  text-align: center;
}

.onixCatalogSearchState > span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(122, 183, 0, .17);
  border-top-color: var(--onix-green);
  border-radius: 50%;
}

.onixCatalogSearchState strong { color: var(--onix-navy); font-size: 16px; }
.onixCatalogSearchState p { margin: 0; font-size: 13px; }
.onixCatalogSearchState--loading > span { animation: onixCatalogSpin .8s linear infinite; }
.onixCatalogSearchState--hint > span,
.onixCatalogSearchState--empty > span,
.onixCatalogSearchState--error > span { border: 0; background: radial-gradient(circle, rgba(122, 183, 0, .18) 0 32%, transparent 34%), linear-gradient(135deg, rgba(122, 183, 0, .08), rgba(255, 201, 64, .12)); }

.onixCatalogOverlay.is-catalog-searching .onixCatalogPanels { overflow: hidden; }

.onixCatalogPanel[hidden] { display: none !important; }

.onixCatalogPanel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  margin-bottom: 10px;
}

.onixCatalogPanel__eyebrow,
.onixHomeEyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--onix-green);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.onixCatalogPanel__head h2 {
  margin: 0;
  color: var(--onix-navy);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 600;
}

.onixCatalogPanel__head p {
  margin: 4px 0 0;
  color: var(--onix-muted);
  font-size: 12px;
}

.onixCatalogPanel__all {
  flex: 0 0 auto;
  padding: 7px 0;
  color: var(--onix-green-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.onixCatalogGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}

.onixCatalogGrid.is-column-layout {
  grid-template-columns: repeat(var(--onix-catalog-column-count, 4), minmax(0, 1fr));
}

.onixCatalogGrid__column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.onixCatalogCard {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(244, 250, 242, .55));
  box-shadow: 0 8px 18px rgba(30, 54, 66, .055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.onixCatalogCard:hover {
  border-color: rgba(99, 183, 0, .22);
  box-shadow: 0 12px 24px rgba(30, 54, 66, .09);
  transform: translateY(-2px);
}

.onixCatalogCard__top {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 32px;
}

.onixCatalogCard__top.has-no-icon {
  grid-template-columns: minmax(0, 1fr) auto;
}

.onixCatalogSubIcon {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.onixCatalogCard__top.has-no-icon + .onixCatalogCard__children { margin-left: 0; }

.onixCatalogCard__title {
  min-width: 0;
  color: var(--onix-text);
  font-size: 12.5px;
  line-height: 1.28;
  font-weight: 650;
  text-decoration: none;
}

.onixCatalogCard__toggle,
.onixCatalogNested__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(99, 183, 0, .17);
  border-radius: 8px;
  color: var(--onix-green-dark);
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
}

.onixCatalogCard__toggle span::before,
.onixCatalogCard__toggle span::after,
.onixCatalogNested__toggle span::before,
.onixCatalogNested__toggle span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease;
}

.onixCatalogCard__toggle span::after,
.onixCatalogNested__toggle span::after { transform: rotate(90deg); }
.onixCatalogCard__toggle[aria-expanded="true"] span::after,
.onixCatalogNested__toggle[aria-expanded="true"] span::after { transform: rotate(0); }

.onixCatalogCard__children {
  margin: 9px 0 0 39px;
  padding-top: 7px;
  border-top: 1px solid rgba(35, 66, 78, .08);
}

.onixCatalogCard__children[hidden],
.onixCatalogNested__children[hidden] { display: none !important; }

.onixCatalogNested {
  display: grid;
  gap: 4px;
}

.onixCatalogNested__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 24px;
}

.onixCatalogNested__row > a {
  min-width: 0;
  color: #536875;
  font-size: 11.5px;
  line-height: 1.3;
  text-decoration: none;
}

.onixCatalogNested__row > a:hover { color: var(--onix-green-dark); }
.onixCatalogNested__toggle { width: 24px; height: 24px; }
.onixCatalogNested__toggle span::before,
.onixCatalogNested__toggle span::after { top: 11px; left: 7px; width: 8px; }
.onixCatalogNested__children { margin: 3px 0 3px 10px; padding-left: 9px; border-left: 1px solid rgba(99, 183, 0, .22); }

@media (min-width: 991px) {
  .onixCatalogOverlay {
    inset: var(--onix-catalog-top, 86px) 0 0;
    padding: clamp(12px, 1.7vh, 18px) clamp(34px, 4.3vw, 84px) clamp(24px, 4vh, 42px);
  }

  .onixCatalogDialog {
    max-width: 1760px;
    border-radius: 28px;
  }

  .onixCatalogDialog__head {
    min-height: 66px;
    padding: 10px 25px;
  }

  .onixCatalogDialog__head h2 { font-size: 25px; }
  .onixCatalogDialog__body { padding: 12px 18px 10px; }

  .onixCatalogDialog__foot {
    justify-content: flex-start;
    min-height: 50px;
    padding: 7px 18px;
    font-size: 12px;
  }

  .onixCatalogDialog__foot button {
    min-height: 36px;
    margin-left: auto;
    padding: 0 17px;
    font-size: 12px;
  }

  .onixCatalogLayout {
    grid-template-columns: clamp(252px, 17.2vw, 304px) minmax(0, 1fr);
    gap: 20px;
  }

  .onixCatalogRail,
  .onixCatalogPanels {
    scrollbar-gutter: stable;
  }

  .onixCatalogRail {
    gap: 4px;
    padding: 8px 7px;
  }

  .onixCatalogRail__item {
    grid-template-columns: 32px minmax(0, 1fr) 9px;
    gap: 10px;
    min-height: 54px;
    padding: 7px 10px;
  }

  .onixCatalogMainIcon {
    width: 28px;
    height: 28px;
  }

  .onixCatalogRail__text {
    font-size: 12.5px;
    line-height: 1.18;
  }

  .onixCatalogPanels { padding: 2px 7px 10px 1px; }

  .onixCatalogPanel__head {
    align-items: center;
    min-height: 54px;
    margin-bottom: 8px;
  }

  .onixCatalogPanel__eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .onixCatalogPanel__head h2 { font-size: 25px; }
  .onixCatalogPanel__all { font-size: 12px; }

  .onixCatalogGrid.is-dense-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 8px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard {
    min-height: 68px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__top {
    grid-template-columns: 31px minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 50px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__top.has-no-icon {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogSubIcon {
    width: 29px;
    height: 29px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__copy { gap: 3px; }
  .onixCatalogGrid.is-dense-grid .onixCatalogCard__meta { display: block; }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__toggle {
    width: 25px;
    height: 25px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__toggle span::before,
  .onixCatalogGrid.is-dense-grid .onixCatalogCard__toggle span::after {
    top: 11px;
    left: 7px;
    width: 9px;
  }

  .onixCatalogGrid.is-dense-grid .onixCatalogCard__children {
    margin: 7px 0 0 38px;
    padding-top: 6px;
  }

  .onixCatalogSearchView__head {
    min-height: 42px;
    margin-bottom: 8px;
  }

  .onixCatalogSearchView__head span { font-size: 25px; }
}

/* Homepage */
.onixHomepage2026 {
  --home-gap: 34px;
  color: var(--onix-text);
}

.onixHomepage2026 *,
.onixHomepage2026 *::before,
.onixHomepage2026 *::after { box-sizing: border-box; }

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

.onixHomeHero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  gap: 24px;
  height: 310px;
  margin-bottom: 40px;
}

.onixHomeHero__banners,
.onixHomeHero__rack,
.onixHomeHero .homeSlider,
.onixHomeHero .homeSlider > .swiper,
.onixHomeHero .homeSlider .swiper-wrapper,
.onixHomeHero .homeSlider .swiper-slide {
  min-width: 0;
  height: 100%;
}

.onixHomeHero__banners,
.onixHomeHero__rack {
  min-height: 0;
  overflow: hidden;
  border-radius: var(--onix-radius);
}

.onixHomeHero .homeSlider {
  margin: 0 !important;
}

.onixHomeHero .homeSlider .swiper-btn-prev {
  right: auto !important;
  left: 12px !important;
}

.onixHomeHero .homeSlider .swiper-btn-next {
  right: 12px !important;
  left: auto !important;
}

.onixHomeHero .homeSlider .swiper-slide::after { display: none !important; }
.onixHomeHero .homeSlider__item {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  border: 1px solid var(--onix-line);
  border-radius: var(--onix-radius) !important;
  box-shadow: 0 8px 22px rgba(30, 53, 66, .06);
}

.onixHomeHero .homeSlider__item img { object-fit: cover; }
.onixHomeHero .homeSlider__item--contain,
.onixHomeHero .homeSlider__item--contain img { background: #f4f6f5; }
.onixHomeHero .homeSlider__item--contain img { object-fit: contain; }
.onixHomeHero .homeSlider .swiper-pagination-custom-line {
  right: auto !important;
  bottom: 12px !important;
  left: 50% !important;
  z-index: 8 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 25px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 4px 14px rgba(13, 43, 76, .16);
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(-50%, 0, 0);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.onixHomeHero .homeSlider .swiper-pagination-custom-line > .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 3px !important;
  border: 1px solid rgba(8, 54, 91, .3);
  background: #fff;
  opacity: 1;
}

.onixHomeHero .homeSlider .swiper-pagination-custom-line > .swiper-pagination-bullet-active {
  border-color: #7ab700;
  background: #7ab700;
}

.onixRackHome {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--onix-line);
  border-radius: var(--onix-radius);
  background: #fdfcfa;
  box-shadow: var(--onix-shadow);
}

.onixRackHome__media,
.onixRackHome__content { background: #fdfcfa; }
.onixRackHome__media { min-width: 0; overflow: hidden; }
.onixRackHome__media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  background: transparent;
  opacity: 1;
  transition: opacity .18s ease, transform .35s ease;
}
.onixRackHome__media img.is-changing { opacity: .18; transform: scale(.985); }
.onixRackHome:hover .onixRackHome__media img { transform: scale(1.025); }
.onixRackHome:hover .onixRackHome__media img.is-changing { transform: scale(.985); }

.onixRackHome__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 21px 20px 18px;
}

.onixRackHome h2 {
  margin: 0 0 12px;
  color: var(--onix-navy);
  font-size: clamp(21px, 1.45vw, 29px);
  line-height: 1.08;
  font-weight: 600;
}

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

.onixRackHome__loads button {
  display: grid;
  place-items: center;
  min-height: 35px;
  padding: 4px 7px;
  border: 1px solid var(--onix-line);
  border-radius: 8px;
  color: var(--onix-text);
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.onixRackHome__loads button:hover,
.onixRackHome__loads button:focus-visible {
  border-color: rgba(122, 183, 0, .65);
  background: #fbfff5;
}

.onixRackHome__loads button.is-active,
.onixRackHome__loads button[aria-pressed="true"] {
  border-color: #7ab700;
  color: #4f8500;
  background: #f5faec;
  box-shadow: inset 0 0 0 1px rgba(122, 183, 0, .08);
}

.onixRackHome p {
  margin: 10px 0 12px;
  color: var(--onix-muted);
  font-size: 12px;
  line-height: 1.4;
}

.onixRackHome__actions,
.onixHomeSolution__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.onixHomeButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--onix-green);
  border-radius: 10px;
  color: #fff;
  background: var(--onix-green);
  font: inherit;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.onixHomeButton:hover {
  color: #fff;
  background: var(--onix-green-dark);
  box-shadow: 0 9px 20px rgba(83, 159, 0, .2);
  transform: translateY(-1px);
}

.onixHomeButton--outline { color: var(--onix-green-dark); background: #fff; }
.onixHomeButton--outline:hover { color: #fff; }
.onixHomeButton svg { flex: 0 0 auto; width: 18px; height: 18px; }
.onixHomeButton i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 1px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.onixHomeSection { margin: 0 0 42px; }

.onixHomeProjects {
  min-width: 0;
  padding: 24px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 55, 66, .11);
  border-radius: 22px;
  background: #f4f6f5;
  box-shadow: 0 14px 34px rgba(27, 49, 61, .06);
}

.onixHomeProjects .onixHomeSection__head {
  align-items: center;
  margin-bottom: 16px;
  padding: 0 2px 16px;
  border-bottom: 1px solid rgba(31, 55, 66, .09);
}

.onixHomeProjects .onixHomeSection__controls > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-right: 3px;
  padding: 7px 13px;
  border: 1px solid rgba(122, 183, 0, .3);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(31, 55, 66, .045);
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.onixHomeProjects .onixHomeSection__controls > a:hover,
.onixHomeProjects .onixHomeSection__controls > a:focus-visible {
  color: #fff;
  border-color: var(--onix-green);
  background: var(--onix-green);
  transform: translateY(-1px);
}

.onixHomeSection__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 15px;
}

.onixHomeSection__head h2 {
  margin: 0;
  color: var(--onix-navy);
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 600;
}

.onixHomeSection__controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

.onixHomeSection__controls > a,
.onixHomeTextAction,
.onixHomeShowroom__all {
  margin-right: 7px;
  padding: 0;
  border: 0;
  color: var(--onix-green-dark);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.onixHomeSections .onixHomeTextAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-right: 2px;
  padding: 8px 16px;
  border: 1px solid rgba(122, 183, 0, .38);
  border-radius: 10px;
  background: #f7fbed;
  box-shadow: 0 4px 12px rgba(61, 100, 25, .07);
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.onixHomeSections .onixHomeTextAction:hover,
.onixHomeSections .onixHomeTextAction:focus-visible {
  color: #fff;
  border-color: #7ab700;
  background: #7ab700;
  box-shadow: 0 6px 14px rgba(83, 128, 24, .13);
  transform: translateY(-1px);
}

.onixSliderArrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--onix-line);
  border-radius: 50%;
  color: var(--onix-navy);
  background: #fff;
  box-shadow: 0 6px 14px rgba(30, 53, 66, .06);
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.onixSliderArrow:hover { color: var(--onix-green-dark); border-color: rgba(99, 183, 0, .45); transform: translateY(-1px); }
.onixSliderArrow--prev span { transform: rotate(-135deg); margin-left: 3px; }
.onixSliderArrow--next span { margin-right: 3px; }
.onixSliderArrow.swiper-button-disabled { opacity: .35; cursor: default; transform: none; }

.onixHomeSections__viewport:not(.swiper-initialized) {
  --onix-sections-pre-gap: 12px;
  --onix-sections-pre-width: calc(84.745763% - 1.830508px);
}

.onixHomeSections__viewport:not(.swiper-initialized) > .swiper-wrapper {
  display: flex;
}

.onixHomeSections__viewport:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  flex: 0 0 var(--onix-sections-pre-width);
  width: var(--onix-sections-pre-width);
  margin-right: var(--onix-sections-pre-gap);
}

@media (min-width: 520px) {
  .onixHomeSections__viewport:not(.swiper-initialized) {
    --onix-sections-pre-gap: 14px;
    --onix-sections-pre-width: calc(46.511628% - 7.488372px);
  }
}

@media (min-width: 760px) {
  .onixHomeSections__viewport:not(.swiper-initialized) {
    --onix-sections-pre-gap: 16px;
    --onix-sections-pre-width: calc(31.25% - 11px);
  }
}

@media (min-width: 1120px) {
  .onixHomeSections__viewport:not(.swiper-initialized) {
    --onix-sections-pre-width: calc(23.809524% - 12.190476px);
  }
}

@media (min-width: 1540px) {
  .onixHomeSections__viewport:not(.swiper-initialized) {
    --onix-sections-pre-width: calc(19.230769% - 12.923077px);
  }
}

.onixHomeSections__viewport {
  min-width: 0;
  overflow: hidden;
  padding-bottom: 25px;
}

.onixHomeProjects__viewport {
  min-width: 0;
  overflow: hidden;
  padding: 4px 1px 6px;
}

.onixHomeSections__viewport .swiper-slide,
.onixHomeProjects__viewport .swiper-slide { height: auto; }

.onixHomeSectionCard {
  position: relative;
  height: 196px;
  overflow: hidden;
  border-radius: 16px;
  background: #e9eeea;
  box-shadow: 0 8px 20px rgba(27, 48, 60, .08);
}

.onixHomeSectionCard > a:first-child { display: block; width: 100%; height: 100%; color: #fff; }
.onixHomeSectionCard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}
.onixHomeSectionCard:hover img { transform: scale(1.045); }
.onixHomeSectionCard__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 25, 38, .02) 30%, rgba(4, 25, 38, .78) 100%);
}

.onixHomeSectionCard__body {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 15px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.onixHomeSectionCard__body strong {
  min-width: 0;
  font-size: 20px;
  line-height: 1.16;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}

.onixHomeSectionCard__go {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin: 0 2px 0 0;
}

.onixHomeSectionCard__project {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(122, 183, 0, .72);
  border-radius: 10px;
  color: var(--onix-navy);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 18px rgba(13, 54, 82, .13);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.onixHomeSectionCard__project:hover,
.onixHomeSectionCard__project:focus-visible {
  color: #fff;
  border-color: #7ab700;
  background: #7ab700;
  box-shadow: 0 9px 20px rgba(83, 128, 24, .19);
  transform: translateY(-1px);
}

.onixHomeSectionCard__project span { font-size: 15px; line-height: 1; }

.onixSliderPagination {
  position: absolute;
  z-index: 2;
  bottom: 0 !important;
  left: 0;
  width: 100%;
  text-align: center;
}

.onixSliderPagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 3px !important;
  background: #cbd4cc;
  opacity: 1;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}
.onixSliderPagination .swiper-pagination-bullet-active { width: 22px; border-radius: 5px; background: var(--onix-green); }

.onixHomepage2026 .onixHomeSliderDots {
  box-sizing: border-box;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: safe center;
  width: max-content !important;
  max-width: calc(100% - 24px);
  min-height: 25px;
  margin: 13px auto 0;
  padding: 6px 9px;
  border: 1px solid rgba(8, 54, 91, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 4px 14px rgba(13, 43, 76, .12);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  transform: none !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.onixHomepage2026 .onixHomeSliderDots::-webkit-scrollbar { display: none; }

.onixHomeSliderDots.swiper-pagination-lock { display: none; }
.onixHomeSliderDots .swiper-pagination-bullet {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: 0 3px !important;
  border: 1px solid rgba(8, 54, 91, .24);
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.onixHomeSliderDots .swiper-pagination-bullet:hover { border-color: #7ab700; transform: scale(1.12); }
.onixHomeSliderDots .swiper-pagination-bullet-active { border-color: #7ab700; background: #7ab700; }

.onixHomeBenefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--onix-line);
  border-radius: 17px;
  background: #fafbfa;
}

.onixHomeBenefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 102px;
  padding: 19px 28px;
  border-right: 1px solid var(--onix-line);
}
.onixHomeBenefit:last-child { border-right: 0; }
.onixHomeBenefit > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 24, 32, .09);
  border-radius: 13px;
  color: #111820;
  background: linear-gradient(145deg, #fafbfb, #f1f4f3);
}
.onixHomeBenefit svg { width: 27px; height: 27px; fill: none !important; stroke: currentColor !important; stroke-width: 1.65; }
.onixHomeBenefit svg * { fill: none !important; stroke: currentColor !important; vector-effect: non-scaling-stroke; }
.onixHomeBenefit strong { display: block; margin-bottom: 3px; color: var(--onix-text); font-size: 14px; }
.onixHomeBenefit small { display: block; color: var(--onix-muted); font-size: 11px; }

.onixHomeCompanyFacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(320px, 1.6fr);
  gap: 14px;
  margin: 0 0 20px;
  background: transparent;
}

.onixHomeCompanyFact {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  min-height: 142px;
  padding: 19px 20px;
  border: 1px solid var(--onix-line);
  border-radius: 17px;
  background: #fafbfa;
  box-shadow: 0 8px 22px rgba(29, 52, 64, .05);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.onixHomeCompanyFact__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 32, .09);
  border-radius: 13px;
  color: #111820;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background-color .22s ease;
}

.onixHomeCompanyFact__icon svg { width: 27px; height: 27px; fill: none !important; stroke: currentColor !important; stroke-width: 1.7; }
.onixHomeCompanyFact__icon svg * { fill: none !important; stroke: currentColor !important; vector-effect: non-scaling-stroke; }

.onixHomeCompanyFact strong {
  display: block;
  color: var(--onix-navy);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.2;
  font-weight: 700;
}

.onixHomeCompanyFact small {
  display: block;
  margin-top: 5px;
  color: var(--onix-muted);
  font-size: 12.5px;
  line-height: 1.3;
}

.onixHomeCompanyFact--edo {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 22px 24px;
  border-color: rgba(99, 183, 0, .23);
}

.onixHomeCompanyFact--edo strong { color: var(--onix-green-dark); font-size: clamp(20px, 1.35vw, 25px); }
.onixHomeCompanyFact--edo small { max-width: 190px; font-size: 13px; }
.onixHomeCompanyFact--edo .onixHomeCompanyFact__icon {
  width: 76px;
  height: 76px;
  border-color: rgba(99, 183, 0, .18);
  border-radius: 22px;
  color: var(--onix-green-dark);
  background: var(--onix-green-soft);
}
.onixHomeCompanyFact--edo .onixHomeCompanyFact__icon svg { width: 43px; height: 43px; }

@media (hover: hover) and (pointer: fine) {
  .onixHomeCompanyFact:hover {
    border-color: rgba(99, 183, 0, .3);
    background: #f4f8ef;
    box-shadow: 0 15px 32px rgba(61, 101, 21, .13);
    transform: translateY(-4px);
  }

  .onixHomeCompanyFact:hover .onixHomeCompanyFact__icon {
    border-color: rgba(99, 183, 0, .26);
    color: var(--onix-green-dark);
    background: #fff;
    transform: translateY(-1px) scale(1.045);
  }

  .onixHomeCompanyFact--edo:hover { background: #eff8e5; }
}

.onixHomeSolutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.onixHomeSolution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 47%;
  min-width: 0;
  min-height: 335px;
  overflow: hidden;
  border: 1px solid var(--onix-line);
  border-radius: 18px;
  background: #f4f6f5;
  box-shadow: 0 10px 28px rgba(29, 52, 64, .055);
}

.onixHomeSolution--home { grid-template-columns: 47% minmax(0, 1fr); }

.onixHomeSolution__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 20px 24px 21px;
  text-align: center;
}

.onixHomeSolution__content > .onixHomeEyebrow {
  margin: 0 auto 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--onix-green-soft);
}

.onixHomeSolution__content h2 {
  margin: 0 0 8px;
  color: var(--onix-navy);
  font-size: clamp(23px, 1.65vw, 30px);
  line-height: 1.08;
  font-weight: 600;
}

.onixHomeSolution__content > p {
  margin: 0 0 18px;
  color: var(--onix-muted);
  font-size: 13px;
  line-height: 1.48;
}

.onixHomeSolution__media { min-width: 0; overflow: hidden; background: #eef1ef; }
.onixHomeSolution__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.onixHomeSolution:hover .onixHomeSolution__media img { transform: scale(1.025); }

.onixHomeSolution__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 13px;
  width: 100%;
  margin-bottom: 18px;
}

.onixHomeSolution__features > span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 48px;
  padding: 7px 9px;
  border: 1px solid rgba(31, 66, 81, .07);
  border-radius: 11px;
  background: rgba(247, 250, 247, .82);
  text-align: left;
}
.onixHomeSolution__features svg { width: 25px; height: 25px; color: #111820; fill: none !important; stroke: currentColor !important; stroke-width: 1.65; }
.onixHomeSolution__features svg * { fill: none !important; stroke: currentColor !important; vector-effect: non-scaling-stroke; }
.onixHomeSolution__features b { font-size: 11.5px; line-height: 1.2; font-weight: 650; }
.onixHomeSolution__actions { justify-content: center; width: 100%; }
.onixHomeSolution__actions .onixHomeButton {
  flex: 1 1 0;
  max-width: 205px;
  min-height: 43px;
  padding-right: 12px;
  padding-left: 12px;
  font-size: 11.5px;
}
.onixHomeSolution__actions .onixHomeButton--projects {
  border-color: #63b700;
  background: linear-gradient(135deg, #6cc500, #54a900);
  box-shadow: 0 5px 12px rgba(79, 151, 0, .14);
}
.onixHomeSolution__actions .onixHomeButton--consult { box-shadow: inset 0 0 0 1px rgba(99, 183, 0, .05); }

.onixHomeProjectCard {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--onix-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(27, 49, 61, .06);
}

.onixHomeProjectCard__media {
  position: relative;
  display: block;
  height: 188px;
  overflow: hidden;
  background: #eef1ef;
}
.onixHomeProjectCard__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .36s ease; }
.onixHomeProjectCard:hover .onixHomeProjectCard__media img { transform: scale(1.04); }
.onixHomeProjectCard__media > span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--onix-navy);
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 750;
}

.onixHomeProjectCard__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 14px 52px 15px 15px;
}
.onixHomeProjectCard__title { color: var(--onix-text); font-size: 14px; line-height: 1.33; font-weight: 650; text-decoration: none; }
.onixHomeProjectCard__body p { margin: 6px 0 0; color: var(--onix-muted); font-size: 11px; line-height: 1.35; }
.onixHomeProjectCard__go {
  position: absolute;
  right: 14px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--onix-green);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.onixHomeProjectCard__go:hover { color: #fff; background: var(--onix-green-dark); transform: translateX(2px); }
.onixHomeProjectCard__go span { width: 8px; height: 8px; margin-right: 3px; }

.onixHomePopular { min-width: 0; margin: 0 0 42px; }
.onixHomePopular__head { align-items: center; margin-bottom: 16px; }
.onixHomePopular__head h2 {
  margin: 0;
  color: var(--onix-navy);
  font-size: clamp(27px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 600;
}

.onixHomeProductSlider,
.onixHomeProductSlider__viewport { min-width: 0; }
.onixHomeProductSlider__viewport {
  overflow: hidden;
  padding: 4px 1px 6px;
}
.onixHomeProductSlider__viewport .swiper-slide { height: auto; }

.onixHomePopular .productCard.onixPopularCard {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 0;
  height: 100%;
  min-height: 398px;
  margin: 0;
  padding: 14px 14px 15px;
  overflow: hidden;
  border: 1px solid #dfe5e8;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(27, 48, 60, .055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.onixHomePopular .productCard.onixPopularCard:hover {
  border-color: rgba(122, 183, 0, .42);
  box-shadow: 0 13px 28px rgba(27, 48, 60, .1);
  transform: translateY(-2px);
}

.onixHomePopular .onixPopularCard__visual {
  flex: 0 0 202px;
  width: 100%;
  height: 202px;
  min-height: 202px;
  margin: 0 0 12px;
  padding: 0 0 12px;
  overflow: hidden;
  border-bottom: 1px solid #edf1ee;
}

.onixHomePopular .productCard__picture.onixPopularCard__image {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 190px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  aspect-ratio: auto;
}

.onixHomePopular .productCard__picture.onixPopularCard__image::after { display: none; }
.onixPopularCard__imageInner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.onixHomePopular .onixPopularCard__imageInner picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  overflow: hidden;
  aspect-ratio: auto !important;
}

.onixHomePopular .onixPopularCard__image img {
  position: static !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain;
  transition: transform .28s ease;
}
.onixPopularCard:hover .onixPopularCard__image img { transform: scale(1.025); }

.onixHomePopular .productCard__body.onixPopularCard__body {
  display: grid;
  grid-template-rows: minmax(58px, auto) 31px auto;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  height: auto;
  padding: 0;
}

.onixHomePopular .productCard__title.onixPopularCard__name {
  display: -webkit-box;
  min-width: 0;
  height: auto;
  min-height: 54px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #1f2a33;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.onixHomePopular .productCard__title.onixPopularCard__name:hover { color: #5c9700; }

.onixHomePopular .productCard__availability.onixPopularCard__stock,
.onixPopularCard__stock {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 31px;
  min-height: 31px;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid #7ab700;
  border-radius: 5px;
  color: #1f2a33;
  background: #fff;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}
.onixHomePopular .onixPopularCard__stock strong { color: #5d9900; }
.onixHomePopular .onixPopularCard__stock i {
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.onixHomePopular .onixPopularCard__stock.is-out-of-stock {
  border-color: #cdd5da;
  color: #84939d;
  background: #f8f9f9;
}
.onixPopularCard__stock--section { border-color: rgba(122, 183, 0, .48); color: #5d7a44; }

.onixHomePopular .productCard__footer.onixPopularCard__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  height: auto;
  min-height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
}

.onixPopularCard__price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 38px;
}
.onixPopularCard__price small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #99a3a9;
  font-size: 10px;
  line-height: 1.2;
  text-decoration: line-through;
}
.onixPopularCard__price small b {
  padding: 2px 4px;
  border-radius: 4px;
  color: #fff;
  background: #ff8b24;
  font-size: 9px;
  text-decoration: none;
}
.onixPopularCard__price > strong {
  overflow: hidden;
  color: #142f43;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.onixPopularCard__add {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 34px;
  padding: 7px 11px;
  border: 1px solid #7ab700;
  border-radius: 6px;
  color: #fff;
  background: #7ab700;
  font: inherit;
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.onixPopularCard__add:hover,
.onixPopularCard__add:focus-visible { color: #fff; border-color: #699e00; background: #699e00; transform: translateY(-1px); }

.onixHomeShowroom__tour {
  height: 560px;
  overflow: hidden;
  border: 1px solid var(--onix-line);
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: var(--onix-shadow);
}
.onixHomeShowroom__tour .tourStub { overflow: hidden; border-radius: inherit; }
.onixHomeShowroom__tour .tourStub__img { transition: transform .45s ease; }
.onixHomeShowroom__tour .tourStub:hover .tourStub__img { transform: scale(1.018); }
.onixHomeShowroom__tour .tourStub__btn { z-index: 2; border-radius: 11px; background: rgba(255, 255, 255, .92); color: var(--onix-navy); font-weight: 700; }

@media (max-width: 1600px) {
  .header { gap: 14px; }
  .onixHeaderCatalogButton { min-width: 112px; padding: 0 15px; }
  .onixHomeHero { grid-template-columns: minmax(0, 1.9fr) minmax(340px, 1fr); height: 290px; }
  .onixRackHome__content { padding: 17px 16px 15px; }
  .onixRackHome h2 { margin-bottom: 9px; }
  .onixRackHome p { margin: 7px 0 9px; }
  .onixHomeSolution { min-height: 325px; }
  .onixHomeSolution__content { padding: 19px 20px; }
  .onixHomeSolution__features { gap: 10px; }
}

@media (max-width: 1500px) and (min-width: 991px) {
  .onixRackHome { grid-template-columns: 34% minmax(0, 1fr); }
  .onixRackHome__media { display: block; }
  .onixRackHome__media img { padding: 8px; }
}

@media (max-width: 1280px) {
  .header { gap: 10px; padding-right: 24px; padding-left: 24px; }
  .onixHeaderCatalogButton { min-width: 104px; height: 42px; padding: 0 12px; font-size: 14px; }
  .onixCatalogGrid:not(.is-column-layout) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .onixHomeHero { grid-template-columns: minmax(0, 1.7fr) minmax(330px, 1fr); gap: 18px; height: 270px; }
  .onixRackHome { grid-template-columns: 34% minmax(0, 1fr); }
  .onixRackHome__media { display: block; }
  .onixRackHome__content { padding-right: 13px; padding-left: 13px; }
  .onixRackHome__actions { gap: 6px; }
  .onixRackHome__actions .onixHomeButton { padding-right: 10px; padding-left: 10px; font-size: 12px; }
  .onixHomeBenefit { padding: 17px 18px; }
  .onixHomeSolutions { gap: 18px; }
  .onixHomeSolution,
  .onixHomeSolution--home { grid-template-columns: 1fr; grid-template-rows: 190px auto; }
  .onixHomeSolution--business .onixHomeSolution__media { grid-row: 1; }
  .onixHomeSolution--business .onixHomeSolution__content { grid-row: 2; }
  .onixHomeSolution { min-height: 0; }
}

@media (max-width: 990px) {
  .onixCatalogSearch { display: none; }
  .wrapper { padding: 0 0 60px; }
  .onixSearchSuggest { width: 100%; max-width: 100%; }
  .onixSearchSuggest__grid { grid-template-columns: minmax(0, 1fr); }
  .onixCatalogOverlay { --onix-catalog-edge: clamp(10px, 1.8vw, 18px); }
  .onixCatalogDialog { width: 100%; height: 100%; max-height: none; border-radius: 22px; }
  .onixCatalogDialog__head { min-height: 68px; padding: 12px 17px; }
  .onixCatalogDialog__head > div:first-child { display: block; }
  .onixCatalogDialog__head h2 { font-size: 23px; }
  .onixCatalogDialog__body { padding: 12px; }
  .onixCatalogDialog__foot { min-height: 58px; padding: 8px 15px; }
  .onixCatalogLayout { grid-template-columns: 230px minmax(0, 1fr); gap: 12px; }
  .onixCatalogGrid:not(.is-column-layout) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onixHomeHero { grid-template-columns: 1fr; height: auto; gap: 16px; }
  .onixHomeHero__banners {
    height: auto;
    min-height: 0;
    aspect-ratio: 1200 / 310;
    background: #f4f6f5;
  }
  .onixHomeHero .homeSlider__item img { object-fit: contain; }
  .onixHomeHero__rack { height: 290px; }
  .onixRackHome { grid-template-columns: 42% minmax(0, 1fr); }
  .onixRackHome__media { display: block; }
  .onixHomeBenefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onixHomeBenefit:nth-child(2) { border-right: 0; }
  .onixHomeBenefit:nth-child(-n+2) { border-bottom: 1px solid var(--onix-line); }
  .onixHomeCompanyFacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onixHomeCompanyFact--edo { grid-column: 1 / -1; }
  .onixHomeSolutions { grid-template-columns: 1fr; }
  .onixHomeSolution,
  .onixHomeSolution--home { grid-template-columns: 42% minmax(0, 1fr); grid-template-rows: none; min-height: 335px; }
  .onixHomeSolution--business .onixHomeSolution__media,
  .onixHomeSolution--business .onixHomeSolution__content { grid-row: auto; }
  .onixHomeSolution--business .onixHomeSolution__content { grid-column: 1; }
  .onixHomeSolution--business .onixHomeSolution__media { grid-column: 2; }
  .onixHomeSolution--home .onixHomeSolution__media { grid-column: 1; }
  .onixHomeSolution--home .onixHomeSolution__content { grid-column: 2; }
  .onixHomeShowroom__tour { height: 440px; }
}

@media (max-width: 760px) {
  .onixHomeHero__banners { aspect-ratio: 768 / 350; }
  .onixCatalogOverlay { --onix-catalog-edge: 8px; }
  .onixCatalogDialog { border-radius: 17px; }
  .onixCatalogDialog__head { min-height: 62px; }
  .onixCatalogDialog__close { width: 40px; height: 40px; }
  .onixCatalogDialog__close span::before,
  .onixCatalogDialog__close span::after { top: 19px; left: 12px; width: 16px; }
  .onixCatalogDialog__body { padding: 9px 10px; }
  .onixCatalogLayout { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); gap: 10px; }
  .onixCatalogRail {
    flex-direction: row;
    gap: 6px;
    min-height: 64px;
    padding: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 14px;
    touch-action: pan-x;
  }
  .onixCatalogRail::-webkit-scrollbar-track { margin: 0 10px; }
  .onixCatalogPanels::-webkit-scrollbar-track { margin: 10px 0; }
  .onixCatalogRail__item {
    grid-template-columns: 26px auto;
    width: auto;
    min-width: max-content;
    min-height: 48px;
    padding: 7px 10px;
  }
  .onixCatalogMainIcon { width: 25px; height: 25px; }
  .onixCatalogRail__arrow { display: none; }
  .onixCatalogPanels { padding: 0 3px 10px; }
  .onixCatalogPanel__head { align-items: flex-start; min-height: 40px; margin-bottom: 9px; }
  .onixCatalogPanel__head h2 { font-size: 23px; }
  .onixCatalogPanel__head p { display: none; }
  .onixCatalogPanel__all { font-size: 12px; }
  .onixCatalogGrid:not(.is-column-layout) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .onixCatalogGrid__column { gap: 7px; }
  .onixCatalogCard { padding: 9px; border-radius: 12px; }
  .onixCatalogCard__top { grid-template-columns: 27px minmax(0, 1fr) auto; gap: 7px; }
  .onixCatalogSubIcon { width: 27px; height: 27px; padding: 0; }
  .onixCatalogCard__title { font-size: 11.5px; }
  .onixCatalogCard__children { margin-left: 34px; }
  .onixCatalogDialog__foot { justify-content: space-between; }
  .onixCatalogDialog__foot span { display: none; }
  .onixCatalogDialog__foot button { width: 100%; justify-content: center; }

  .onixConsultOverlay {
    place-items: start center;
    height: 100vh;
    height: 100dvh;
    padding: 8px;
    overflow: hidden;
  }
  .onixConsultDialog {
    align-self: start;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 151, 0, .55) rgba(17, 24, 32, .06);
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .onixConsultDialog::-webkit-scrollbar { width: 6px; }
  .onixConsultDialog::-webkit-scrollbar-track { background: rgba(17, 24, 32, .06); }
  .onixConsultDialog::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(79, 151, 0, .55); }
  .onixConsultDialog__close { top: 12px; right: 12px; }
  .onixConsultDialog__aside { min-height: 112px; padding: 24px 70px 20px 20px; justify-content: center; border-radius: 19px 19px 0 0; }
  .onixConsultDialog__mark { top: 18px; left: 20px; }
  .onixConsultDialog__aside strong { max-width: 290px; margin-top: 23px; font-size: 18px; }
  .onixConsultDialog__aside ul { display: none; }
  .onixConsultDialog__content { padding: 24px 18px 22px; }
  .onixConsultDialog__head { padding-right: 0; }
  .onixConsultDialog__head h2 { font-size: 25px; }
  .onixConsultForm { margin-top: 20px; }
  .onixConsultForm__grid { grid-template-columns: 1fr; gap: 12px; }
  .onixConsultField--wide { grid-column: auto; }
  .onixConsultField textarea { min-height: 96px; }
  .onixConsultForm__actions { align-items: stretch; flex-direction: column-reverse; gap: 10px; }
  .onixConsultForm__actions p { max-width: none; text-align: center; }
  .onixConsultForm__actions button { width: 100%; }
  .onixConsultSuccess { min-height: 360px; }

  .onixHomepage2026 { --home-gap: 28px; }
  .onixHomeHero { gap: 14px; margin-bottom: 32px; }
  .onixHomeHero__rack { height: 290px; }
  .onixRackHome { grid-template-columns: 42% minmax(0, 1fr); }
  .onixRackHome__media { display: block; }
  .onixHomeSection { margin-bottom: 34px; }
  .onixHomeProjects { padding: 20px 14px 16px; border-radius: 19px; }
  .onixHomeSection__head { align-items: center; margin-bottom: 13px; }
  .onixHomeSection__head h2 { font-size: 26px; }
  .onixHomeSection__controls > a,
  .onixHomeTextAction { margin-right: 0; }
  .onixSliderArrow { display: none; }
  .onixHomeBenefits { margin-bottom: 20px; }
  .onixHomeCompanyFact { min-height: 126px; padding: 17px; }
  .onixHomeCompanyFact--edo { min-height: 118px; padding: 18px 20px; }
  .onixHomeSolutions { margin-bottom: 36px; }
  .onixHomeShowroom__tour { height: 390px; }
  .onixHomePopular .productCard.onixPopularCard { min-height: 374px; }
  .onixHomePopular .onixPopularCard__visual { flex-basis: 186px; height: 186px; min-height: 186px; }
  .onixHomePopular .productCard__picture.onixPopularCard__image { height: 174px; }
}

@media (max-width: 520px) {
  .onixCatalogGrid:not(.is-column-layout) { grid-template-columns: 1fr; }
  .onixCatalogPanel__head { gap: 10px; }
  .onixCatalogPanel__all { max-width: 90px; text-align: right; }
  .onixCatalogCard__title { font-size: 12px; }
  .onixHomeHero__rack { height: auto; }
  .onixRackHome { grid-template-columns: 1fr; min-height: 360px; }
  .onixRackHome__media { height: 150px; }
  .onixRackHome__content { padding: 16px; }
  .onixHomeSection__head { align-items: flex-end; }
  .onixHomeProjects { padding: 18px 12px 14px; border-radius: 17px; }
  .onixHomeProjects .onixHomeSection__head { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 13px; }
  .onixHomeSection__controls > a,
  .onixHomeTextAction { font-size: 12px; }
  .onixHomeSectionCard { height: 184px; }
  .onixHomeSections .onixHomeTextAction { min-height: 36px; padding: 7px 11px; }
  .onixHomeSectionCard__project { min-height: 38px; padding: 8px 12px; font-size: 12px; }
  .onixHomeBenefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onixHomeBenefit,
  .onixHomeBenefit:nth-child(2) {
    flex-direction: column;
    gap: 10px;
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 13px 9px;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
  }
  .onixHomeBenefit:nth-child(odd) { border-right: 1px solid var(--onix-line); }
  .onixHomeBenefit:nth-child(-n+2) { border-bottom: 1px solid var(--onix-line); }
  .onixHomeBenefit strong { line-height: 1.22; }
  .onixHomeBenefit small { line-height: 1.25; }
  .onixHomeCompanyFacts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .onixHomeCompanyFact { min-height: 151px; padding: 16px 14px; }
  .onixHomeCompanyFact--edo { grid-column: 1 / -1; min-height: 108px; padding: 18px 20px; }
  .onixHomeSolution,
  .onixHomeSolution--home { grid-template-columns: 1fr; grid-template-rows: 190px auto; min-height: 0; }
  .onixHomeSolution--business .onixHomeSolution__media,
  .onixHomeSolution--home .onixHomeSolution__media { grid-column: 1; grid-row: 1; }
  .onixHomeSolution--business .onixHomeSolution__content,
  .onixHomeSolution--home .onixHomeSolution__content { grid-column: 1; grid-row: 2; }
  .onixHomeSolution__content { padding: 20px 18px; }
  .onixHomeSolution__features { gap: 10px 8px; }
  .onixHomeSolution__actions { flex-wrap: wrap; }
  .onixHomeSolution__actions .onixHomeButton { flex: 1 1 135px; }
  .onixHomeProjectCard__media { height: 200px; }
  .onixHomePopular .productCard.onixPopularCard { min-height: 360px; padding: 12px; }
  .onixHomePopular .onixPopularCard__visual { flex-basis: 177px; height: 177px; min-height: 177px; }
  .onixHomePopular .productCard__picture.onixPopularCard__image { height: 165px; }
  .onixHomePopular .productCard__footer.onixPopularCard__bottom { gap: 7px; }
  .onixPopularCard__price > strong { font-size: 16px; }
  .onixPopularCard__add { min-width: 90px; padding-right: 8px; padding-left: 8px; }
  .onixHomeShowroom__tour { height: 330px; }
  .onixHomeShowroom__all { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .onixCatalogOverlay,
  .onixCatalogDialog,
  .onixConsultOverlay,
  .onixConsultDialog,
  .onixHomepage2026 *,
  .onixHomepage2026 *::before,
  .onixHomepage2026 *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
