@charset "UTF-8";
.header-top {
  padding: 0.125rem 0;
  border-bottom: 0.0625rem solid #eee;
}
.header-top__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header {
  position: relative;
}
.header-main {
  position: relative;
  border-bottom: 0.0625rem solid #eee;
}
.header-main.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  z-index: 999;
}
.header-main__container {
  padding: 0.9375rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.header-main__right {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.header-main__right--top {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  padding: 0.4375rem 0;
}
.header-main__right--infomenu {
  display: flex;
  gap: 0.9375rem;
}
.header-main__right--infomenu--link {
  font-size: 0.9375rem;
  transition: all 0.3s;
}
.header-main__right--infomenu--link:hover {
  color: #dc0f0f;
}
.header-main__right--langs {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header-main__right--langs .btn {
  padding: 0.3125rem 0.4375rem;
  text-transform: uppercase;
  font-weight: 500;
}
.header-main__right--langs .btn:not(:last-child) {
  border-right: 0.0625rem solid #eee;
  transition: all 0.3s;
}
.header-main__right--langs .btn.active {
  color: #dc0f0f;
}
.header-main__right--langs .btn:hover, .header-main__right--langs .btn:active {
  color: #dc0f0f;
}
.header-main__right--bottom {
  display: flex;
  flex: 1;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.header-main__right--actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.header-main__right--actions .action-link {
  font-size: 1.875rem;
  color: #0E1B0B;
  transition: all 0.3s;
}
.header-main__right--actions .action-link:hover {
  color: #dc0f0f;
}
.header-main__right--item {
  position: relative;
}
.header-main__right--item .count {
  position: absolute;
  bottom: -0.125rem;
  right: -0.25rem;
  height: 1.125rem;
  min-width: 1.125rem;
  border-radius: 6.25rem;
  background-color: #dc0f0f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}
.header-main__right--search {
  position: relative;
  display: flex;
  border: 0.0625rem solid #eee;
  width: 100%;
}
.header-main__right--input {
  padding: 0.625rem 0.9375rem;
  outline: 0;
}
.header-main__right--btn {
  padding: 0.625rem 0.9375rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.logo__link img {
  width: 100%;
  height: auto;
}

.open-pc-catalog {
  background-color: #dc0f0f;
  padding: 0.75rem 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 700;
  color: #fff;
}

.pc-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 40;
  top: 7.375rem;
}
.header--sticky .pc-menu {
  top: 4.5625rem;
}
.pc-menu.is-open {
  display: block;
}
.catalog-open .pc-menu {
  display: block;
}
.pc-menu__container {
  position: relative;
  z-index: 40;
}
.pc-menu__menu-list {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  background-color: #fff;
  border: 0.0625rem solid #eee;
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.12);
  max-height: calc(100vh - 8.75rem);
  overflow: hidden;
  overflow-y: auto;
}
.pc-menu__menu-item {
  text-transform: none;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border-right: #eee;
}
.pc-menu.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #dc0f0f;
  z-index: 999;
}

.open .mega-item {
  background: rgba(0, 0, 0, 0.04);
}
.mega-item__elem {
  display: flex;
  align-items: start;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
  color: #0E1B0B;
  padding: 0.75rem 1.125rem;
  font-weight: 700;
  max-width: 17.5rem;
  border-right: #eee;
}
.mega-item__elem .--icon-down {
  position: static;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
  font-size: 0.75rem;
}
.open .mega-item__elem .--icon-down {
  transform: rotate(-90deg);
  top: 0.25rem;
}
.mega-item__item {
  text-transform: none;
}
.mega-item__drop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17.5rem;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  width: calc(100% - 17.5rem);
  max-width: calc(100% - 17.5rem);
  height: 100%;
  background: #fff;
  border-top: #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.24s cubic-bezier(0.2, 0.6, 0.2, 1), visibility 0s linear 0.24s;
  pointer-events: none;
  z-index: -1;
  overflow: auto;
}
.open .mega-item__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s, 0s, 0s;
  z-index: 1;
}
.mega-item__catwrap {
  padding: 1.5rem;
  -webkit-column-width: 33.3333333333%;
  -moz-column-width: 33.3333333333%;
  column-width: 33.3333333333%;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  height: auto;
}
.mega-item__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.25rem;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  overflow: hidden;
  width: 16.25rem;
}
.mega-item__item {
  margin: 0 0 0.625rem 0;
}
.mega-item__item.parent-link {
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

/* прячем старый catwrap (columns) когда включен новый режим */
.mega-item[data-enhanced="1"] .mega-item__catwrap {
  display: none;
}

/* drop теперь 2 колонки: lvl2 слева + lvl3 справа */
.mega-item__drop {
  display: flex;
  gap: 0; /* чтобы панели стыковались */
  overflow: hidden; /* скролл делаем внутри */
}

/* 2-й уровень */
.mega-item__lvl2 {
  flex: 0 0 20rem; /* ширина списка 2 уровня */
  border-right: 0.0625rem solid #eee;
  background: #fff;
  overflow-y: auto;
  display: none;
}

.mega-item__lvl2-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #0E1B0B;
  font-weight: 700;
}
.mega-item__lvl2-link:hover, .mega-item__lvl2-link.is-active {
  background: rgba(0, 0, 0, 0.04);
}

/* 3-й уровень */
.mega-item__lvl3 {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.mega-item__lvl3-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.625rem 1rem;
}

.mega-item__lvl3-link {
  display: block;
  text-decoration: none;
  color: #0E1B0B;
  font-weight: 500;
  padding: 0.375rem 0;
}
.mega-item__lvl3-link:hover {
  text-decoration: underline;
}

.mega-item.open .mega-item__lvl2 {
  display: block;
}

.drop {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 31;
  min-width: 15.625rem;
}
.drop__opener {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  line-height: 1.2;
  font-weight: 700;
  z-index: 999;
}
.drop__opener .--icon-down {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  margin-top: -0.25rem;
}
.drop.is-open .--icon-down {
  transform: rotate(180deg);
  margin-top: 0.25rem;
}
.drop__wrap {
  position: absolute;
  top: -0.9375rem;
  left: -0.9375rem;
  width: 100%;
  background: #fff;
  transition: opacity 0.3s ease;
  box-shadow: 0 0.625rem 1.25rem rgba(18, 18, 18, 0.1);
  padding: 1.8125rem 0.9375rem 0.9375rem 0.9375rem;
  z-index: 99;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.28s;
  pointer-events: none;
}
.drop.is-open .drop__wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}
.drop__row {
  padding: 0.625rem 0;
}
.drop__row:not(:first-child) {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.drop__row.phones .drop__tel {
  display: block;
  text-decoration: none;
  padding: 0.375rem 0;
  font-weight: 600;
  color: #0E1B0B;
}
.drop__row.phones .drop__tel:hover {
  color: #dc0f0f;
}
.drop__row.email .drop__email {
  display: inline-block;
  text-decoration: none;
  color: #0E1B0B;
}
.drop__row.email .drop__email:hover {
  color: #dc0f0f;
}
.drop__row.address p, .drop__row.graph p {
  margin: 0.375rem 0 0;
  color: #333;
  line-height: 1.4;
}
.drop__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #777;
  margin-bottom: 0.625rem;
}

.open-mob {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem;
  font-size: 1.25rem;
  background-color: #dc0f0f;
  color: #fff;
}

html.is-locked, body.is-locked {
  overflow: hidden;
}

.mob-menu ul ul {
  display: none;
}

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 9990;
  isolation: isolate;
  pointer-events: none;
}
.mob-menu[aria-hidden=true] {
  visibility: hidden;
}
.mob-menu {
  isolation: isolate;
}
.mob-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.2, 0.6, 0.2, 1);
  z-index: 1000;
}
.mob-menu__main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(86vw, 32.5rem);
  max-width: 100%;
  background: #fff;
  box-shadow: 0 1.125rem 2.5rem rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.6, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
}
.mob-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.mob-menu__head--title img {
  width: 5.625rem;
  height: auto;
}
.mob-menu__head--close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid #eee;
  background: #fff;
  font-size: 0.9375rem;
}
.mob-menu__head--close .--icon-close {
  display: flex;
}
.mob-menu__head--close:hover {
  color: #dc0f0f;
}
.mob-menu__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}
.mob-menu__item.width-icon {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.625rem;
}
.mob-menu__item.width-icon span {
  font-size: 1.125rem;
}
.mob-menu__item.infolinks {
  padding: 0.9375rem 0;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.mob-menu__item.infolinks a {
  display: block;
  padding: 0.625rem 0;
  width: 100%;
  color: #0E1B0B;
}
.mob-menu__item.infolinks a:hover {
  color: #dc0f0f;
}
.mob-menu__item .header-main__right--langs {
  display: flex;
  justify-content: start;
  padding: 0.9375rem 0;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.mob-menu__item.contacts-item {
  padding: 0.9375rem 0;
}
.mob-menu__list, .mob-menu__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mob-menu__item, .mob-menu__menu-item {
  margin: 0;
}
.mob-menu__link, .mob-menu__elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.9375rem 0.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}
.with-icon .mob-menu__link, .with-icon .mob-menu__elem {
  justify-content: start;
}
.mob-menu__link:active, .mob-menu__elem:active {
  opacity: 0.75;
}
.accent .mob-menu__link, .accent .mob-menu__elem {
  color: #dc0f0f;
}
.mob-menu__link-ttl {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.mob-menu .mm-panels {
  display: flex;
  min-height: 0;
  flex: 1;
  width: 100%;
  transition: transform 0.28s cubic-bezier(0.2, 0.6, 0.2, 1);
  transform: translateX(0);
}
.mob-menu .mm-panel {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.mob-menu .mm-panel .mm-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
}
.mob-menu .mm-panel .mm-head .mm-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}
.mob-menu .mm-panel .mm-head .mm-back {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.1875rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.08);
  background: #fff;
}
.mob-menu .mm-panel .mm-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0.375rem 0.5rem;
}
.mob-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mob-menu.is-open .mob-menu__overlay {
  opacity: 1;
}
.mob-menu.is-open .mob-menu__main {
  transform: translateX(0);
}
.mm-scroll {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.contacts-item__row {
  padding: 0.625rem 0;
}
.contacts-item__row.phones a {
  display: block;
  text-decoration: none;
  padding: 0.375rem 0;
  font-weight: 700;
  color: #0E1B0B;
}
.contacts-item__row.phones a:hover {
  color: #dc0f0f;
}
.contacts-item__row.email .drop__email {
  display: inline-block;
  text-decoration: none;
  color: #0E1B0B;
}
.contacts-item__row.email .drop__email:hover {
  color: #dc0f0f;
}
.contacts-item__row.address p, .contacts-item__row.graph p {
  margin: 0.375rem 0 0;
  color: #333;
  line-height: 1.4;
}
.contacts-item__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #777;
  margin-bottom: 0.625rem;
}

.soc__list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.soc__link {
  font-size: 1.5625rem;
  color: #dc0f0f;
}
.soc__link:hover {
  color: #485400;
}

#search .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  z-index: 98;
  display: none;
  float: left;
  min-width: 16.875rem;
  width: 100%;
  padding: 0.3125rem 0;
  margin: 0;
  font-size: 0.75rem;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 0.0625rem solid #eee;
  max-width: 100%;
  overflow: hidden auto;
  max-height: 60vh;
}
#search .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
#search .dropdown-menu li > a, #search .dropdown-menu li.disabled {
  display: block;
  padding: 0.625rem 0.625rem;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #0E1B0B;
  white-space: unset;
  text-decoration: none;
}
#search .dropdown-menu li {
  list-style-image: none !important;
  clear: both;
}
#search .dropdown-menu li.inline {
  display: inline-block;
  margin-left: 0.3125rem;
  vertical-align: top;
}
#search .dropdown-menu li.inline a {
  border-radius: 0.3125rem;
  padding: 0.3125rem 0.3125rem;
}
#search .dropdown-menu li.more a {
  padding: 0;
}
#search .dropdown-menu li:not(.disabled, .inline, .more) {
  border-bottom: 0.0625rem solid #f1f1f1;
}
#search .dropdown-menu a:hover, #search .dropdown-menu a:focus {
  color: #0E1B0B;
  text-decoration: none;
  background-color: #f5f5f5;
  background-image: none;
}
#search .dropdown-menu .active a, #search .dropdown-menu .active a:hover, #search .dropdown-menu .active a:focus {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
#search .dropdown-menu .disabled a, #search .dropdown-menu .disabled a:hover, #search .dropdown-menu .disabled a:focus {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
#search .dropdown-menu .disabled a:hover, #search .dropdown-menu .disabled a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
#search .divider {
  height: 0.0625rem;
  margin: 0.5625rem 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

#search .dropdown-menu::-webkit-scrollbar-track {
  background-color: transparent;
}

#search .dropdown-menu::-webkit-scrollbar {
  width: 0.25rem;
  background-color: white;
}

#search .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
}

.search-results .title {
  font-size: 1em;
  font-weight: 700;
  text-transform: none;
  line-height: normal;
}
.disabled .search-results .title {
  width: fit-content;
  padding-bottom: 0.3125rem;
  font-size: 1.2em;
  text-transform: uppercase;
}
.search-results__item {
  overflow: hidden;
  width: 100%;
  display: flex;
  gap: 0.9375rem;
}
.search-results__item .center {
  flex-grow: 1;
  min-width: 0;
}
.search-results__item .center div {
  margin-bottom: 0.1875rem;
}
.search-results__item .left, .search-results__item .right {
  align-self: center;
  text-align: center;
}
.search-results__item .label {
  font-weight: normal;
  color: darkgray;
  padding-left: 0;
  padding-right: 0.3125rem;
}
.search-results__item .name {
  font-weight: 700;
}
.search-results__item .image img {
  border-radius: 0.3125rem;
}
.search-results__item .price-old {
  text-decoration: line-through;
  display: block;
  margin-right: 0.125rem;
  color: #979393;
  position: relative;
  font-weight: normal;
  font-size: 0.8em;
}
.search-results__item .price-new {
  display: block;
  color: #485400;
  font-weight: 700;
}
.search-results__item .price-base {
  color: #0E1B0B;
  font-weight: 700;
}
.search-results__item .more {
  line-height: 1.875rem;
  text-align: center;
  font-size: 1.1em;
  color: white;
  opacity: 0.7;
  font-weight: 700;
}
.search-results__item .more:hover {
  opacity: 1;
}
.search-results__item .out-stock {
  margin-top: 0.1875rem;
}
.search-results__item .out-stock .value {
  color: white;
  background-color: #485400;
  width: fit-content;
  padding: 0.1875rem 0.3125rem;
  font-size: 0.9em;
  font-weight: 700;
}
.search-results__item .in-stock {
  margin-top: 0.1875rem;
}
.search-results__item .in-stock .value {
  color: white;
  background-color: #dc0f0f;
  width: fit-content;
  padding: 0.1875rem 0.3125rem;
  font-size: 0.9em;
  font-weight: 700;
}
.search-results__item .model, .search-results__item .sku {
  display: block;
}
.search-results__item.manufacturer .name {
  text-align: center;
  font-weight: 700;
}
.search-results__item.category .name {
  text-align: center;
  font-weight: 700;
}
@media (max-width: 87.5em){
  .header-main__right--infomenu {
    gap: 0.625rem;
  }
}
@media (max-width: 61.99875em){
  .header-top {
    display: none;
  }
  .header-main__right {
    flex: 1;
  }
  .header-main__right--infomenu--link {
    display: none;
  }
  .header-main__right--langs {
    display: none;
  }
  .is-sticky .header-main__right--bottom {
    flex-direction: row;
  }
  .header-main__right--actions {
    order: 2;
  }
  .header-main__right--search {
    order: 1;
  }
  .header-main__contact {
    display: none;
  }
  .open-pc-catalog {
    display: none;
  }
  .open-mob {
    display: flex;
  }
}
@media (max-width: 47.99875em){
  .header-main:not(.is-sticky) {
    padding-bottom: 3.125rem;
    background-color: #fff;
  }
  .header-main__right--search:not(.is-sticky .header-main__right--search) {
    position: absolute;
    bottom: 0.625rem;
    left: 0.9375rem;
    right: 0.9375rem;
    width: calc(100% - 1.875rem);
  }
  .is-sticky .header-main__right--account {
    display: none;
  }
  .is-sticky .header-main__right--wishlist {
    display: none;
  }
  .is-sticky .logo__link {
    display: none;
  }
}
@media (max-width: 20em){
  .logo__link {
    width: 10rem;
  }
}
@media (min-width: 20em) and (max-width: 87.5em){
  .logo__link {
    width: clamp( 10rem , 9.25925925925625rem  +  3.7037037037vw , 12.5rem );
  }
}
@media (min-width: 61.99875em){
  .logo {
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media (min-width: 62rem){
  .mob-menu {
    display: none;
  }
}
@media (min-width: 87.5em){
  .logo__link {
    width: 12.5rem;
  }
}
@media (prefers-reduced-motion: reduce){
  .mega-item__elem .--icon-down {
    transition: none !important;
  }
  .mega-item__drop {
    transition: none !important;
  }
}