@font-face {
  font-family: "Actay";
  src: url("/resources/fonts/Actay/Actay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Actay";
  src: url("/resources/fonts/Actay/Actay-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Actay Condensed";
  src: url("/resources/fonts/Actay/ActayCondensed-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Actay Condensed";
  src: url("/resources/fonts/Actay/ActayCondensed-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Actay Wide";
  src: url("/resources/fonts/Actay/ActayWide-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Actay Wide";
  src: url("/resources/fonts/Actay/ActayWide-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
html {
  font-size: 5.9523809524vw;
}
@media screen and (max-width: 719px) {
  html {
    font-size: 27.7777777778vw;
  }
}
@media screen and (min-width:720px) {
  html {
    font-size: 5.9523809524vw;
  }
}
@media screen and (min-width: 1680px) {
  html {
    font-size: 100px;
  }
}

body {
  font-size: 0.16rem;
  line-height: 1.5;
  font-family: "Actay", sans-serif;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.content-wrapper {
  max-width: 16.8rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 0.4rem;
}
@media screen and (max-width: 719px) {
  .content-wrapper {
    max-width: none;
    padding: 0 0.2rem;
    overflow-x: hidden;
  }
}

.cookies-warning {
  position: fixed;
  bottom: 0.2rem;
  left: 0.2rem;
  z-index: 1000;
  max-width: 3.6rem;
}
.cookies-warning__contetn {
  padding: 0.18rem 0.2rem;
  border-radius: 0.16rem;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.cookies-warning__text {
  font-family: "Actay", sans-serif;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #000;
}
.cookies-warning__close {
  position: absolute;
  top: -0.3rem;
  right: 0rem;
  cursor: pointer;
}
.cookies-warning__buttons {
  flex-shrink: 0;
}
.cookies-warning__buttons .button {
  border-radius: 0.12rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  font-family: "Actay", sans-serif;
  background: #da2d21;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cookies-warning__buttons .button:hover {
  opacity: 0.9;
}
@media screen and (max-width: 719px) {
  .cookies-warning {
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
    max-width: none;
  }
  .cookies-warning__contetn {
    flex-direction: column;
    align-items: flex-start;
  }
}

.static-page {
  padding: 0.4rem 0 0.8rem;
}
.static-page__title {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.24rem 0;
}
.static-page__content {
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  line-height: 1.5;
  color: #000;
}
.static-page__content p {
  margin: 0 0 0.2rem 0;
}
.static-page__content h2,
.static-page__content h3 {
  font-family: "Actay Wide", sans-serif;
  font-weight: 600;
  margin: 0.24rem 0 0.12rem 0;
}
.static-page__content ul,
.static-page__content ol {
  padding-left: 0.24rem;
  margin: 0 0 0.2rem 0;
}
.static-page__content li {
  margin-bottom: 0.08rem;
}
.static-page__children {
  margin-top: 0.3rem;
}
.static-page__children ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.static-page__children a {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.04rem;
  transition: border-color 0.2s ease;
}
.static-page__children a:hover {
  border-color: #da2d21;
}
@media screen and (max-width: 719px) {
  .static-page {
    padding: 0.24rem 0 0.5rem;
  }
  .static-page__title {
    font-size: 0.28rem;
  }
  .static-page__content {
    font-size: 0.16rem;
  }
  .static-page__children a {
    font-size: 0.16rem;
  }
}

.main-products__header {
  margin-top: 1rem;
  margin-bottom: 0.32rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 719px) {
  .main-products__header {
    margin-top: 0.6rem;
    margin-bottom: 0.15rem;
  }
}
.main-products__title {
  font-size: 0.4rem;
  font-weight: 400;
}
.main-products__arrow {
  margin-left: 20px;
}

.error-page {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error-page__code {
  font-size: 1.6rem;
  line-height: 1em;
}
.error-page__text {
  font-size: 0.24rem;
  font-weight: 400;
  text-align: center;
}
.error-page__title {
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.error-page__button {
  margin-top: 0.2rem;
}
@media screen and (max-width: calc(576px - 0.2px)) {
  .error-page__code {
    font-size: 1rem;
  }
  .error-page__text {
    font-size: 0.2rem;
  }
  .error-page__title {
    font-size: 0.4rem;
  }
  .error-page__button {
    margin-top: 0.1rem;
  }
}

.header {
  background-color: #fff;
  position: relative;
}
.header__inner {
  display: flex;
  align-items: center;
  padding: 0.4rem 0 0.2rem;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  width: 1.9rem;
  height: auto;
}
@media screen and (max-width: 719px) {
  .header__logo-img {
    width: 1.2rem;
  }
}
.header__menu {
  flex: 1;
  margin-left: 1rem;
}
@media screen and (max-width: 719px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  list-style: none;
  display: flex;
  gap: 0.32rem;
  margin: 0;
  padding: 0;
}
.header__menu ul li a,
.header__menu ul li span {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.header__phone {
  flex-shrink: 0;
  margin-right: 0.7rem;
}
@media screen and (max-width: 719px) {
  .header__phone {
    display: none;
  }
}
.header__phone a {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.24rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
.header__search-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: 0.34rem;
  text-decoration: none;
  margin-right: 0.24rem;
}
.header__search-icon {
  width: 0.26rem;
  height: 0.26rem;
}
.header__cart {
  flex-shrink: 0;
}
.header__cart .mini-cart {
  border-radius: 0.9rem;
  background: #da2d21;
  height: 0.46rem;
  padding: 0.11rem 0.28rem;
  color: #fff;
  font-family: Actay, sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__cart-btn {
  flex-shrink: 0;
}
@media screen and (max-width: 719px) {
  .header__cart-btn {
    display: none;
  }
}
.header__cart-link {
  border-radius: 0.9rem;
  background: #da2d21;
  height: 0.46rem;
  padding: 0.11rem 0.28rem;
  color: #fff !important;
  font-family: Actay, sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.header__cart-link:hover {
  color: #fff !important;
}
.header__cart-label, .header__cart-count {
  display: block;
}
.header__cart-divider {
  width: 0.01rem;
  height: 0.28rem;
  margin: 0 0.16rem;
  flex-shrink: 0;
  display: block;
}
.header__mobile-tools {
  display: none;
  align-items: center;
  gap: 0.16rem;
  margin-left: auto;
}
@media screen and (max-width: 719px) {
  .header__mobile-tools {
    display: flex;
  }
}
.header__mobile-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: 0.34rem;
  text-decoration: none;
}
.header__mobile-cart-icon {
  width: 0.28rem;
  height: 0.28rem;
}
.header__mobile-cart-badge {
  position: absolute;
  top: -0.06rem;
  right: -0.06rem;
  min-width: 0.18rem;
  height: 0.18rem;
  padding: 0 0.04rem;
  border-radius: 999px;
  background: #da2d21;
  color: #fff;
  font-family: Actay, sans-serif;
  font-size: 0.12rem;
  font-weight: 600;
  line-height: 0.18rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.header__burger-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.34rem;
  height: 0.34rem;
}
@media screen and (max-width: 719px) {
  .header__burger-btn {
    display: flex;
  }
}
.header__burger-icon {
  width: 0.28rem;
  height: 0.28rem;
}
@media screen and (max-width: 719px) {
  .header--menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #fff;
    z-index: 100;
  }
  .header--menu-open .content-wrapper {
    max-width: none;
    padding: 0.2rem;
    height: 100%;
  }
  .header--menu-open .header__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.24rem;
    padding: 0;
    height: 100%;
  }
  .header--menu-open .header__mobile-tools {
    position: fixed;
    top: 0.2rem;
    right: 0.2rem;
    z-index: 120;
  }
  .header--menu-open .header__menu {
    display: block;
    position: relative;
    flex: 1;
    overflow-y: auto;
    padding: 0.4rem 0 0.2rem;
  }
  .header--menu-open .header__menu ul {
    flex-direction: column;
    gap: 0.2rem;
  }
}

.footer {
  background-color: #fff;
  margin-top: 0.6rem;
}
.footer__inner {
  display: flex;
  gap: 0.76rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 719px) {
  .footer__inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.footer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.footer__logo {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 719px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__logo a {
  text-decoration: none;
  display: inline-block;
}
.footer__logo-img {
  width: 1.9rem;
  height: auto;
}
.footer__menu {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 719px) {
  .footer__menu {
    display: none;
  }
}
.footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu ul li {
  margin-bottom: 0.15rem;
}
.footer__menu ul li a,
.footer__menu ul li span {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.footer__menu ul li ul {
  margin-left: 0.2rem;
  margin-top: 0.1rem;
}
.footer__menu ul li ul li {
  margin-bottom: 0.08rem;
}
.footer__menu ul li ul li a {
  font-size: 0.18rem;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 719px) {
  .footer__divider {
    display: block;
  }
}
.footer__copyrights {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 719px) {
  .footer__copyrights {
    flex-direction: column;
    gap: 0.2rem;
  }
}
.footer__copyrights-text {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media screen and (max-width: 719px) {
  .footer__copyrights-text {
    order: 2;
    font-size: 0.16rem;
  }
}
.footer__copyrights-link {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 719px) {
  .footer__copyrights-link {
    order: 1;
    font-size: 0.16rem;
    text-decoration: none;
  }
}
.footer__copyrights-made {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media screen and (max-width: 719px) {
  .footer__copyrights-made {
    order: 3;
    font-size: 0.16rem;
  }
}
.footer__copyrights-made a {
  color: #4a90e2;
  text-decoration: none;
}
.footer__right {
  flex-shrink: 0;
  width: 6.5rem;
  height: 6.5rem;
}
@media screen and (max-width: 719px) {
  .footer__right {
    display: none;
  }
}
.footer__image {
  width: 6.5rem;
  object-fit: cover;
  border-radius: 0.2rem;
}

.main-banners {
  background-color: #fff;
}
.main-banners__inner {
  padding: 0.4rem 0 0;
}
@media screen and (max-width: 719px) {
  .main-banners__inner {
    padding: 0;
  }
}
.main-banners {
  margin-bottom: 0.76rem;
}
@media screen and (max-width: 719px) {
  .main-banners {
    margin-bottom: 0.36rem;
  }
}

.main-banner-wrapper {
  display: flex;
  gap: 0.3rem;
  align-items: stretch;
}
@media screen and (max-width: 719px) {
  .main-banner-wrapper {
    flex-direction: column;
    gap: 0.16rem;
  }
}

.main-slider-poster,
.main-slider-text {
  width: 50%;
  height: 7rem;
  margin: 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 719px) {
  .main-slider-poster,
  .main-slider-text {
    width: 100%;
    height: 3.12rem;
  }
}
.main-slider-poster .swiper-wrapper,
.main-slider-text .swiper-wrapper {
  display: flex;
}
.main-slider-poster .swiper-slide,
.main-slider-text .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.main-slider-poster .swiper-slide.swiper-slide-active,
.main-slider-text .swiper-slide.swiper-slide-active {
  opacity: 1;
}

@media screen and (max-width: 719px) {
  .main-slider-text {
    height: 2.2rem;
  }
}

.natural-power {
  margin-bottom: 0.76rem;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 719px) {
  .natural-power {
    margin-top: 0.6rem;
    margin-bottom: 0.16rem;
  }
}
.natural-power .content-wrapper {
  position: relative;
  z-index: 1;
}
.natural-power__image {
  position: absolute;
  top: -1.53rem;
  right: 0.2rem;
  width: 5.65rem;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 719px) {
  .natural-power__image {
    display: none;
  }
}
.natural-power__title {
  font-family: Actay, sans-serif;
  font-size: 0.52rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin: 0 0 0.4rem 0;
}
@media screen and (max-width: 719px) {
  .natural-power__title {
    font-size: 0.32rem;
    margin-bottom: 0.16rem;
  }
}
.natural-power__title-red {
  color: #da2d21;
  font-weight: 700;
}
.natural-power__description {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.31rem;
  max-width: 9.23rem;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 719px) {
  .natural-power__description {
    margin-bottom: 0.3rem;
  }
}
.natural-power__description p {
  margin: 0 0 0.2rem 0;
}
@media screen and (max-width: 719px) {
  .natural-power__description p {
    margin: 0 0 0.1rem 0;
  }
}
.natural-power__description p:last-child {
  margin-bottom: 0;
}
.natural-power__btn {
  display: inline-flex;
  padding: 0.1rem 0.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  border-radius: 0.08rem;
  border: 2px solid #da2d21;
  background: transparent;
  color: #da2d21;
  font-family: Actay, sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}
.natural-power__btn:hover {
  background: #da2d21;
  color: #fff;
}

.company-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: nowrap;
  gap: 0.4rem;
}
@media screen and (max-width: 719px) {
  .company-stats {
    margin-top: 0.4rem;
    flex-direction: column;
    gap: 0.18rem;
    margin-bottom: 0.4rem;
  }
}
.company-stats__item {
  display: flex;
  align-items: flex-end;
  flex: 1;
  min-width: 0;
}
.company-stats__value {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.22rem; /* 101.667% */
}
@media screen and (max-width: 719px) {
  .company-stats__value {
    font-size: 0.5rem;
    line-height: 0.6rem;
  }
}
.company-stats__text {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 0.16rem;
  padding-bottom: 0.16rem;
}
@media screen and (max-width: 719px) {
  .company-stats__text {
    margin-left: 0.18rem;
    padding-bottom: 0.06rem;
  }
}

.features {
  margin-bottom: 0.76rem;
}
@media screen and (max-width: 719px) {
  .features {
    margin-bottom: 0rem;
  }
}
.features__items {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
}
@media screen and (max-width: 719px) {
  .features__items {
    flex-direction: column;
    gap: 0.2rem;
  }
}
.features__item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  background: #f5f5f5;
  padding: 0.44rem 0.35rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 719px) {
  .features__item {
    padding: 0.24rem 0.2rem;
  }
}
.features__content {
  position: relative;
  z-index: 1;
}
.features__title {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.2rem 0;
}
@media screen and (max-width: 719px) {
  .features__title {
    font-size: 0.24rem;
    margin: 0 0 0.12rem 0;
  }
}
.features__description {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.31rem; /* 140.909% */
}
@media screen and (max-width: 719px) {
  .features__description {
    font-size: 0.16rem;
    line-height: 0.2rem;
  }
}
.features__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.features__item:nth-child(1) .features__img {
  bottom: -0.2rem;
}
.features__item:nth-child(3) .features__img {
  width: 3.94rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 719px) {
  .features__item:nth-child(3) .features__img {
    width: 3rem;
  }
}

.main-banner-poster {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.main-banner-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider-item {
  width: 100%;
  height: 100%;
  border-radius: 0.2rem;
  background: #da2d21;
  padding: 0.6rem;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 719px) {
  .main-slider-item {
    padding: 0.22rem;
  }
}
.main-slider-item__title {
  color: #fff;
  font-family: Actay, sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.78rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 719px) {
  .main-slider-item__title {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-bottom: 0.06rem;
  }
}
.main-slider-item__description {
  color: #fff;
  font-family: Actay, sans-serif;
  font-size: 0.32rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 719px) {
  .main-slider-item__description {
    font-size: 0.16rem;
    margin-bottom: 0;
  }
}
.main-slider-item__button {
  display: inline-flex;
  padding: 0.1rem 0.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  border-radius: 0.08rem;
  border: 2px solid #fff;
  color: #fff;
  font-family: Actay, sans-serif;
  font-size: 0.28rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  width: fit-content;
  margin-bottom: 0.3rem;
  transition: opacity 0.2s;
}
@media screen and (max-width: 719px) {
  .main-slider-item__button {
    font-size: 0.2rem;
    padding: 0.1rem 0.24rem;
    margin-top: auto;
    margin-bottom: 0;
  }
}
.main-slider-item__button:hover {
  opacity: 0.9;
}
.main-slider-item__controls {
  display: flex;
  gap: 0.12rem;
  margin-top: auto;
}
@media screen and (max-width: 719px) {
  .main-slider-item__controls {
    display: none;
  }
}
.main-slider-item__button-prev, .main-slider-item__button-next {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s;
}
.main-slider-item__button-prev:hover, .main-slider-item__button-next:hover {
  opacity: 0.7;
}
.main-slider-item__button-prev img, .main-slider-item__button-next img {
  width: 0.36rem;
  height: 0.36rem;
}

.main-intro {
  margin-bottom: 0.6rem;
}
.main-intro__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.main-intro__title {
  color: #da2d21;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 719px) {
  .main-intro__title {
    font-size: 0.32rem;
    margin: 0;
  }
}
.main-intro__subtitle {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 0.2rem 0;
}
@media screen and (max-width: 719px) {
  .main-intro__subtitle {
    font-size: 0.32rem;
  }
}
.main-intro__text {
  color: #000;
  font-family: Actay, sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.31rem;
  max-width: 10.56rem;
}
.main-intro__text p {
  margin: 0 0 0.1rem 0;
}
.main-intro__text p:last-child {
  margin-bottom: 0;
}

.main-catalog__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}
.main-catalog__item {
  width: calc((100% - 0.84rem) / 4);
  height: 2.48rem;
  border-radius: 0.2rem;
  background: #f5f5f5;
  padding: 0.35rem 0.3rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 719px) {
  .main-catalog__item {
    width: calc((100% - 0.2rem) / 2);
    height: 1.8rem;
    padding: 0.2rem 0.16rem;
  }
}
.main-catalog__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-catalog__item-title {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 719px) {
  .main-catalog__item-title {
    margin-top: 0;
  }
}

.promo-banners {
  margin-bottom: 0.76rem;
}
.promo-banners__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem;
}
@media screen and (max-width: 719px) {
  .promo-banners__items {
    grid-template-columns: 1fr;
  }
}
.promo-banners__item {
  display: block;
  position: relative;
  height: 3.2rem;
  border-radius: 0.2rem;
  background: #da2d21;
  overflow: hidden;
}
.promo-banners__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog {
  margin-top: 0.6rem;
}

.catalog-index {
  margin-top: 0.6rem;
}

.breadcrumbs {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Actay", sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.28rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.breadcrumbs li, .breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
}
.breadcrumbs li a, .breadcrumbs__item a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.breadcrumbs li:not(:last-child)::after, .breadcrumbs__item:not(:last-child)::after {
  content: " | ";
  color: rgba(0, 0, 0, 0.5);
  margin-left: 0.08rem;
}

.catalog.category .catalog-category__title {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.28rem;
}
.catalog.category .catalog-category__subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.16rem;
  margin-bottom: 0.4rem;
}
.catalog.category .catalog-category__subcategory {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.45rem;
  padding: 0 0.2rem;
  border-radius: 0.08rem;
  background: #f5f5f5;
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.2s;
}
.catalog.category .catalog-category__subcategory--active {
  background: #da2d21;
  color: #fff;
  font-family: "Actay", sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.catalog-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.26rem;
}
@media screen and (max-width: 719px) {
  .catalog-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.16rem;
  }
}

.catalog-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.2rem;
  background: #f5f5f5;
  padding: 0.2rem;
  overflow: hidden;
}
@media screen and (max-width: 719px) {
  .catalog-product-card {
    padding: 0.1rem;
  }
}
.catalog-product-card__image {
  display: block;
  width: calc(100% + 0.4rem);
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  margin: -0.2rem -0.2rem 0 -0.2rem;
}
.catalog-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__image {
    width: calc(100% + 0.2rem);
    margin: -0.1rem -0.1rem 0 -0.1rem;
  }
}
.catalog-product-card__discount {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  background: #e45f2b;
  color: #fff;
  padding: 0.05rem 0.1rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  font-weight: 600;
}
.catalog-product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 0.24rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.catalog-product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__price-row {
    margin-bottom: 0.1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.catalog-product-card__price {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.24rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0.22rem;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__price {
    font-size: 0.2rem;
  }
}
.catalog-product-card__status {
  font-family: "Actay", sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.22rem;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__status {
    font-size: 0.14rem;
  }
}
.catalog-product-card__status--available {
  color: #000;
}
.catalog-product-card__status--low {
  color: #da2d21;
}
.catalog-product-card__title {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.24rem;
  text-decoration: none;
  margin-bottom: 0.17rem;
  display: block;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__title {
    font-size: 0.16rem;
  }
}
.catalog-product-card__footer {
  margin-top: auto;
}
.catalog-product-card__out-of-stock {
  color: #76767a;
  font-size: 0.16rem;
  margin: 0;
}
.catalog-product-card__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.08rem;
  background: #da2d21;
  color: #fff;
  font-family: "Actay", sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__add-btn {
    font-size: 0.18rem;
    height: 0.36rem;
  }
}
.catalog-product-card__add-btn:hover {
  background: #b8241a;
}
.catalog-product-card__add-btn--hidden {
  display: none !important;
}
.catalog-product-card__cart-controls {
  display: flex;
  gap: 0.16rem;
  align-items: center;
}
.catalog-product-card__cart-controls--hidden {
  display: none !important;
}
.catalog-product-card__in-cart-btn {
  width: 50%;
  height: 0.5rem;
  border-radius: 0.08rem;
  background: #669bbc;
  color: #fff;
  font-family: "Actay", sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 719px) {
  .catalog-product-card__in-cart-btn {
    display: none;
  }
}
.catalog-product-card__quantificator {
  width: 50%;
}

.search-page {
  margin: 0.6rem auto 0.8rem;
}
@media screen and (max-width: 719px) {
  .search-page {
    margin: 0.32rem auto 0.48rem;
  }
}
.search-page .upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.28rem;
}
.search-page .upper h2 {
  margin: 0;
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 719px) {
  .search-page .upper h2 {
    font-size: 0.24rem;
  }
}
.search-page__form {
  margin-bottom: 0.3rem;
}
.search-page__input {
  background-image: url("/resources/img/search.svg");
  background-repeat: no-repeat;
  background-position: right 0.16rem center;
  background-size: 0.24rem;
  padding-right: 0.5rem;
  height: 0.56rem !important;
  border: none !important;
  outline: none !important;
  border-radius: 0.08rem;
  background-color: #f5f5f5;
  font-size: 0.2rem !important;
  font-family: "Actay", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #000;
  width: 100%;
}
.search-page__input::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
  font-family: "Actay", sans-serif;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}
.search-page__category-item, .search-page__product-item {
  min-width: 0;
}
.search-page__empty {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  margin: 0;
}

.search-category-card {
  min-width: 0;
  height: 100%;
  border-radius: 0.2rem;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.search-category-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.search-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
}
.search-category-card__content {
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 719px) {
  .search-category-card__content {
    padding: 0.12rem;
  }
}
.search-category-card__title {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.22rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.28rem;
  text-decoration: none;
  margin-bottom: 0.12rem;
}
@media screen and (max-width: 719px) {
  .search-category-card__title {
    font-size: 0.16rem;
    line-height: 0.2rem;
  }
}
.search-category-card__description {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Actay", sans-serif;
  font-size: 0.16rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.22rem;
  margin-bottom: 0.16rem;
}
@media screen and (max-width: 719px) {
  .search-category-card__description {
    font-size: 0.14rem;
    line-height: 0.18rem;
  }
}
.search-category-card__footer {
  margin-top: auto;
  padding-top: 0.1rem;
}
.search-category-card__button {
  width: 100%;
  min-height: 0.46rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.08rem;
  background: #da2d21;
  color: #fff;
  font-family: "Actay", sans-serif;
  font-size: 0.18rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  padding: 0.1rem 0.16rem;
}
@media screen and (max-width: 719px) {
  .search-category-card__button {
    min-height: 0.38rem;
    font-size: 0.14rem;
  }
}

.quantificator {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.quantificator a.button,
.quantificator button.button {
  background: none;
  outline: none;
  border: 0;
  width: 0.36rem;
  height: 0.36rem;
  display: inline-flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.08rem;
  transition: all 0.2s ease;
  font-size: 0.24rem;
  color: #da2d21;
  font-weight: 600;
  text-decoration: none;
}
.quantificator a.button img,
.quantificator button.button img {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
}
.quantificator a.button:hover,
.quantificator button.button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.quantificator a.button:active,
.quantificator button.button:active {
  transform: scale(0.95);
}
.quantificator input.quantity-input {
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  border-radius: 0.08rem;
  background-color: #fff;
  border: none;
  text-align: center;
  font-size: 0.16rem;
  font-weight: 500;
  -moz-appearance: textfield;
  appearance: textfield;
}
.quantificator input.quantity-input::-webkit-outer-spin-button, .quantificator input.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantificator input.quantity-input:focus {
  outline: none;
  background-color: #fff;
}

.product-page {
  padding-top: 0.7rem;
}
.product-page__breadcrumbs {
  margin-bottom: 0.3rem;
}
.product-page__content {
  display: flex;
  gap: 0.4rem;
  padding-bottom: 0.6rem;
}
.product-page__gallery {
  width: 7.35rem;
  flex-shrink: 0;
}
.product-page__info {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 719px) {
  .product-page__content {
    flex-direction: column;
    gap: 0.2rem;
  }
  .product-page__gallery {
    width: 100%;
    order: 1;
  }
  .product-page__info {
    width: 100%;
    order: 2;
  }
}

.product-gallery {
  display: flex;
  gap: 0.2rem;
}
.product-gallery--single .product-gallery__main {
  width: 100%;
}
.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 1.15rem;
  flex-shrink: 0;
}
.product-gallery__thumb {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.08rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-gallery__thumb:hover {
  border-color: #ddd;
}
.product-gallery__thumb.active {
  border-color: #da2d21;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__main {
  width: 6rem;
  position: relative;
  background: #fff;
  border-radius: 0.12rem;
  overflow: hidden;
  flex-shrink: 0;
}
.product-gallery__main-image {
  display: none;
  width: 100%;
}
.product-gallery__main-image.active {
  display: block;
}
.product-gallery__main-image a {
  display: block;
  cursor: zoom-in;
}
.product-gallery__main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-gallery__pagination {
  display: none;
}
@media screen and (max-width: 719px) {
  .product-gallery {
    flex-direction: column;
    gap: 0.16rem;
  }
  .product-gallery__thumbs {
    display: none;
  }
  .product-gallery__main {
    width: 100%;
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .product-gallery__main-image {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .product-gallery__main-image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .product-gallery__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.2rem;
  }
  .product-gallery__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.08rem;
    margin-top: 0.16rem;
  }
  .product-gallery__pagination-dot {
    width: 0.09rem;
    height: 0.09rem;
    border-radius: 50%;
    background: #e6e6e6;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .product-gallery__pagination-dot.active {
    width: 0.46rem;
    height: 0.09rem;
    border-radius: 0.3rem;
    background: #da2d21;
  }
}

.product-info {
  width: 6.55rem;
}
.product-info__meta {
  color: #0b2b50;
  font-family: "Actay", sans-serif;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.24rem;
}
.product-info__sku {
  color: #0b2b50;
}
.product-info__separator {
  color: #0b2b50;
}
.product-info__stock {
  color: #0b2b50;
}
.product-info__title {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.32rem;
}
.product-info__description {
  font-size: 0.24rem;
  line-height: 1.2;
  color: #000;
  margin-top: 0.4rem;
}
.product-info__description h3 {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.2rem;
  font-family: "Actay", sans-serif;
  font-size: 0.24rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-info__description p {
  margin-bottom: 0.3rem;
}
.product-info__out-of-stock {
  color: #76767a;
  font-size: 0.16rem;
  margin: 0;
}
.product-info__footer {
  margin-top: auto;
}
.product-info__actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.24rem;
}
.product-info__price .price {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 0.22rem;
}
.product-info .cart-controls {
  flex: 1;
  gap: 0.2rem;
  display: flex;
}
.product-info .cart-controls--hidden {
  display: none !important;
}
.product-info .cart-controls__buttons {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}
.product-info .add-to-cart-btn {
  border-radius: 0.08rem;
  background: #da2d21;
  color: #fff;
  padding: 0.1rem 0.24rem;
  height: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Actay", sans-serif;
  font-size: 0.18rem;
  font-weight: 400;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.product-info .add-to-cart-btn:hover {
  background: #b8241a;
}
.product-info .add-to-cart-btn:disabled {
  background: #669bbc;
  cursor: default;
}
.product-info .add-to-cart-btn--hidden {
  display: none !important;
}
.product-info .quantificator {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.product-info .quantificator button,
.product-info .quantificator a.button {
  width: 0.42rem;
  height: 0.42rem;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.24rem;
  color: #da2d21;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.08rem;
  transition: all 0.2s ease;
}
.product-info .quantificator button img,
.product-info .quantificator a.button img {
  width: 0.2rem;
  height: 0.2rem;
  display: block;
}
.product-info .quantificator button:hover,
.product-info .quantificator a.button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.product-info .quantificator input.quantity-input {
  width: 0.42rem;
  height: 0.42rem;
  background: #fff;
  border-radius: 0.08rem;
  border: none;
  text-align: center;
  font-size: 0.16rem;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product-info .quantificator input.quantity-input::-webkit-outer-spin-button, .product-info .quantificator input.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-info .quantificator input.quantity-input:focus {
  outline: none;
}
@media screen and (max-width: 719px) {
  .product-info {
    width: 100%;
  }
  .product-info__title {
    font-size: 0.26rem;
    margin-bottom: 0.28rem;
  }
  .product-info__description {
    font-size: 0.2rem;
    line-height: 0.24rem;
  }
  .product-info .cart-controls {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
  }
  .product-info .cart-controls__buttons {
    flex: 0 0 auto;
  }
  .product-info .add-to-cart-btn {
    width: 1.24rem;
    height: 0.38rem;
    font-size: 0.2rem;
  }
}

html {
  font-size: 5.9523809524vw;
}
@media screen and (max-width: 719px) {
  html {
    font-size: 25.641025641vw;
  }
}
@media screen and (min-width:720px) {
  html {
    font-size: 5.9523809524vw;
  }
}
@media screen and (min-width: 1680px) {
  html {
    font-size: 100px;
  }
}

.cart {
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 719px) {
  .cart {
    padding-bottom: 0;
  }
}
.cart__back-btn {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #000;
  font-size: 0.18rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.cart__back-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 719px) {
  .cart__back-btn {
    gap: 0.08rem;
    margin-bottom: 0.12rem;
    font-size: 0.14rem;
  }
}
.cart__back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.cart__back-icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 719px) {
  .cart__back-icon {
    width: 0.3rem;
    height: 0.3rem;
  }
  .cart__back-icon img {
    width: 100%;
    height: 100%;
  }
}
.cart__wrapper {
  display: flex;
  gap: 0.3rem;
  justify-content: space-between;
}
@media screen and (max-width: 719px) {
  .cart__wrapper {
    flex-direction: column;
    gap: 0.32rem;
  }
}
.cart__column--left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 719px) {
  .cart__column--left {
    gap: 0.32rem;
  }
}
@media screen and (max-width: 719px) {
  .cart__column--right {
    order: 3;
  }
}

.cart-block {
  background: #f5f5f5;
  border-radius: 0.2rem;
  padding: 0.4rem;
}
@media screen and (max-width: 719px) {
  .cart-block {
    width: calc(100% + 0.4rem);
    margin-left: -0.2rem;
    border-radius: 0.2rem;
    padding: 0.3rem 0.2rem;
  }
}
.cart-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 719px) {
  .cart-block__header {
    margin-bottom: 0;
  }
}
.cart-block__clear-btn {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
  color: #000;
  font-size: 0.16rem;
  padding-right: 0;
}
.cart-block__clear-btn:hover {
  opacity: 0.7;
}
.cart-block__clear-btn img {
  width: 0.4rem;
  height: 0.4rem;
}
.cart-block__clear-btn span {
  font-size: 0.16rem;
  font-weight: 400;
}
.cart-block--products {
  width: 10.05rem;
  min-height: 5.2rem;
}
@media screen and (max-width: 719px) {
  .cart-block--products {
    width: calc(100% + 0.4rem);
    margin-left: -0.2rem;
    min-height: auto;
    order: 1;
  }
}
.cart-block--recipient {
  width: 10.05rem;
  min-height: 4.81rem;
}
@media screen and (max-width: 719px) {
  .cart-block--recipient {
    width: calc(100% + 0.4rem);
    margin-left: -0.2rem;
    min-height: auto;
    order: 2;
  }
}
.cart-block--payment {
  width: 5.2rem;
  padding: 0.4rem;
  border-radius: 0.2rem;
  border-radius: 20px;
  background: linear-gradient(333deg, #e7412a 14.29%, #cc2116 94.21%);
}
@media screen and (max-width: 719px) {
  .cart-block--payment {
    width: 100%;
    padding: 0.3rem 0.2rem;
    order: 3;
    border-radius: 0.2rem;
    margin: 0;
    margin-bottom: 0.2rem;
  }
}
.cart-block__title {
  color: #000;
  font-family: "Tilda Sans", sans-serif;
  font-size: 0.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
.cart-block--payment .cart-block__title {
  color: #fff;
}
.cart-block--recipient .cart-block__title {
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 719px) {
  .cart-block__title {
    color: #000;
    font-family: "Tilda Sans", sans-serif;
    font-size: 0.26rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
}
.cart-products__item {
  margin-bottom: 0.2rem;
}
.cart-products__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 719px) {
  .cart-products__item {
    margin-bottom: 0.32rem;
  }
  .cart-products__item:last-child {
    margin-bottom: 0;
  }
}

.cart-product {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
  gap: 0.2rem;
}
@media screen and (max-width: 719px) {
  .cart-product {
    align-items: flex-start;
    gap: 0.16rem;
    margin-bottom: 0;
  }
}
.cart-product__content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.32rem;
}
@media screen and (max-width: 719px) {
  .cart-product__content {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 0;
    margin-left: 0.16rem;
    position: relative;
    padding-right: 0.4rem;
  }
}
.cart-product__buttons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
@media screen and (max-width: 719px) {
  .cart-product__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.16rem;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    justify-content: space-between;
  }
}
.cart-product__image {
  width: 1rem;
  height: 1rem;
  object-fit: cover;
  border-radius: 0.08rem;
  flex-shrink: 0;
}
@media screen and (max-width: 719px) {
  .cart-product__image {
    width: 0.74rem;
    height: 0.74rem;
    aspect-ratio: 1/1;
    border-radius: 0.08rem;
  }
}
.cart-product__info {
  flex: 1;
}
@media screen and (max-width: 719px) {
  .cart-product__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 0;
    margin-bottom: 0.16rem;
    width: 100%;
  }
}
.cart-product__name {
  color: #000;
  font-family: "Tilda Sans", sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.22rem;
}
@media screen and (max-width: 719px) {
  .cart-product__name {
    color: #000;
    font-family: "Tilda Sans", sans-serif;
    font-size: 0.18rem;
    font-style: normal;
    font-weight: 500;
    line-height: 0.22rem;
    flex: 1;
  }
}
.cart-product__price {
  color: #000;
  font-size: 0.24rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 719px) {
  .cart-product__price {
    margin-left: auto;
  }
}
.cart-product__quantificator .quantificator {
  min-width: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 719px) {
  .cart-product__quantificator .quantificator {
    min-width: auto;
    gap: 0.17rem;
  }
}
.cart-product__quantificator .quantificator .button {
  width: 0.44rem;
  height: 0.44rem;
  background: none !important;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.08rem;
  transition: all 0.2s ease;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.cart-product__quantificator .quantificator .button img {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
}
.cart-product__quantificator .quantificator .button:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.cart-product__quantificator .quantificator .button:focus {
  background: none !important;
  outline: none;
}
.cart-product__quantificator .quantificator .button:active {
  transform: scale(0.95);
}
@media screen and (max-width: 719px) {
  .cart-product__quantificator .quantificator .button {
    width: 0.15429rem;
    height: 0.15429rem;
  }
}
.cart-product__quantificator .quantificator input.quantity-input {
  width: 0.44rem;
  height: 0.44rem;
  background: #fff;
  border-radius: 0.08rem;
  text-align: center;
  font-size: 0.16rem;
  padding: 0;
  margin: 0 0.04rem;
}
.cart-product__quantificator .quantificator input.quantity-input:focus {
  outline: none;
  border-color: #1e88e5;
}
@media screen and (max-width: 719px) {
  .cart-product__quantificator .quantificator input.quantity-input {
    width: 0.36rem;
    height: 0.36rem;
    margin: 0;
  }
}
.cart-product__delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  background: transparent;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.cart-product__delete-button:hover {
  opacity: 0.7;
}
.cart-product__delete-button img {
  width: 0.4rem;
  height: 0.4rem;
}
@media screen and (max-width: 719px) {
  .cart-product__delete-button {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.recipient-form__description {
  color: #000;
  font-family: "Tilda Sans", sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.22rem;
  margin: 0 0 0.28rem 0;
}
.recipient-form__group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 719px) {
  .recipient-form__group {
    flex-direction: column;
    gap: 0.24rem;
  }
}
.recipient-form__input {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: calc(50% - 0.1rem);
}
@media screen and (max-width: 719px) {
  .recipient-form__input {
    width: 100%;
    min-width: 100%;
    flex: none;
  }
}
.recipient-form__input input[type=text],
.recipient-form__input input[type=email] {
  padding: 0 0.2rem;
  border: none;
  border-radius: 0.08rem;
  background: #fff;
  height: 0.56rem;
  font-size: 0.16rem;
}
.recipient-form__input input[type=text]:focus,
.recipient-form__input input[type=email]:focus {
  outline: none;
}
.recipient-form__input .form-notify {
  display: none;
  margin-top: 0.08rem;
  font-size: 0.14rem;
  color: #da2d21;
}
.recipient-form__input.error .form-notify {
  display: block;
}
.recipient-form__label {
  color: #000;
  font-family: "Tilda Sans", sans-serif;
  font-size: 0.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.16rem;
}
.recipient-form__select {
  padding: 0 0.4rem 0 0.2rem;
  border: none;
  border-radius: 0.08rem;
  height: 0.56rem;
  font-size: 0.16rem;
  background: #fff url("/resources/img/caretDown.svg") no-repeat right 0.15rem center;
  background-size: 0.3rem 0.3rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.recipient-form__select:focus {
  outline: none;
}
@media screen and (max-width: 719px) {
  .recipient-form__select {
    width: 100%;
  }
}
.recipient-form__remember {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}
.recipient-form__remember.input input[type=checkbox] {
  display: block !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border-radius: 0.08rem !important;
  background: #fff !important;
  width: 0.42rem !important;
  height: 0.42rem !important;
  min-width: 0.42rem !important;
  min-height: 0.42rem !important;
  max-width: 0.42rem !important;
  max-height: 0.42rem !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: background 0.2s ease !important;
  border: none !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.recipient-form__remember.input input[type=checkbox]::before {
  display: none !important;
}
.recipient-form__remember.input input[type=checkbox]:checked {
  background: #fff !important;
}
.recipient-form__remember.input input[type=checkbox]:checked::before {
  display: none !important;
}
.recipient-form__remember.input input[type=checkbox]:checked::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
  width: 0.08rem !important;
  height: 0.16rem !important;
  border: solid #000 !important;
  border-width: 0 0.02rem 0.02rem 0 !important;
}
.recipient-form__remember.input input[type=checkbox]:hover {
  background: #e8e8ea !important;
}
.recipient-form__remember.input input[type=checkbox]:focus {
  outline: none !important;
  box-shadow: none !important;
}
.recipient-form__remember.input input[type=checkbox] + label {
  color: #000 !important;
  font-family: "Tilda Sans", sans-serif !important;
  font-size: 0.2rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  cursor: pointer !important;
  margin-bottom: 0 !important;
  column-gap: 0.24rem !important;
}
.recipient-form__remember.input input[type=checkbox] + label::before {
  display: none !important;
  content: none !important;
}
.recipient-form__remember.input input[type=checkbox]:checked + label {
  font-weight: 400 !important;
}
.recipient-form__remember.input input[type=checkbox]:checked + label::before {
  display: none !important;
  content: none !important;
}

.payment-summary {
  color: #fff;
}
.payment-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.34rem;
}
.payment-summary__title {
  color: #fff;
  font-size: 0.4rem;
  font-weight: 400;
  margin: 0;
}
.payment-summary__total-price {
  font-size: 0.35rem;
  font-weight: 600;
}
.payment-summary__details {
  margin-bottom: 0.3rem;
}
.payment-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.1rem;
  margin-bottom: 0.15rem;
  position: relative;
}
.payment-summary__row:last-child {
  margin-bottom: 0;
}
.payment-summary__row--last {
  margin-bottom: 0;
}
.payment-summary__row::before {
  content: "";
  flex-grow: 1;
  order: 2;
  height: 0.01rem;
  background-image: repeating-linear-gradient(to right, #fff 0, #fff 5px, transparent 5px, transparent 10px);
  margin: 0 0.08rem;
  align-self: flex-end;
  margin-bottom: 0.04rem;
}
.payment-summary__label {
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  order: 1;
}
.payment-summary__value {
  font-size: 0.18rem;
  font-weight: 600;
  flex-shrink: 0;
  order: 3;
  line-height: 1;
}
.payment-summary__value--discount {
  color: #ffeb3b;
}
.payment-summary__value--small {
  font-size: 0.14rem;
  font-weight: 400;
}
.payment-summary__agreement {
  margin: 0.3rem 0;
}
.payment-summary__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.payment-summary__checkbox input[type=checkbox] {
  width: 0.36rem;
  height: 0.36rem;
  margin-top: 0;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0.04rem;
  background: #fff;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.payment-summary__checkbox label {
  font-size: 0.16rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  flex: 1;
  min-width: 0;
}
.payment-summary__checkbox .form-notify {
  display: none;
  margin-top: 0.08rem;
  font-size: 0.14rem;
  color: #ff6b6b;
  width: 100%;
  margin-left: 0.3rem;
}
.payment-summary__checkbox.error .form-notify {
  display: block;
}
.payment-summary__checkbox.error label {
  color: #ff6b6b;
}
.payment-summary__button {
  width: 100%;
  padding: 0.18rem 0.4rem;
  background: #fff;
  color: #000;
  font-size: 0.26rem;
  font-weight: 400;
  border: none;
  border-radius: 0.12rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-summary__button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.payment-summary__button:active {
  transform: translateY(0);
}

.contacts-page {
  width: 100%;
  padding: 0.4rem 0 0.8rem;
}
@media screen and (max-width: 719px) {
  .contacts-page {
    padding: 0.2rem 0 0.4rem;
  }
}
.contacts-page > .contacts-page {
  display: flex;
  gap: 0.6rem;
  width: 100%;
}
@media screen and (max-width: 719px) {
  .contacts-page > .contacts-page {
    flex-direction: column;
    gap: 0.24rem;
  }
}
.contacts-page__inner {
  flex: 0 1 auto;
  max-width: 5.2rem;
  display: flex;
  flex-direction: column;
}
.contacts-page__title {
  color: #000;
  font-family: "Actay Wide", sans-serif;
  font-size: 0.42rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.24rem 0;
}
@media screen and (max-width: 719px) {
  .contacts-page__title {
    font-size: 0.28rem;
    margin-bottom: 0.16rem;
  }
}
.contacts-page__content {
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.16rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.contacts-page__content p {
  margin: 0 0 0.12rem 0;
}
.contacts-page__content p:last-child {
  margin-bottom: 0;
}
.contacts-page__info {
  display: block;
  color: #000;
  font-family: "Actay", sans-serif;
  font-size: 0.16rem;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}
.contacts-page__info a {
  color: inherit;
  text-decoration: none;
}
.contacts-page__socials {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}
.contacts-page__social-link {
  width: 0.48rem;
  height: 0.48rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contacts-page__social-link img {
  width: 100%;
  height: 100%;
}
.contacts-page__map {
  flex: 1 1 auto;
  width: 100%;
  height: 6rem;
  min-height: 6rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
@media screen and (max-width: 719px) {
  .contacts-page__map {
    min-height: 3.2rem;
    height: 3.2rem;
  }
}
