/* HEADER START */
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(17, 17, 17, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s ease 0.1s, opacity 0.4s ease 0.1s, z-index 0s 0.1s;
  transition: visibility 0s ease 0.1s, opacity 0.4s ease 0.1s, z-index 0s 0.1s;
}

body:has(.main-nav__item._drop:hover):after {
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

.header {
  background-color: var(--bg-primary);
  position: relative;
  z-index: 10;
  width: 100%;
}
.header__top {
  padding-top: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(121, 153, 161, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin-right: 12px;
}
.header__call span {
  font-size: 13px;
}
.header__call a {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__options-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(121, 153, 161, 0.2);
  color: var(--primary-main);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.header__options-item ._quantity {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--secondary-main);
  font-weight: 600;
  font-size: 11px;
  line-height: 13px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(24%, -24%);
      -ms-transform: translate(24%, -24%);
          transform: translate(24%, -24%);
}
.header__options-item ._quantity span {
  text-align: center;
  width: 14px;
  height: 14px;
}
.header__options-item svg {
  width: 22px;
  height: 22px;
}
.header__options-item:hover {
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.header__bottom {
  padding-top: 16px;
  padding-bottom: 24px;
}

.logo-header {
  height: 50px;
}
.logo-header img {
  height: 100%;
  width: auto;
}

.main-nav {
  position: relative;
}
.main-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}
.main-nav__item:hover .main-nav__link {
  background-color: var(--primary-main);
  color: #FFFFFF;
}
.main-nav__item:hover .main-nav__link svg {
  color: #FFFFFF;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.main-nav__item:hover .nav-drop-panel {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease 0.1s;
  transition: all 0.2s ease 0.1s;
}
.main-nav__item:hover .nav-drop-panel__inner {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.main-nav__link {
  padding: 11px 32px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-size: 18px;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease 0.1s;
  transition: all 0.2s ease 0.1s;
}
.main-nav__link svg {
  width: 24px;
  height: 24px;
  color: var(--primary-main);
  -webkit-transition: all 0.2s ease 0.1s;
  transition: all 0.2s ease 0.1s;
}

.nav-drop-panel {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-drop-panel__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 58px;
  margin-top: 32px;
  background-color: var(--bg-primary);
  border-radius: 8px;
  padding: 22px;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-drop-panel__left {
  width: 100%;
}
.nav-drop-panel__left.--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 28px 32px;
  gap: 28px 32px;
}
.nav-drop-panel__left.--gap-16 {
  gap: 16px;
}
.nav-drop-panel__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 62px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-drop-panel__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.nav-drop-panel__list li a {
  color: #35343C;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.nav-drop-panel__list li a:hover {
  color: #111111;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
@media (hover: hover) {
  .nav-drop-panel__list:hover .nav-drop-panel__list-icon {
    background-color: var(--primary-main);
  }
  .nav-drop-panel__list:hover .nav-drop-panel__list-icon img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.nav-drop-panel__list-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: var(--text-light);
  position: absolute;
  top: 0;
  left: 0;
}
.nav-drop-panel__list-icon img {
  width: 28px;
  height: 28px;
}
.nav-drop-panel__list-title {
  margin-bottom: 8px;
}
.nav-drop-panel__right {
  width: 542px;
  height: 522px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.drop-banner-slider {
  max-height: 522px;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  --box-padding: 18px;
}
.drop-banner-slider .swiper {
  height: 100%;
  z-index: 1;
}
.drop-banner-slider .swiper-wrapper {
  height: 100%;
}
.drop-banner-slider .custom-swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 180px;
  position: absolute;
  bottom: var(--box-padding);
  right: var(--box-padding);
  left: auto;
  z-index: 2;
}

.drop-banner {
  height: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--box-padding);
  overflow: hidden;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drop-banner .h3, .drop-banner h3 {
  margin-bottom: 4px;
}
.drop-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(0.48deg, rgba(17, 17, 17, 0.8) 0.31%, rgba(17, 17, 17, 0) 35.55%);
  z-index: 0;
}
.drop-banner__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.drop-banner__content {
  margin-top: auto;
  position: relative;
  z-index: 2;
  color: var(--text-white);
  padding-right: calc(180px - var(--box-padding));
}
.drop-banner__content p {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}

.drop-offer {
  background: var(--bg-grey);
  border-radius: 6px;
  overflow: hidden;
  padding: 12px;
  height: 119px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.drop-offer:not(:hover) {
  background-image: none !important;
}
.drop-offer:hover:not(.--all):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.08)), linear-gradient(288.57deg, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0) 52.38%);
  z-index: 0;
}
.drop-offer:hover .drop-offer__label {
  background: rgba(17, 17, 17, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #FFFEFD;
}
.drop-offer:hover .drop-offer__logo {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.drop-offer__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 130%;
  color: var(--primary-hover);
  padding: 5px 8px;
  background-color: #FFFEFD;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.drop-offer__logo {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 100%;
  height: auto;
  max-width: 150px;
  max-height: 80px;
  z-index: 1;
}
.drop-offer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.drop-offer__link .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-main);
}
.drop-offer__link .icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.drop-offer.--all {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1560px) {
  .main-nav__list {
    gap: 10px;
  }
  .main-nav__link {
    padding: 11px 18px;
  }
}
@media (max-width: 1360px) {
  .nav-drop-panel__right {
    width: 40%;
  }
  .header__bottom {
    padding-top: 8px;
    padding-bottom: 16px;
  }
  .main-nav__link {
    font-size: 14px;
    padding: 6px 14px;
  }
}
@media (max-width: 1180px) {
  .header__btn span {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header__top {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(121, 153, 161, 0.2);
  }
  .header__bottom {
    display: none;
  }
}
@media (max-width: 800px) {
  .logo-header {
    height: 34px;
  }
  .header__call {
    display: none;
  }
  .header__btn {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    background-color: var(--primary-main);
    color: #FFFEFD;
  }
  .header__btn svg {
    width: 14px;
    height: 14px;
  }
  .header__top-right {
    gap: 6px;
  }
  .header__options {
    gap: 6px;
  }
  .header__options-item {
    width: 28px;
    height: 28px;
  }
  .header__options-item svg {
    width: 14px;
    height: 14px;
  }
  .header__options-item ._quantity {
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 12px;
    -webkit-transform: translate(46%, -41%);
        -ms-transform: translate(46%, -41%);
            transform: translate(46%, -41%);
  }
  .header__options-item ._quantity span {
    width: 12px;
    height: 12px;
  }
}
/* HEADER END */
/* MENU START */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: overflow 0s 0.5s, z-index 0s 0.5s, background 0s 0.5s;
  transition: overflow 0s 0.5s, z-index 0s 0.5s, background 0s 0.5s;
}

.menu-wrap._active {
  visibility: visible;
  z-index: 9;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  background: rgba(29, 42, 61, 0.3882352941);
  -webkit-transition: background 0s 0s;
  transition: background 0s 0s;
}

.menu-wrap._active .menu {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/* MENU END */
/* FIXMENU START */
.fix-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.fix-menu__inner {
  background-color: #FFFFFF;
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  -webkit-box-shadow: 0px -3px 12px 0px rgba(79, 113, 119, 0.1019607843);
          box-shadow: 0px -3px 12px 0px rgba(79, 113, 119, 0.1019607843);
}
.fix-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.fix-menu__btn svg {
  width: 24px;
  height: 24px;
}
.fix-menu__btn.--main .icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-main);
  border-radius: 50%;
  color: #FFFEFD;
  margin-top: -28px;
}
.fix-menu__btn span {
  margin-top: 4px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
}

@media (max-width: 768px) {
  .fix-menu__inner {
    padding: 10px;
  }
  .fix-menu__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .fix-menu__btn:nth-child(4) {
    margin: 0 22px;
  }
  .fix-menu__btn span {
    font-size: 9px;
  }
}
/* FIXMENU END */