@font-face {
  font-family: "SolomonSans";
  src: url("../fonts/SolomonSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SolomonSans";
  src: url("../fonts/SolomonSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SolomonSans";
  src: url("../fonts/SolomonSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font: "SolomonSans", sans-serif;
  --shadow: 0 6px 13px 0 rgba(0, 0, 0, 10%);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 500;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

input,
button {
  outline: none;
  border: 0;
  font-family: var(--font);
}

.no-scroll {
  overflow: hidden;
}

h2,
.h2 {
  font-size: 48px;
  color: #000000;
  margin: 0;
  margin-bottom: 38px;
  font-weight: 700;
  line-height: 52px;
}
@media (max-width: 1200px) {
  h2,
  .h2 {
    font-size: 42px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

h3,
.h3 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 992px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}

h4,
.h4 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}

h5,
.h5 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 18px;
  }
}

.wrapper {
  overflow: hidden;
}

.main-header {
  position: relative;
  z-index: 12;
  background: #fff;
}
.main-header__top {
  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;
  border-bottom: 1px solid #cecece;
  padding: 24px 0;
}
@media (max-width: 992px) {
  .main-header__top {
    border-bottom: 0;
    padding: 14px 0;
  }
}
.main-header__top .mobile-toggle {
  width: 45px;
  height: 45px;
  border-radius: 9px;
  background: #f3f9ff;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-header__top .mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header__top .mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #2a3c89;
  border-radius: 9px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-header__top .mobile-toggle span:before, .main-header__top .mobile-toggle span:after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: #2a3c89;
  border-radius: 9px;
  top: -7px;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-header__top .mobile-toggle span:after {
  top: auto;
  bottom: -7px;
}
.main-header__top .mobile-toggle.active span {
  background: transparent;
}
.main-header__top .mobile-toggle.active span:before {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}
.main-header__top .mobile-toggle.active span:after {
  -webkit-transform: rotate(-45deg) translate(6px, -5px);
  -ms-transform: rotate(-45deg) translate(6px, -5px);
  transform: rotate(-45deg) translate(6px, -5px);
}
.main-header__top .logo {
  font-size: 0;
}
@media (max-width: 992px) {
  .main-header__top .logo img {
    height: 44px;
    width: auto;
  }
}
@media (max-width: 992px) {
  .main-header__top .search-block {
    display: none;
  }
}
@media (max-width: 992px) {
  .main-header__top .btn-top {
    display: none;
  }
}
@media (max-width: 1200px) {
  .main-header__top .social-list {
    display: none;
  }
}
@media (max-width: 992px) {
  .main-header__top .phone-block {
    display: none;
  }
}
.main-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .main-header__nav {
    display: none;
    position: absolute;
    top: 73px;
    right: 0;
    left: 0;
    height: calc(100dvh - 73px);
    background: #f3f9ff;
  }
}
@media (max-width: 992px) {
  .main-header__nav .inner {
    padding: 37px 18px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: auto;
    height: 100%;
  }
}
.main-header__nav .search-block {
  display: none;
}
@media (max-width: 992px) {
  .main-header__nav .search-block {
    display: block;
  }
}
@media (max-width: 992px) {
  .main-header__nav nav {
    padding-bottom: 15px;
    border-bottom: 1px solid #cecece;
    margin-bottom: 20px;
  }
}
.main-header__nav .social-list {
  display: none;
}
@media (max-width: 992px) {
  .main-header__nav .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header__nav .column {
  display: none;
}
@media (max-width: 992px) {
  .main-header__nav .column {
    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;
    margin-bottom: 45px;
  }
}
.main-header__nav.open-catalog .inner {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (max-width: 992px) {
  .main-header__nav.open-catalog .inner {
    overflow: visible;
  }
}

.main-menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1200px) {
  .main-menu {
    gap: 35px;
  }
}
@media (max-width: 992px) {
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: -18px;
    margin-left: -18px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }
}
.main-menu .brands-block__list .item {
  background: #fff;
}
.main-menu__item {
  list-style-type: none;
}
@media (max-width: 992px) {
  .main-menu__item {
    width: 100%;
  }
}
.main-menu__item.dropdown {
  position: relative;
}
@media (max-width: 992px) {
  .main-menu__item.dropdown {
    position: static;
  }
}
.main-menu__item.dropdown .main-menu__link {
  padding-right: 16px;
  position: relative;
}
.main-menu__item.dropdown .main-menu__link:after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background: url(../image/icon__arrow.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .main-menu__item.dropdown .main-menu__link:after {
    position: static;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
.main-menu__item.dropdown .submenu {
  position: absolute;
  top: 100%;
  left: -25%;
  right: -25%;
  z-index: 5;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}
@media (max-width: 992px) {
  .main-menu__item.dropdown .submenu {
    position: static;
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media (max-width: 992px) {
  .main-menu__item.dropdown .submenu-wrapper {
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    background: #f3f9ff;
    opacity: 1;
    border-radius: 0;
    position: absolute;
    padding: 30px 15px;
    z-index: 2;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    pointer-events: none;
  }
  .main-menu__item.dropdown .submenu-wrapper.open {
    opacity: 1;
    pointer-events: auto;
    overflow: auto;
  }
}
.main-menu__item.dropdown .submenu-wrapper .back {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-menu__item.dropdown .submenu-wrapper .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 28px;
    margin-bottom: 24px;
  }
}
.main-menu__item.dropdown .submenu-wrapper .back .icon {
  font-size: 0;
}
.main-menu__item.dropdown .submenu__item {
  list-style-type: none;
  position: relative;
}
.main-menu__item.dropdown .submenu__item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  background: #d7d7d7;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.main-menu__item.dropdown .submenu__item:hover:after {
  opacity: 0;
}
.main-menu__item.dropdown .submenu__item:not(:first-child) {
  margin-top: -1px;
}
.main-menu__item.dropdown .submenu__link {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  padding: 25px 16px;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.main-menu__item.dropdown .submenu__link:hover {
  background: #eff3f7;
  color: #235290;
}
.main-menu__item.dropdown:hover .submenu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.main-menu__item:hover .main-menu__link {
  color: #245290;
}
.main-menu__item.brands {
  display: none;
}
@media (max-width: 992px) {
  .main-menu__item.brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-menu__link {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  padding: 24px 0;
  display: block;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .main-menu__link {
    text-align: left;
    padding-left: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .search-block {
    margin-bottom: 15px;
  }
}
.search-block__form {
  position: relative;
  min-width: 317px;
}
@media (max-width: 1200px) {
  .search-block__form {
    min-width: 250px;
  }
}
.search-block__input {
  background: #f3f9ff;
  height: 55px;
  border-radius: 9px;
  color: #868686;
  font-size: 14px;
  padding-left: 22px;
  padding-right: 60px;
  font-family: var(--font);
  width: 100%;
}
.search-block__input::-webkit-input-placeholder {
  color: #868686;
}
.search-block__input::-moz-placeholder {
  color: #868686;
}
.search-block__input:-ms-input-placeholder {
  color: #868686;
}
.search-block__input::-ms-input-placeholder {
  color: #868686;
}
.search-block__input::placeholder {
  color: #868686;
}
@media (max-width: 992px) {
  .search-block__input {
    height: 49px;
    background: #fff;
  }
}
.search-block__btn {
  position: absolute;
  width: 49px;
  height: 49px;
  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;
  background: #ffffff;
  border-radius: 8px;
  border: 0;
  top: 3px;
  right: 3px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .search-block__btn {
    width: 25px;
    height: 25px;
    top: 12px;
    right: 13px;
    padding: 0;
  }
}

.btn {
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
  background: #ffffff;
  border-radius: 50px;
  padding: 20.5px 65px 20.5px 30px;
  display: inline-block;
  position: relative;
  min-width: 215px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  font-family: var(--font);
  cursor: pointer;
}
.btn > span:not(.arrow) {
  position: relative;
  height: 100%;
  display: block;
  z-index: 2;
  text-align: left;
}
.btn:before {
  content: "";
  display: block;
  background: linear-gradient(150deg, #51c5e8 0%, #7898c9 100%);
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  z-index: 1;
  border-radius: 49px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn .arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.btn .arrow:before {
  content: "";
  display: block;
  background: linear-gradient(150deg, #51c5e8 0%, #7898c9 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn .arrow svg {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #fff;
}
.btn:hover:before {
  opacity: 1;
}
.btn:hover .arrow {
  color: #235290;
}
.btn:hover .arrow:before {
  opacity: 0;
}
.btn-top {
  border: 1px solid #51c5e8;
  color: #51c5e8;
  text-transform: uppercase;
  font-weight: 600;
  padding: 17px 22px;
  border-radius: 500px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-top:hover {
  background: #51c5e8;
  color: #fff;
}
.btn-middle {
  height: 50px;
  min-width: unset;
  padding: 0 34px;
  border: 0;
}
.btn-middle:before {
  opacity: 1;
}
.btn-middle > span {
  color: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-border {
  border: 1px solid #769bcb;
}
.btn-border:before {
  opacity: 0;
}
.btn-border > span {
  color: #235290;
}
.btn-border:hover > span {
  color: #fff;
}
.btn-icon > span {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn.no-shadow {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
.btn.only-icon {
  width: 50px;
  padding: 0;
}
.btn.only-icon > span {
  color: #769bcb;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn.only-icon:hover > span {
  color: #fff;
}
.btn-bg {
  border: 1px solid transparent;
}
.btn-bg:before {
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.btn-bg:hover {
  border: 1px solid #769bcb;
}
.btn-bg:hover:before {
  opacity: 0;
}
.btn-bg:hover > span {
  color: #235290;
}

.social-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .social-list {
    display: none;
  }
}
@media (max-width: 992px) {
  .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.social-list__item {
  width: 25px;
  height: 25px;
  background: #51c5e8;
  border-radius: 50%;
  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;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.social-list__item:before {
  content: "";
  display: block;
  background: linear-gradient(150deg, #51c5e8 0%, #7898c9 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.social-list__item svg {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .social-list__item {
    width: 44px;
    height: 44px;
    padding: 8px;
  }
  .social-list__item svg {
    width: 100%;
    height: 100%;
  }
}
.social-list__item.wa svg, .social-list__item.li svg {
  margin-top: -2px;
  margin-right: -2px;
}
.social-list__item:hover:before {
  opacity: 0;
}

.phone-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid #000000;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .phone-block {
    border-right: 0;
    padding-right: 0;
  }
}
.phone-block a {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: block;
  position: relative;
  padding-left: 20px;
}
.phone-block a::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url(../image/icon__tel.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.right-block a {
  font-size: 0;
}
.right-block .cart-small {
  position: relative;
}
.right-block .cart-small .count {
  position: absolute;
  right: -6px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(150deg, #51c5e8 0%, #7898c9 100%);
  font-size: 12px;
  font-weight: 600;
  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;
}

h1,
.h1 {
  color: #000000;
  font-weight: 700;
  font-size: 64px;
  line-height: 66px;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  h1,
  .h1 {
    font-size: 46px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 32px;
  }
  h1 br,
  .h1 br {
    display: none;
  }
}

.text {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}
@media (max-width: 767px) {
  .text {
    font-size: 14px;
  }
}
.text p {
  margin: 0;
}
.text p:not(:last-child) {
  margin-bottom: 20px;
}

.main-banner {
  background: #f4f4f4;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  height: 615px;
}
@media (max-width: 767px) {
  .main-banner {
    padding-bottom: 42px;
    margin-bottom: 24px;
  }
}
.main-banner .bg {
  position: absolute;
  top: 0;
  /* right: 0; */
  bottom: 0;
  z-index: 2;
  height: 100%;
}
@media (max-width: 992px) {
  .main-banner .bg {
    height: 100%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .main-banner .bg {
    height: auto;
    right: 0;
    left: 0;
    top: 0;
    max-width: 100%;
  }
}
.main-banner .decor {
  position: absolute;
  top: 27px;
  right: 28%;
  z-index: 1;
}
@media (max-width: 992px) {
  .main-banner .decor {
    top: 25px;
    right: 12%;
    width: 271px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .main-banner .decor {
    top: 130px;
    left: 73px;
    right: auto;
  }
}
.main-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-banner .inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "left img" "bottom img";
}
@media (max-width: 767px) {
  .main-banner .container {
    display: block;
  }
  .main-banner .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
}
.main-banner .inner .left-block {
  grid-area: left;
  padding-top: 60px;
}
@media (max-width: 992px) {
  .main-banner .inner .left-block {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .main-banner .inner .left-block {
    padding-top: 26px;
    position: relative;
    z-index: 2;
  }
  .main-banner .inner .left-block .text {
    padding-right: 25px;
  }
}
.main-banner .inner .img-block {
  grid-area: img;
  padding-top: 100px;
}
@media (max-width: 992px) {
  .main-banner .inner .img-block {
    padding-top: 45px;
    padding-bottom: 45px;
    text-align: center;
  }
  .main-banner .inner .img-block img {
    height: 300px;
    width: auto;
  }
}
@media (max-width: 767px) {
  .main-banner .inner .img-block {
    padding-top: 0;
    padding-bottom: 0;
  }
  .main-banner .inner .img-block img {
    height: 286px;
    margin-top: -15px;
  }
}
.main-banner .inner .bottom-block {
  grid-area: bottom;
  margin-top: 30px;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .main-banner .inner .bottom-block {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: auto;
  }
}
.main-banner .inner .text-block {
  max-width: 500px;
}
.main-banner .inner .price-block {
  margin-top: 15px;
}
.main-banner .inner .price-block .old {
  font-size: 16px;
  font-weight: 700;
  color: #a7a7a7;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.main-banner .inner .price-block .new {
  font-size: 32px;
  color: #000000;
  font-weight: 700;
}

.swiper-button {
  width: 61px !important;
  height: 61px !important;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  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;
  margin-right: -53px;
}
@media (max-width: 1460px) {
  .swiper-button {
    margin-right: -20px;
  }
}
@media (max-width: 992px) {
  .swiper-button {
    width: 45px !important;
    height: 45px !important;
  }
}
.swiper-button svg {
  width: 10px !important;
}
.swiper-button:after {
  display: none;
}
.swiper-button.swiper-button-prev {
  margin-right: auto;
  margin-left: -53px;
}
@media (max-width: 1460px) {
  .swiper-button.swiper-button-prev {
    margin-left: -20px;
  }
}
.swiper-button.swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 13px;
}
@media (max-width: 767px) {
  .stars {
    margin-bottom: 8px;
  }
}
.stars span {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .stars span {
    width: 12px;
    height: 12px;
  }
}
.stars.stars1 span:nth-child(-n+1) {
  background-image: url(../image/icon__star-full.svg);
}
.stars.stars1.half span:nth-child(1) {
  background-image: url(../image/icon__star-half.svg);
}
.stars.stars2 span:nth-child(-n+2) {
  background-image: url(../image/icon__star-full.svg);
}
.stars.stars2.half span:nth-child(2) {
  background-image: url(../image/icon__star-half.svg);
}
.stars.stars3 span:nth-child(-n+3) {
  background-image: url(../image/icon__star-full.svg);
}
.stars.stars3.half span:nth-child(3) {
  background-image: url(../image/icon__star-half.svg);
}
.stars.stars4 span:nth-child(-n+4) {
  background-image: url(../image/icon__star-full.svg);
}
.stars.stars4.half span:nth-child(4) {
  background-image: url(../image/icon__star-half.svg);
}
.stars.stars5 span:nth-child(-n+5) {
  background-image: url(../image/icon__star-full.svg);
}
.stars.stars5.half span:nth-child(5) {
  background-image: url(../image/icon__star-half.svg);
}

.overlay {
  background: rgba(0, 0, 0, 0.35);
  position: fixed;
  inset: 0;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  z-index: 12;
  height: 544px;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 992px) {
  .megamenu {
    background: #f3f9ff;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    top: 0;
    height: 100%;
    border-radius: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    pointer-events: none;
  }
}
.megamenu.open {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  top: 100%;
}
@media (max-width: 992px) {
  .megamenu.open {
    top: 0;
    right: 0;
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
  }
}
.megamenu.show-sub {
  width: 100%;
}
.megamenu .back {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 992px) {
  .megamenu .back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 28px;
    margin-bottom: 24px;
  }
}
.megamenu .back .icon {
  font-size: 0;
}
.megamenu__left {
  width: 270px;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: inherit;
  padding-top: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 992px) {
  .megamenu__left {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 25px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: auto;
  }
}
.megamenu__left.open {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.megamenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.megamenu__item {
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  padding: 15px 30px;
  position: relative;
}
@media (max-width: 992px) {
  .megamenu__item {
    font-size: 15px;
    padding: 20px 28px;
  }
}
.megamenu__item:after {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  background: url(../image/icon__menu-dark.svg) no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 23px;
}
.megamenu__item:hover, .megamenu__item.active {
  background: #233e96;
  color: #fff;
}
.megamenu__item:hover:after, .megamenu__item.active:after {
  background-image: url(../image/icon__menu-white.svg);
}
.megamenu__middle {
  width: 100%;
}
.megamenu__middle-inner {
  display: none;
  height: 100%;
}
@media (max-width: 992px) {
  .megamenu__middle-inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    pointer-events: auto;
  }
  .megamenu__middle-inner.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    overflow: auto;
  }
}
.megamenu__middle-inner.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.megamenu__middle-inner .back {
  display: none;
}
@media (max-width: 992px) {
  .megamenu__middle-inner .back {
    padding-top: 25px;
    padding-left: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.megamenu__right {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 0;
  max-width: 292px;
  width: 100%;
}
@media (max-width: 1200px) {
  .megamenu__right {
    display: none;
  }
}
.megamenu__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: width 0.3s ease, opacity 0.3s ease;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.megamenu__info.show {
  width: 100%;
  opacity: 1;
}
@media (max-width: 992px) {
  .megamenu__info {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    overflow: visible;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
  }
}
.megamenu .all-brands {
  width: 240px;
  height: 240px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: uppercase;
  -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;
  padding-top: 30px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -141px;
}
.megamenu .all-brands:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #51c5e8 0%, #7898c9 100%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.megamenu .all-brands .icon {
  margin-bottom: 15px;
  font-size: 0;
}
.megamenu .all-brands:hover:before {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.megamenu .inner-submenu {
  width: 62%;
  background: #f4f4f4;
}
@media (max-width: 992px) {
  .megamenu .all-brands {
    display: none;
  }
  .megamenu .inner-submenu {
    width: 100%;
    background: #f3f9ff;
  }
}
.megamenu .inner-submenu .scroll-wrapper {
  height: 100%;
  overflow: hidden;
}
.megamenu .inner-submenu .grid-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: 30px 27px;
}
@media (max-width: 992px) {
  .megamenu .inner-submenu .grid-block {
    padding: 20px 15px;
  }
}
.megamenu .inner-submenu .grid-block .item {
  height: 173px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 24px;
  background-size: cover;
}
@media (max-width: 767px) {
  .megamenu .inner-submenu .grid-block .item {
    height: 139px;
    padding: 14px;
  }
}
.megamenu .inner-submenu .grid-block .item .name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .megamenu .inner-submenu .grid-block .item .name {
    font-size: 16px;
  }
}
.megamenu .brands-block {
  width: 38%;
}

.brands-block {
  padding: 30px 0 30px 27px;
}
@media (max-width: 992px) {
  .brands-block {
    display: none;
  }
}
.brands-block .name {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.brands-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-right: 27px;
}
.brands-block__list .item {
  border-radius: 7px;
  height: 60px;
  background: #f4f4f4;
  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;
}
.brands-block__list .item img {
  mix-blend-mode: multiply;
}
.brands-block .scroll-wrapper {
  height: calc(100% - 30px);
}
.brands-block .scrollbar-inner .scroll-element.scroll-y {
  right: 9px;
  top: 0;
  bottom: 0;
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element,
.scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

.scrollbar-inner .scroll-element.scroll-y {
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 9px;
  height: auto;
}
.scrollbar-inner .scroll-element.scroll-y .scroll-element_outer {
  height: 100%;
  border-radius: 0;
}
.scrollbar-inner .scroll-element.scroll-y .scroll-element_track {
  width: 5px;
  background: #d9d9d9;
  height: 100%;
  opacity: 1;
  border-radius: 0;
}
.scrollbar-inner .scroll-element.scroll-y .scroll-bar {
  width: 5px;
  background: #51c5e8;
  opacity: 1;
  border-radius: 0;
}

.to-top {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  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: fixed;
  bottom: 30px;
  right: 120px;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1460px) {
  .to-top {
    right: 25px;
    bottom: 25px;
  }
}
.to-top svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.to-top.fixed {
  position: absolute;
}

.breadcrumbs {
  border-top: 1px solid #cecece;
  padding-top: 32px;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .breadcrumbs {
    border-top: 0;
    padding-top: 15px;
    margin-bottom: 20px;
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
    white-space: nowrap;
    overflow: auto;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}
.breadcrumbs__item {
  text-transform: uppercase;
  font-size: 12px;
  color: #000000;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.breadcrumbs__item:not(:last-child):after {
  content: "|";
  padding: 0 5px;
  display: inline;
}
.breadcrumbs a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.breadcrumbs a:hover {
  color: #7898c9;
}

.text-center {
  text-align: center;
}

.swiper-slide {
  height: auto !important;
}

.alert {
  font-size: 14px;
}

.alert-danger {
  color: red;
}

/* Universal collapsible block */
.js-collapsible {
  --collapsed-height: 300px;
}

.js-collapsible .js-collapsible__content {
  max-height: var(--collapsed-height);
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.js-collapsible.is-expanded .js-collapsible__content {
  max-height: none;
}

/* Fade overlay when collapsed */
.js-collapsible.is-collapsed .js-collapsible__content:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 80%);
  pointer-events: none;
}

/* Toggle button */
.js-collapsible__toggle {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid #cecece;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #0f0f0f;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.js-collapsible__toggle:hover {
  background: #eef6ff;
  border-color: #bcd6ff;
}

.swiper-button-prev,
.swiper-button-next {
  user-select: none;
}

.product-item {
  max-width: 100%;
  border-radius: 18px;
  background: #f4f4f4;
  padding: 47px 22px 18px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .product-item {
    padding: 47px 12px 12px;
  }
}
.product-item .variant {
  position: absolute;
  top: 21px;
  left: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  .product-item .variant {
    top: 12px;
    left: 11px;
  }
}
.product-item .variant__item {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid #fff;
}
@media (max-width: 767px) {
  .product-item .variant__item {
    width: 17px;
    height: 17px;
  }
}
.product-item .sale {
  border-radius: 8px;
  background: #f79e1b;
  padding: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 16px;
}
@media (max-width: 767px) {
  .product-item .sale {
    top: 12px;
    right: 10px;
    font-size: 12px;
  }
}
.product-item .img {
  margin-bottom: 24px;
  display: block;
  text-align: center;
  aspect-ratio: 1/1;
  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;
}
@media (max-width: 1200px) {
  .product-item .img {
    height: 200px;
  }
}
@media (max-width: 992px) {
  .product-item .img {
    height: 140px;
  }
}
@media (max-width: 767px) {
  .product-item .img {
    margin-bottom: 20px;
  }
}
.product-item .img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.product-item .name {
  display: block;
  font-size: 16px;
  color: #000000;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
@media (max-width: 767px) {
  .product-item .name {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.product-item .bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: auto;
}
.product-item .bottom-info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 767px) {
  .product-item .bottom-info .price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2px;
  }
}
.product-item .bottom-info .price .old {
  font-size: 13px;
  font-weight: 700;
  color: #a7a7a7;
  text-decoration: line-through;
}
.product-item .bottom-info .price .new {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.product-item.countdown .sale {
  top: 63px;
}
.product-item:hover {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.hq-countdown {
  position: absolute;
  top: 0;
  right: 0;
  background: #172b85;
  border-radius: 0 18px 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 17px;
}
@media (max-width: 767px) {
  .hq-countdown {
    padding: 6px 10px;
  }
}
.hq-countdown .hq-number {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  width: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .hq-countdown .hq-number {
    font-size: 14px;
    width: 19px;
  }
}
.hq-countdown .hq-label {
  color: #ffffff;
  font-size: 10px;
  text-align: center;
}
.hq-countdown .hq-countdown-item:first-child > * {
  color: #f79e1b;
}
.hq-countdown .hq-countdown-item:not(:last-child) {
  padding-right: 17px;
  position: relative;
}
@media (max-width: 767px) {
  .hq-countdown .hq-countdown-item:not(:last-child) {
    padding-right: 10px;
  }
}
.hq-countdown .hq-countdown-item:not(:last-child):after {
  content: ":";
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  position: absolute;
  top: 6px;
  right: 6px;
}
@media (max-width: 767px) {
  .hq-countdown .hq-countdown-item:not(:last-child):after {
    right: 3px;
  }
}

.form-item {
  position: relative;
}
.form-item input {
  border: 1px solid transparent;
}
.form-item .input-error {
  border-color: #FF252B;
}
.form-item .error-block {
  font-size: 14px;
  font-weight: 500;
  color: #FF252B;
  position: absolute;
  bottom: -27px;
  line-height: 23px;
  left: 0;
}