
html {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--on-background-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
  --scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

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

body {
  margin: 0;
  outline: none;
  margin: 0;
}

main {
  overflow-x: hidden;
}

section {
  position: relative;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

button {
  background-color: unset;
  padding: unset;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

input {
  border: none;
  padding: unset;
  outline: none;
}

form {
  margin-bottom: 0;
}

button,
input,
select,
label,
textarea {
  display: block;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  resize: none;
}

button::-moz-placeholder {
  font-family: inherit;
}

button::placeholder {
  font-family: inherit;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: var(--transition-color);
}

p a,
li a,
article a,
span a {
  display: inline;
}

mark {
  background: transparent;
}

ul li::marker {
  color: var(--primary-color);
  font-size: 20px;
}

ol {
  counter-reset: item;
}

ol li {
  display: block;
}

ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}

ol li:has(h2):before {
  font-size: 24px;
  line-height: 32px;
}

/* LazyLoad */

img {
  opacity: 0;
}

img:not(.initial) {
  transition: opacity 1s;
}

img.initial,
img.loaded,
img.error,
img.emoji {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

p {
  margin: 0;
}

:root {
  --primary-color: #85BCFF;
  --primary-hover-color: #8E58E4;
  --on-primary-color: #fff;
  --background-color: #070707;
  --on-background-color: #fff;
  --surface-color: #242424;
  --on-surface-color: #FFFFFFCC;
  --outline-color: #D9D9D9;
  --outline-variant-color: #EFEFEF;
  --success-color: #50AD40;
  --error-color: #EB1E1B;
  --transition: .3s;
  --transition-color: color .3s ease-in-out;
  --transition-margin-bottom: margin-bottom .3s ease-in-out;
  --transition-border-color: border-color .3s ease-in-out;
  --transition-opacity: opacity .3s ease-in-out;
  --transition-shadow: box-shadow .3s ease-in-out;
  --transition-max-height: max-height .5s linear;
  --transition-transform: transform .3s ease-in-out;
  --transition-background-color: background-color .3s ease-in-out;
  --transition-background-image: background-image .3s ease-in-out;
}

.container {
  max-width: 1440px;
  padding: 0px 40px;
  margin: 0 auto;
}

.slider__controls {
  display: flex;
  gap: 16px;
}

.slider__prev,
.slider__next {
  width: 56px;
  height: 56px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: var(--transition-opacity);
}

.slider__prev.swiper-button-disabled,
.slider__next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.slider__prev svg,
.slider__next svg {
  width: 100%;
  height: 100%;
}

.slider__prev.disabled,
.slider__next.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

.cookie {
  display: none;
  position: fixed;
  left: 40px;
  bottom: 40px;
  z-index: 10;
}

.cookie--visible {
  display: block;
}

.cookie__wrapper {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  max-width: 700px;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.7490196078);
}

.cookie__imagebox {
  width: 136px;
  min-width: 136px;
  height: 136px;
}

.cookie__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cookie__text {
  margin-bottom: 16px;
}

.cookie__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie__btn {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.cookie__btn:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.cookie__btn span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.cookie__btn {
  width: 177px;
  height: 48px;
}

.cookie__link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.loader {
  width: 139px;
  height: 139px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}

.loader--small {
  width: 78px;
  height: 78px;
}

.loader img {
  animation: rotate 10s linear infinite;
  transition: transform 0.3s ease-in;
}

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

.has-loader {
  position: relative;
}

.has-loader:has(img.lazy.loaded) .loader,
.has-loader:has(img.placeholder) .loader {
  display: none;
}

.shop-regions-ip-analyzer,
.shop-regions-confirm-window {
  display: none;
}

.header__city .shop-regions-ip-analyzer {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__city .shop-regions-ip-analyzer.shop-regions-ip-analyzer_hide {
  display: none;
}

.header__city .shop-regions-ip-analyzer__wrapper {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 24px;
  width: 493px;
}

.header__city .shop-regions-ip-analyzer__header {
  color: #fff;
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 16px;
}

.header__city .shop-regions-ip-analyzer__triggers {
  padding: 0 12px;
  display: flex;
}

.header__city .shop-regions-ip-analyzer__button {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.header__city .shop-regions-ip-analyzer__button:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.header__city .shop-regions-ip-analyzer__button span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.header__city .shop-regions-ip-analyzer__button {
  color: #fff;
  border: 2px solid #8E58E4;
  width: 133px;
  min-width: 133px;
  font-size: 16px;
  line-height: 24px;
}

.header__city .shop-regions-ip-analyzer__button:hover {
  border-color: #7483F1;
}

.header__city .shop-regions-ip-analyzer__trigger-select-city {
  background-color: var(--surface-color);
  width: 100%;
  font-weight: 600;
}

.header__city .shop-regions-ip-analyzer__trigger-select-city:hover {
  background-color: var(--surface-color);
}

.header__city .shop-regions__button-close {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27white%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cg clip-path=%27url%28%23clip0_535_93311%29%27%3E%3Cpath d=%27M11 19.9831C11.3414 20.3244 11.6741 20.6569 12.0088 20.9915C13.3339 19.667 14.6629 18.3385 15.9902 17.0122C17.3243 18.3458 18.6543 19.6752 19.9797 21C20.3256 20.6545 20.6583 20.322 20.9942 19.9862C19.6716 18.6641 18.3413 17.3347 17.0123 16.0062C18.3489 14.6702 19.6776 13.342 21 12.0202C20.6592 11.6795 20.3272 11.3476 19.9945 11.0151C18.6752 12.3339 17.3452 13.6633 16.0129 14.9951C14.6726 13.6554 13.3421 12.3254 12.0161 11C11.6765 11.3395 11.3438 11.6716 11.0079 12.0072C12.3321 13.3308 13.6623 14.6605 14.9938 15.9911C13.6563 17.328 12.3257 18.658 11 19.9831Z%27 fill=%27%23070707%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_535_93311%27%3E%3Crect width=%2710%27 height=%2710%27 fill=%27white%27 transform=%27matrix%28-1 0 0 1 21 11%29%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  right: -8px;
  top: -8px;
  transition: background-image 0.3s;
}

.header__city .shop-regions__button-close:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%23C39DFF%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%2357CAF3%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%2385BCFF%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cg clip-path=%27url%28%23clip0_535_92952%29%27%3E%3Cpath d=%27M11 19.9831C11.3414 20.3244 11.6741 20.6569 12.0088 20.9915C13.3339 19.667 14.6629 18.3385 15.9902 17.0122C17.3243 18.3458 18.6543 19.6752 19.9797 21C20.3256 20.6545 20.6583 20.322 20.9942 19.9862C19.6716 18.6641 18.3413 17.3347 17.0123 16.0062C18.3489 14.6702 19.6776 13.342 21 12.0202C20.6592 11.6795 20.3272 11.3476 19.9945 11.0151C18.6752 12.3339 17.3452 13.6633 16.0129 14.9951C14.6726 13.6554 13.3421 12.3254 12.0161 11C11.6765 11.3395 11.3438 11.6716 11.0079 12.0072C12.3321 13.3308 13.6623 14.6605 14.9938 15.9911C13.6563 17.328 12.3257 18.658 11 19.9831Z%27 fill=%27%23070707%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_535_92952%27%3E%3Crect width=%2710%27 height=%2710%27 fill=%27white%27 transform=%27matrix%28-1 0 0 1 21 11%29%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.header__city .shop-regions-confirm-window {
  display: none;
  background-color: var(--surface-color);
  padding: 24px;
  border-radius: 24px;
  z-index: 11;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.7490196078);
}

.header__city .shop-regions-confirm-window__text {
  font-weight: 600;
  margin-bottom: 16px;
}

.header__city .shop-regions-confirm-window__close-btn {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27white%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cg clip-path=%27url%28%23clip0_535_93311%29%27%3E%3Cpath d=%27M11 19.9831C11.3414 20.3244 11.6741 20.6569 12.0088 20.9915C13.3339 19.667 14.6629 18.3385 15.9902 17.0122C17.3243 18.3458 18.6543 19.6752 19.9797 21C20.3256 20.6545 20.6583 20.322 20.9942 19.9862C19.6716 18.6641 18.3413 17.3347 17.0123 16.0062C18.3489 14.6702 19.6776 13.342 21 12.0202C20.6592 11.6795 20.3272 11.3476 19.9945 11.0151C18.6752 12.3339 17.3452 13.6633 16.0129 14.9951C14.6726 13.6554 13.3421 12.3254 12.0161 11C11.6765 11.3395 11.3438 11.6716 11.0079 12.0072C12.3321 13.3308 13.6623 14.6605 14.9938 15.9911C13.6563 17.328 12.3257 18.658 11 19.9831Z%27 fill=%27%23070707%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_535_93311%27%3E%3Crect width=%2710%27 height=%2710%27 fill=%27white%27 transform=%27matrix%28-1 0 0 1 21 11%29%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  right: -8px;
  top: -8px;
  transition: background-image 0.3s;
  opacity: 1;
}

.header__city .shop-regions-confirm-window__close-btn:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%23C39DFF%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%2357CAF3%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 fill=%27%2385BCFF%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2730%27 height=%2730%27 rx=%2715%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cg clip-path=%27url%28%23clip0_535_92952%29%27%3E%3Cpath d=%27M11 19.9831C11.3414 20.3244 11.6741 20.6569 12.0088 20.9915C13.3339 19.667 14.6629 18.3385 15.9902 17.0122C17.3243 18.3458 18.6543 19.6752 19.9797 21C20.3256 20.6545 20.6583 20.322 20.9942 19.9862C19.6716 18.6641 18.3413 17.3347 17.0123 16.0062C18.3489 14.6702 19.6776 13.342 21 12.0202C20.6592 11.6795 20.3272 11.3476 19.9945 11.0151C18.6752 12.3339 17.3452 13.6633 16.0129 14.9951C14.6726 13.6554 13.3421 12.3254 12.0161 11C11.6765 11.3395 11.3438 11.6716 11.0079 12.0072C12.3321 13.3308 13.6623 14.6605 14.9938 15.9911C13.6563 17.328 12.3257 18.658 11 19.9831Z%27 fill=%27%23070707%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_535_92952%27%3E%3Crect width=%2710%27 height=%2710%27 fill=%27white%27 transform=%27matrix%28-1 0 0 1 21 11%29%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.header__city .shop-regions-confirm-window__btns-wrapper {
  padding: 0 12px;
  display: flex;
}

.header__city .shop-regions-confirm-window__confirm-btn {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.header__city .shop-regions-confirm-window__confirm-btn:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.header__city .shop-regions-confirm-window__confirm-btn span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.header__city .shop-regions-confirm-window__confirm-btn {
  color: #fff;
  border: 2px solid #8E58E4;
  font-size: 16px;
  line-height: 24px;
  width: 75px;
  min-width: 75px;
}

.header__city .shop-regions-confirm-window__confirm-btn:hover {
  border-color: #7483F1;
}

.header__city .shop-regions-confirm-window__choose-another-btn {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.header__city .shop-regions-confirm-window__choose-another-btn:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.header__city .shop-regions-confirm-window__choose-another-btn span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.header__city .shop-regions-confirm-window__choose-another-btn {
  color: #fff;
  border: 2px solid #8E58E4;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--surface-color);
  font-weight: 600;
  width: 100%;
}

.header__city .shop-regions-confirm-window__choose-another-btn:hover {
  background-color: var(--surface-color);
}

.header--mobile {
  background-color: var(--surface-color);
}

.header--mobile .header__container {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__top {
  background-color: var(--surface-color);
  font-size: 14px;
  line-height: 21px;
}

.header__top .header__container {
  height: 40px;
  display: flex;
  align-items: center;
}

.header__city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 16px;
}

.header__city .shop-regions-button .shop-regions__link,
.header__city .shop-regions-action-link {
  border: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: var(--on-surface-color);
  margin-left: clamp(24px, -681px + 58.75vw, 165px);
}

.header__account {
  margin-left: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.header__account:hover {
  opacity: 1;
}

.header__account:hover .header__dropdown {
  opacity: 1;
  pointer-events: all;
}

.header__account a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--primary-color);
  padding: 16px;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  width: -moz-max-content;
  width: max-content;
}

.header__dropdown::before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  top: -8px;
  right: 0;
}

.header__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-size: contain;
}

.header__middle .header__container {
  height: 80px;
  display: flex;
  align-items: center;
}

.header__logo {
  margin-right: 40px;
  width: clamp(160px, -265px + 35.4166666667vw, 245px);
  display: flex;
}

.header__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--surface-color);
  border-radius: 24px;
  background-color: var(--surface-color);
  flex: 1;
  transition: border-color 0.3s ease-in-out;
}

.header__search:has(input:focus), .header__search:has(.search__card.active) {
  border-color: var(--primary-color);
}

.header__search .search__wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}

.header__search button {
  display: flex;
}

.header__search input {
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
}

.search__card {
  position: absolute;
  top: calc(100% + 20px);
  left: -16px;
  width: calc(100% + 32px);
  z-index: 10;
}

.search__card .search__block {
  background-color: var(--surface-color);
  border-radius: 24px;
  border: 1px solid var(--primary-color);
  padding: 8px 0;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
}

.search__card .search__item {
  padding: 8px 16px;
  display: flex;
  position: relative;
}

.search__card .search__item:hover .search__name {
  color: var(--primary-color);
}

.search__card .search__imgbox {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  margin-right: 24px;
}

.search__card .search__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  visibility: visible;
}

.search__card .search__name {
  margin-bottom: 8px;
  transition: color 0.3s ease-in-out;
}

.search__card .search__price {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.search__card .search__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.search__card .search__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  position: relative;
}

.search__card .search__bottom::before {
  content: "";
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  width: calc(100% - 32px);
  position: absolute;
  top: -4px;
  left: 16px;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 40px;
}

.header__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--on-surface-color);
  position: relative;
}

.header__button .icon__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
}

.header__button .icon__wrapper::after {
  content: "";
  background: rgba(89, 128, 255, 0.6980392157);
  position: absolute;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  bottom: -10px;
  right: -10px;
  filter: blur(12px);
  opacity: 0;
  transition: var(--transition-opacity);
}

.header__button:hover color {
  color: var(--primary-color);
}

.header__button:hover .icon__wrapper::after {
  opacity: 1;
}

.header__button .count {
  opacity: 0;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #070707;
  background: var(--primary-color);
  color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 16px;
  top: 4px;
  right: -2px;
  border-radius: 50%;
  transition: var(--transition-opacity);
}

.header__button .count.active {
  opacity: 1;
}

.header__bottom {
  background-color: var(--surface-color);
}

.header__bottom .header__container {
  height: 61px;
  display: flex;
  align-items: center;
}

.header__catalog {
  position: relative;
  z-index: 10;
}

.header__catalog.active .catalog__trigger {
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  background-color: #7483F1;
}

.header__catalog.active .catalog__list {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.catalog__trigger {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.catalog__trigger:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.catalog__trigger span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.catalog__trigger {
  padding: 8px 16px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.catalog__trigger span {
  font-size: 16px;
  line-height: 24px;
}

.catalog__list {
  position: absolute;
  padding: 16px;
  border: 2px solid var(--primary-color);
  background-color: var(--surface-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  top: calc(100% + 16px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition-transform), var(--transition-opacity);
}

.header__menu {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
}

.header__menu--button {
  margin-left: 16px;
}

.header__menu--button .menu__item {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.header__menu--button .menu__item:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.header__menu--button .menu__item span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.header__menu--button .menu__item:hover {
  color: #fff;
}

.header__menu .menu__item {
  padding: 8px 16px;
}

.header__phone {
  position: relative;
  margin-left: auto;
}

.header__email {
  margin-left: 16px;
}

.header__profile {
  display: flex;
  margin-left: 16px;
}

.header-fixed {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.4509803922);
  background-color: var(--surface-color);
  padding: 8px 0;
}

.header-fixed.active {
  opacity: 1;
  visibility: visible;
}

.header-fixed__container {
  display: flex;
  align-items: center;
}

.header-fixed__container .header__logo {
  height: 40px;
  margin-right: 24px;
}

.header-fixed__container .header__search {
  margin-left: 24px;
  background-color: var(--background-color);
  padding: 7px 16px;
}

.header-fixed__container .header__button {
  width: 40px;
  height: 40px;
}

.empty {
  margin: 40px auto 0;
  padding: 0 40px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty.orders__empty {
  margin-top: 0;
}

.empty.bonuses__empty {
  margin-top: 16px;
}

.empty__imagebox {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  max-width: 657px;
}

.empty__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.empty__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.empty__subtext {
  opacity: 0.8;
  margin-bottom: 16px;
  text-align: center;
}

.empty__button {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.empty__button:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.empty__button span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.empty__button {
  width: -moz-fit-content;
  width: fit-content;
}

.breadcrumbs {
  padding: 16px 0px 8px;
  align-items: center;
  overflow: auto;
}

.breadcrumbs .breadcrumbs__item--last {
  font-weight: 600;
}

.breadcrumbs {
  scrollbar-width: 0;
  scroll-behavior: smooth;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs a {
  opacity: 0.4;
  transition: var(--transition-opacity), var(--transition-color);
}

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs__container {
  display: flex;
}

.products__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 24px;
  margin-top: 24px;
}

.products__grid .thumbs__slide {
  width: calc(33.33% - 16px);
  margin-right: 0;
}

.products__grid--full .thumbs__slide {
  width: calc(25% - 18px);
}

.thumbs {
  margin-bottom: 40px;
}

.thumbs__top {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 24px;
}

.thumbs__title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 400;
  padding-right: 24px;
}

.thumbs__controls {
  display: flex;
  gap: 16px;
}

.thumbs__prev,
.thumbs__next {
  width: 56px;
  height: 56px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: var(--transition-opacity);
}

.thumbs__prev.swiper-button-disabled,
.thumbs__next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.thumbs__prev svg,
.thumbs__next svg {
  width: 100%;
  height: 100%;
}

.thumbs__slider.swiper {
  padding-top: 24px;
  overflow: visible;
  height: auto;
}

.product-item:hover .thumbs__images::before,
.product-item:hover .thumbs__images::after {
  opacity: 1;
}

.product-item:hover .product_image_slider .image-item::before {
  border-color: var(--primary-color);
}

.thumbs__slide {
  position: relative;
}

.thumbs__slide.swiper-slide {
  width: calc(25% - 18px);
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
}

.thumbs__slide.swiper-slide:hover .thumbs__images::before,
.thumbs__slide.swiper-slide:hover .thumbs__images::after {
  opacity: 1;
}

.thumbs__slide.swiper-slide:hover .image-item::before {
  border-color: var(--primary-color);
}

.thumbs__slide.swiper-slide:not(:last-child) {
  margin-right: 24px;
}

.thumbs__slide.swiper-slide .badge-wrapper {
  position: absolute;
}

.thumbs__images {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  transition: background-color 0.3s ease-in;
}

.thumbs__images::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid var(--primary-color);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.thumbs__images::after {
  content: "";
  width: 213px;
  height: 135px;
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: -1;
  filter: blur(33px);
  transition: opacity 0.3s ease-in;
}

.favorites__border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid #85BCFF;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.favorites__delete {
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.thumbs__slide:hover .favorites__border,
.thumbs__slide:hover .favorites__delete {
  opacity: 1;
  pointer-events: all;
}

.thumbs__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.thumbs__actions {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: flex;
  z-index: 5;
}

.thumbs__actions a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbs__compare svg,
.thumbs__favorite svg {
  opacity: 0.4;
}

.thumbs__compare svg.active,
.thumbs__favorite svg.active {
  color: #85BCFF;
  opacity: 1;
}

.thumbs__price {
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.thumbs__price .price {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-right: 8px;
}

.thumbs__price .compare-at-price {
  font-size: 14px;
  line-height: 21px;
  opacity: 0.4;
  text-decoration: line-through;
}

.thumbs__name {
  height: 48px;
  overflow: hidden;
  margin-bottom: 16px;
}

.thumbs__name h5 {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  margin: 0;
}

.thumbs__features {
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
  list-style-type: none;
}

.thumbs__features li {
  display: flex;
  flex-direction: column;
}

.thumbs__features li .name {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 4px;
}

.thumbs__features li .value {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.thumbs__offer {
  margin-top: auto;
}

.badge-wrapper {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: flex;
  gap: 4px;
  align-items: center;
}

.badge {
  padding: 2px 8px;
  border-radius: 24px;
  background-color: #A578EF;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.badge.hit {
  background-color: #619BE1;
}

.badge.sale {
  background-color: #EA2F2F;
}

/* product_image_slider */

.product-item .product_image_slider {
  position: relative;
  width: 100%;
  min-height: 170px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
}

.product-item .product_image_slider .image-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.product-item .product_image_slider .image-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid transparent;
  border-radius: 24px;
  opacity: 1;
  transition: border-color 0.3s ease-in;
}

.product-item .product_image_slider .image-item::after {
  content: "";
  width: calc(100% + 16px);
  position: absolute;
  left: -8px;
  bottom: -8px;
  height: 54px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  filter: blur(8px);
}

.product-item .product_image_slider .image-item:first-child {
  opacity: 1;
}

/* image-frame hidden by default, shown when loaded */

.product-item .product_image_slider .image-frame {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: opacity 0.1s;
}

.product-item .product_image_slider .image-frame.loaded {
  opacity: 1;
}

/* loader visible by default, hidden when image loaded */

.product-item .product_image_slider .loader {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.1s;
}

.product-item .product_image_slider .image-item:has(.image-frame.loaded) .loader {
  opacity: 0;
}

/* hover: show the hovered zone's image-item, hide others */

.product-item .product_image_slider:has(.image-zone:hover) .image-item {
  opacity: 0;
}

.product-item .product_image_slider .image-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
  pointer-events: auto;
  z-index: 5;
}

.product-item .product_image_slider .image-item:has(.image-zone:hover) {
  opacity: 1;
}

/* slider indicators */

.product-item .product_image_slider .slider-indicators {
  position: absolute;
  bottom: 20px;
  text-align: center;
  opacity: 0;
  display: flex;
  gap: 4px;
  z-index: 1;
}

.product-item .product_image_slider .slider-indicators .slider-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.product-item .product_image_slider .slider-indicators .slider-indicator.inactive {
  background-color: #fff;
  opacity: 0.8;
}

.product-item .product_image_slider .slider-indicators .slider-indicator.active {
  background-color: var(--primary-color);
}

.product-item .product_image_slider .image-item:first-child .slider-indicators {
  opacity: 1;
}

.product-item .product_image_slider:has(.image-zone:hover) .slider-indicators {
  opacity: 0;
}

.product-item .product_image_slider .image-item:has(.image-zone:hover) .slider-indicators {
  opacity: 1;
}

/* mobile */

.add-to-cart__button {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.add-to-cart__button:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.add-to-cart__button span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.add-to-cart__button {
  width: 100%;
}

.add-to-cart__button .add-to-cart__loader {
  display: none;
  width: 24px;
  height: 24px;
}

.add-to-cart__button .add-to-cart__loader img {
  width: 100%;
  height: 100%;
}

.add-to-cart__button.disabled {
  background-color: #2E2D6E;
}

.add-to-cart__button.disabled:hover {
  background-color: #2E2D6E;
  box-shadow: none;
}

.add-to-cart__button:disabled {
  pointer-events: none;
  background-color: #2E2D6E;
}

.add-to-cart__button:disabled .add-to-cart__icon,
.add-to-cart__button:disabled .add-to-cart__text {
  display: none;
}

.add-to-cart__button:disabled .add-to-cart__loader {
  display: block;
}

.add-to-cart__button:disabled .add-to-cart__loader img {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.add-to-cart__icon {
  width: 24px;
  height: 24px;
}

.gotocart__btn {
  background-color: #2E2D6E;
}

.gotocart__btn:hover {
  background-color: #2E2D6E;
  box-shadow: none;
}

.mobile-menu {
  display: none;
}

.mobile-menu__container {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 70px;
  padding: 14px 16px;
}

.mobile-menu__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 9px;
  line-height: 16px;
  height: 100%;
  flex: 1;
}

.mobile-menu__item.active {
  color: #85BCFF;
}

.mobile-menu__count {
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 48px;
  color: #070707;
  font-size: 9px;
  line-height: 14px;
  padding: 0 4px;
  right: 3px;
  top: -4px;
}

.mobile-menu__background {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-opacity);
  cursor: pointer;
}

.mobile-menu__background.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__modal {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 78px;
  width: calc(100% - 32px);
  color: #fff;
  background-color: var(--surface-color);
  border: 1px solid #85BCFF;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) translateX(-50%);
  transition: var(--transition-transform), var(--transition-opacity);
}

.mobile-menu__modal.active {
  transform: translateY(0px) translateX(-50%);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__wrapper {
  padding: 24px;
  max-height: calc(100vh - 70px - 55px);
  overflow: auto;
  scrollbar-width: 0;
}

.mobile-menu__wrapper::-webkit-scrollbar {
  display: none;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__header span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -12px;
  top: -12px;
  position: absolute;
}

.mobile-menu__close--big {
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
  top: auto;
  right: auto;
}

.mobile-menu__search {
  padding-top: 16px;
}

.mobile-menu__submenu {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 24px;
}

.mobile-menu__list {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-menu__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu__socials {
  display: flex;
  gap: 8px;
}

.mobile-menu__link {
  position: relative;
  padding: 8px 0;
  opacity: 0.8;
}

.mobile-menu__list .mobile-menu__link {
  display: flex;
  align-items: center;
}

.mobile-menu__list .mobile-menu__link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M9.22716 16.5304L10.0672 17.5088L14.7656 12.0363L10.0672 6.56374L9.22716 7.54216L13.0856 12.0363L9.22716 16.5304Z%27 fill=%27white%27/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  right: 0;
  position: absolute;
}

.mobile-menu__socials {
  display: flex;
  flex-direction: column;
}

.mobile-menu__label {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.8;
}

.mobile-menu__contact:not(:last-child) {
  margin-bottom: 16px;
}

.mobile-menu__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__line span {
  font-weight: 600;
}

.mobile-menu__line a {
  color: #85BCFF;
  text-align: right;
}

.mobile-menu__bottom {
  padding-top: 24px;
  display: flex;
}

.order {
  margin-top: 40px;
}

.order__container {
  display: flex;
  gap: 24px;
}

.order__column {
  flex: 1;
}

.order__column--form .order__body {
  padding: 16px;
}

.order__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.order__title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
}

.order__clear {
  display: flex;
  gap: 4px;
  align-items: center;
  opacity: 0.8;
}

.order__clear span {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 21px;
}

.order__description {
  opacity: 0.8;
}

.order__body {
  padding: 32px 16px;
  background-color: var(--surface-color);
  border-radius: 24px;
}

.order__bottom {
  margin-top: 16px;
}

.order__back a {
  color: #85BCFF;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.order__page .wa-product {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 24px;
  margin-bottom: 16px;
  position: relative;
}

.order__page .wa-product-body {
  display: flex;
  gap: 16px;
}

.order__page .wa-column-image {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
}

.order__page .wa-image-section img {
  opacity: 1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.order__page .wa-details {
  display: flex;
  flex-direction: column;
}

.order__page .wa-product .wa-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #85BCFF;
  margin-bottom: 8px;
  min-height: 72px;
}

.order__page .wa-sku {
  opacity: 0.8;
  margin-bottom: 24px;
}

.order__page .wa-action.js-edit-product {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.order__page .wa-action.js-edit-product::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M12 18C15.3137 18 18 15.3137 18 12C18 10.4633 17.4223 9.06151 16.4722 8L14.6667 6M12 6C8.68629 6 6 8.68629 6 12C6 13.5367 6.57771 14.9385 7.52779 16L9.33333 18M18 6H14.6667M14.6667 6V9.33333M6 18H9.33333M9.33333 18V14.6667%27 stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.order__page .wa-action.js-edit-product i {
  display: none;
}

.order__page .wa-action.js-delete-product {
  position: absolute;
  right: 0;
  bottom: 24px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.order__page .wa-action.js-delete-product:hover {
  opacity: 1;
}

.order__page .wa-action.js-delete-product i {
  display: none;
}

.order__page .wa-quantity-cart-section .wa-section-body {
  display: flex;
  gap: 12px;
}

.order__page .js-product-quantity {
  width: 20px;
  background-color: var(--surface-color);
  font-size: 14px;
  line-height: 21px;
  color: #FFF;
  text-align: center;
}

.order__page .wa-button.s-minus-button,
.order__page .wa-button.s-plus-button {
  width: 24px;
  height: 24px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.order__page .wa-button.s-minus-button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27%3E%3Cpath d=%27M2 8H14%27 stroke=%27white%27/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.order__page .wa-button.s-plus-button::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27%3E%3Cpath d=%27M2 8H14%27 stroke=%27white%27/%3E%3Cpath d=%27M8 14V2%27 stroke=%27white%27/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
}

.order__page .s-minus-button.is-locked {
  opacity: 0.8;
  pointer-events: none;
}

.order__page .js-max-description {
  position: absolute;
  color: #fff;
  display: flex;
  bottom: -23px;
  font-size: 12px;
  line-height: 18px;
}

.order__page .wa-unit.top,
.order__page .wa-product-fractional-prices,
.order__page .wa-description.js-min-description {
  display: none !important;
}

.order__page .wa-icon {
  display: none;
}

.order__page .wa-column-quantity {
  margin-left: auto;
}

.order__page .wa-quantity-actions {
  display: none;
}

.order__page .wa-product .wa-price-total {
  font-size: 24px;
  line-height: 32px;
  min-width: 127px;
  text-align: right;
}

.order__page .wa-product .wa-price-compare {
  opacity: 0.6;
  text-decoration: line-through;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
}

.order__page .wa-price-discount.js-product-discount {
  opacity: 0;
  visibility: hidden;
}

.order__page .wa-product .wa-price-discount {
  display: none;
}

.order__page .wa-services {
  display: none;
}

.order__page .wa-cart-details {
  max-width: 512px;
  margin: 0 auto 24px;
}

.order__page .wa-coupon-section {
  margin-bottom: 16px;
}

.order__page .wa-coupon-section .wa-text {
  margin-bottom: 16px;
  display: block;
}

.order__page .wa-coupon-section .wa-active-state {
  display: none;
}

.order__page .wa-coupon-section.is-active .wa-active-state {
  display: block;
}

.order__page .wa-coupon-section.is-active .wa-inactive-state {
  display: none;
}

.order__page .js-coupon-code {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.order__page .js-coupon-code:hover {
  border-color: #fff;
}

.order__page .js-coupon-code:focus {
  border-color: var(--primary-color);
}

.order__page .js-use-coupon,
.order__page .js-cancel-coupon,
.order__page .js-use-bonus,
.order__page .js-cancel-bonus {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.order__page .js-use-coupon:hover,
.order__page .js-cancel-coupon:hover,
.order__page .js-use-bonus:hover,
.order__page .js-cancel-bonus:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.order__page .js-use-coupon span,
.order__page .js-cancel-coupon span,
.order__page .js-use-bonus span,
.order__page .js-cancel-bonus span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.order__page .js-use-coupon,
.order__page .js-cancel-coupon,
.order__page .js-use-bonus,
.order__page .js-cancel-bonus {
  color: #FFF;
  width: 225px;
}

.order__page .js-use-bonus {
  width: auto;
}

.order__page .wa-affiliate-section .wa-text {
  margin-bottom: 16px;
  display: block;
}

.order__page .wa-affiliate-section .wa-bonus-details .wa-details {
  display: block;
  margin-bottom: 16px;
}

.order__page .wa-affiliate-section .wa-active-state {
  display: none;
}

.order__page .wa-affiliate-section.is-active .wa-active-state {
  display: block;
}

.order__page .wa-affiliate-section.is-active .wa-inactive-state {
  display: none;
}

.order__page .wa-cart-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order__page .wa-cart-details .wa-price-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order__page .wa-cart-details .wa-price-total {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.order__page .wa-cart-details .wa-price-total,
.order__page .wa-cart-details .wa-price-subtotal,
.order__page .wa-cart-details .wa-price-discount {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.order__page .wa-cart-details .wa-price-total .wa-price {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper {
  position: relative;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper::before,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper::after,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper::after {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2744%27 height=%2748%27 viewBox=%270 0 44 48%27 fill=%27none%27%3E%3Cpath d=%27M3.12322 9.27271C2.42936 8.66384 2.35656 7.60303 3.01223 6.95321C6.19453 3.79936 10.2054 1.59092 14.5964 0.594748C19.5323 -0.525014 24.6957 -0.0557071 29.3488 1.93558C34.0018 3.92687 37.9063 7.33821 40.504 11.682C43.1017 16.0257 44.2596 21.0795 43.8123 26.1209C43.3651 31.1624 41.3354 35.9334 38.0136 39.752C34.6917 43.5705 30.2477 46.2412 25.3168 47.3822C20.3858 48.5232 15.2204 48.0761 10.5588 46.1049C6.41171 44.3512 2.8523 41.4711 0.274952 37.8063C-0.256079 37.0512 0.00234795 36.0197 0.792566 35.5425C1.58278 35.0653 2.60486 35.3238 3.14437 36.0728C5.35127 39.137 8.36321 41.5469 11.8608 43.0259C15.8731 44.7226 20.319 45.1074 24.5631 44.1253C28.8073 43.1432 32.6323 40.8446 35.4914 37.5579C38.3506 34.2712 40.0975 30.1647 40.4825 25.8255C40.8675 21.4863 39.8708 17.1364 37.6349 13.3977C35.3991 9.65902 32.0385 6.72285 28.0335 5.00893C24.0286 3.295 19.5843 2.89106 15.336 3.85485C11.6327 4.69501 8.24354 6.537 5.53165 9.16472C4.8687 9.80711 3.81709 9.88158 3.12322 9.27271Z%27 fill=%27url%28%23paint0_radial_1019_39207%29%27/%3E%3Cdefs%3E%3CradialGradient id=%27paint0_radial_1019_39207%27 cx=%270%27 cy=%270%27 r=%271%27 gradientUnits=%27userSpaceOnUse%27 gradientTransform=%27translate%2813.1863 -9.36%29 rotate%28108.778%29 scale%2838.0239 89.7714%29%27%3E%3Cstop stop-color=%27white%27/%3E%3Cstop offset=%271%27 stop-color=%27white%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
  width: 48px;
  height: 48px;
  position: absolute;
  display: none;
  transition: opacity 0.3s;
  z-index: 1;
  animation: spin 1s linear infinite;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper.is-locked,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper.is-locked {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper.is-locked .wa-cart-body,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper.is-locked .wa-cart-body {
  flex: 1;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper.is-locked::before,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper.is-locked::before {
  opacity: 1;
  pointer-events: all;
}

.order__page .order__column--form .order__body .wa-order-form-wrapper.is-locked::after,
.order__page .order__column--cart .order__body .wa-order-cart-wrapper.is-locked::after {
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.order__page .order__column--form .order__body .wa-step-auth-section .wa-section-header {
  display: flex;
  align-items: center;
}

.order__page .order__column--form .order__body .wa-step-auth-section .wa-section-header .wa-contact-name {
  margin-right: 8px;
}

.order__page .order__column--form .order__body .wa-step-auth-section .wa-section-header .wa-header {
  margin-bottom: 0;
  margin-right: auto;
}

.order__page .order__column--form .order__body .wa-section-header {
  margin-bottom: 24px;
}

.order__page .order__column--form .order__body .wa-header {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.order__page .order__column--form .order__body .wa-header .wa-login-link {
  font-size: 14px;
  line-height: 21px;
  color: #85BCFF;
}

.order__page .order__column--form .order__body .wa-fields-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper {
  width: calc(50% - 12px);
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-label {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  background-color: var(--surface-color);
  color: #fff;
  transition: border-color 0.3s;
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input:hover,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select:hover {
  border-color: #fff;
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input:focus, .order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input:focus-visible, .order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input:open,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select:focus,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select:focus-visible,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select:open {
  border-color: var(--primary-color);
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-input.wa-error,
.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select.wa-error {
  border-color: #EA2F2F;
}

.order__page .wa-error-text {
  color: #EA2F2F;
  font-size: 12px;
  line-height: 16px;
  position: absolute;
}

.order__page .order__column--form .order__body .wa-fields-group .wa-field-wrapper .wa-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M18 9L12 15L6 9%27 stroke=%27%23fff%27 stroke-width=%271.875%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-position: right 0.525em center !important;
  background-size: 16px !important;
  background-repeat: no-repeat;
}

.order__page .suggestions-suggestions {
  background-color: var(--surface-color);
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  overflow: hidden;
  max-width: 100%;
}

.order__page .suggestions-suggestion {
  border: 1px solid transparent;
  border-radius: 8px;
}

.order__page .suggestions-suggestion:hover {
  background-color: var(--surface-color);
  border-color: var(--primary-color);
}

.order__page .order__column--form .order__body .wa-agreement-wrapper i {
  display: none;
}

.order__page .order__column--form .order__body .wa-checkbox-wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.order__page .wa-step-shipping-section .wa-delivery-types-section {
  margin-bottom: 24px;
}

.order__page .wa-step-shipping-section .wa-types-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.order__page .wa-step-shipping-section .wa-type-wrapper {
  width: calc(33.33% - 16px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
}

.order__page .wa-step-shipping-section .wa-type-wrapper:hover {
  border-color: #fff;
}

.order__page .wa-step-shipping-section .wa-type-wrapper.is-active {
  border-color: #85BCFF;
}

.order__page .wa-step-shipping-section .wa-type-wrapper.is-active .wa-name::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%23C39DFF%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%2357CAF3%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%2385BCFF%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%23C39DFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2357CAF3%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2385BCFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
}

.order__page .wa-step-shipping-section .wa-type-wrapper .wa-name {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.order__page .wa-step-shipping-section .wa-type-wrapper .wa-name::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%23D9D9D9%27/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.order__page .wa-step-shipping-section .wa-type-wrapper .wa-date {
  position: absolute;
  right: 16px;
  bottom: 8px;
}

.order__page .wa-step-shipping-section .wa-delivery-variants-section {
  margin-bottom: 24px;
}

.order__page .wa-step-shipping-section .wa-dropdown {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.order__page .wa-step-shipping-section .wa-dropdown:hover {
  border-color: #fff;
}

.order__page .wa-step-shipping-section .wa-dropdown.is-opened {
  border-color: var(--primary-color);
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area {
  display: none;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area .wa-dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: color 0.3s;
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area .wa-dropdown-item:hover {
  color: var(--primary-color);
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area .wa-dropdown-item:not(:last-child)::after {
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 16px;
  bottom: 0;
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area .wa-dropdown-item .wa-delivery-variant {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.order__page .wa-step-shipping-section .wa-dropdown .wa-dropdown-area .wa-dropdown-item .wa-delivery-variant .wa-name {
  width: 100%;
  font-weight: 600;
}

.order__page .wa-step-shipping-section .wa-dropdown.is-opened .wa-dropdown-area {
  display: block;
}

.order__page .wa-step-shipping-section .wa-dropdown.is-opened .wa-dropdown-toggle::before {
  transform: translateY(-50%) rotate(180deg);
}

.order__page .wa-step-shipping-section .wa-dropdown.is-opened .wa-dropdown-toggle::after {
  content: "";
  width: calc(100% - 32px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 16px;
  bottom: 0;
}

.order__page .wa-step-shipping-section .wa-dropdown-toggle {
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}

.order__page .wa-step-shipping-section .wa-dropdown-toggle::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27%3E%3Cmask id=%27mask0_176_5612%27 style=%27mask-type:luminance%27 maskUnits=%27userSpaceOnUse%27 x=%274%27 y=%276%27 width=%278%27 height=%275%27%3E%3Cpath d=%27M8 11L12 6.95142L11.06 6L8 9.09042L4.94 6L4 6.95142L8 11Z%27 fill=%27white%27/%3E%3C/mask%3E%3Cg mask=%27url%28%23mask0_176_5612%29%27%3E%3Crect x=%2716%27 y=%2716%27 width=%2716%27 height=%2716%27 transform=%27rotate%28-180 16 16%29%27 fill=%27white%27/%3E%3C/g%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.order__page .wa-step-details-section {
  padding: 0 16px;
}

.order__page .wa-step-details-section .wa-details-description {
  margin-bottom: 8px;
}

.order__page .wa-step-details-section .wa-details-rates-section .ymaps-geolink {
  margin: 0;
  white-space: break-spaces;
}

.order__page .wa-step-details-section .wa-details-rates-section .ymaps-geolink:hover {
  color: var(--primary-color);
}

.order__page .wa-step-details-section .wa-details-rates-section .ymaps-geolink::before, .order__page .wa-step-details-section .wa-details-rates-section .ymaps-geolink::after {
  display: none;
}

.order__page .wa-step-details-section .wa-details-rates-section .wa-row {
  gap: 8px;
  margin-bottom: 2px;
}

.order__page .wa-step-details-section .wa-details-rates-section .wa-cell,
.order__page .wa-step-details-section .wa-details-rates-section .wa-date {
  width: 260px;
}

.order__page .wa-step-details-section .wa-details-rates-section .wa-schedule-wrapper,
.order__page .wa-step-details-section .wa-details-rates-section .wa-comment-item {
  margin-top: 8px;
}

.order__page .wa-step-details-section .wa-details-rates-section .wa-day-wrapper {
  display: flex;
  gap: 8px;
}

.order__page .wa-step-details-section .wa-details-fields-section {
  margin-top: 16px;
}

.order__page .wa-step-payment-section {
  margin-bottom: 24px;
}

.order__page .wa-step-payment-section .wa-methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.order__page .wa-step-payment-section .wa-method-wrapper {
  width: calc(50% - 16px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s;
}

.order__page .wa-step-payment-section .wa-method-wrapper:hover {
  border-color: #fff;
}

.order__page .wa-step-payment-section .wa-method-wrapper.is-active {
  border-color: #85BCFF;
}

.order__page .wa-step-payment-section .wa-method-wrapper.is-active .wa-payment-name::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%23C39DFF%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%2357CAF3%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%2385BCFF%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%23C39DFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2357CAF3%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2385BCFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
}

.order__page .wa-step-payment-section .wa-method-wrapper .wa-checkbox-wrapper {
  display: none;
}

.order__page .wa-step-payment-section .wa-method-wrapper .wa-image-wrapper {
  display: none;
}

.order__page .wa-step-payment-section .wa-method-wrapper .wa-image-wrapper img {
  opacity: 1;
  visibility: visible;
}

.order__page .wa-step-payment-section .wa-method-wrapper .wa-payment-name {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.order__page .wa-step-payment-section .wa-method-wrapper .wa-payment-name::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%279.5%27 stroke=%27%23D9D9D9%27/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.order__page .wa-step-confirm-section {
  margin-top: 24px;
}

.order__page .wa-step-confirm-section .wa-flex-wrapper {
  flex-direction: column;
  align-items: flex-start;
}

.order__page .wa-step-confirm-section .wa-comment-section {
  width: 100%;
  margin-bottom: 24px;
}

.order__page .wa-step-confirm-section .wa-comment-section .wa-visible {
  margin-bottom: 8px;
}

.order__page .wa-step-confirm-section .wa-comment-section.is-opened .wa-hidden {
  display: block;
}

.order__page .wa-step-confirm-section .wa-comment-section.is-opened .js-open-section::after {
  transform: rotate(-180deg);
  top: 5px;
}

.order__page .wa-step-confirm-section .wa-comment-section .js-open-section {
  cursor: pointer;
  opacity: 0.8;
  margin-bottom: 8px;
  position: relative;
}

.order__page .wa-step-confirm-section .wa-comment-section .js-open-section::after {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27none%27%3E%3Cpath d=%27M18 9L12 15L6 9%27 stroke=%27%23fff%27 stroke-width=%271.875%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  position: absolute;
  right: -16px;
  top: 3px;
  transition: transform 0.3s;
}

.order__page .wa-step-confirm-section .wa-comment-section .wa-hidden {
  display: none;
}

.order__page .wa-step-confirm-section .wa-comment-section .wa-textarea {
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: #FFF;
  transition: border-color 0.3s;
}

.order__page .wa-step-confirm-section .wa-comment-section .wa-textarea:hover {
  border-color: #fff;
}

.order__page .wa-step-confirm-section .wa-comment-section .wa-textarea:focus, .order__page .wa-step-confirm-section .wa-comment-section .wa-textarea:focus-visible {
  outline: none;
  border-color: var(--primary-color);
}

.order__page .wa-step-confirm-section .wa-actions-section .wa-terms-section {
  margin-bottom: 32px;
}

.order__page .wa-step-confirm-section .wa-actions-section .wa-terms-section .js-show-terms-dialog {
  color: var(--primary-color);
  transition: color 0.3s;
}

.order__page .wa-step-confirm-section .wa-actions-section .wa-terms-section .js-show-terms-dialog:hover {
  color: var(--primary-hover-color);
}

.order__page .wa-step-confirm-section .wa-actions-section .is-agreement-field .wa-checkbox-wrapper {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.order__page .wa-step-confirm-section .wa-actions-section .is-agreement-field .wa-checkbox-wrapper::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27 viewBox=%270 0 14 14%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27white%27 stroke-opacity=%270.4%27/%3E%3C/svg%3E");
  transition: background-image 0.3s;
}

.order__page .wa-step-confirm-section .wa-actions-section .is-agreement-field .wa-checkbox-wrapper:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27 viewBox=%270 0 14 14%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%23C39DFF%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%2357CAF3%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%2385BCFF%27/%3E%3C/svg%3E");
}

.order__page .wa-step-confirm-section .wa-actions-section .is-agreement-field .wa-checkbox-wrapper:has(input[type=checkbox]:checked)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27 viewBox=%270 0 14 14%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%23C39DFF%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%2357CAF3%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2713%27 height=%2713%27 rx=%273.5%27 stroke=%27%2385BCFF%27/%3E%3Cpath d=%27M4 6.53648L6.10938 9L10 5%27 stroke=%27%23C39DFF%27/%3E%3Cpath d=%27M4 6.53648L6.10938 9L10 5%27 stroke=%27%2357CAF3%27/%3E%3Cpath d=%27M4 6.53648L6.10938 9L10 5%27 stroke=%27%2385BCFF%27/%3E%3C/svg%3E");
}

.order__page .wa-step-confirm-section .wa-actions-section .is-agreement-field .s-checkbox {
  display: none;
}

.order__page .wa-item.wa-item-price,
.order__page .wa-item.wa-item-shipping,
.order__page .wa-item.wa-item-discount {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.order__page .wa-item.wa-item-price .wa-name,
.order__page .wa-item.wa-item-shipping .wa-name,
.order__page .wa-item.wa-item-discount .wa-name {
  opacity: 0.5;
}

.order__page .wa-item.wa-item-price .wa-value,
.order__page .wa-item.wa-item-shipping .wa-value,
.order__page .wa-item.wa-item-discount .wa-value {
  font-weight: 600;
}

.order__page .wa-item.wa-item-total {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  padding: 10px 0;
  margin-bottom: 24px;
}

.order__page .wa-item.wa-item-total .wa-value {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
}

.order__page .wa-submit-button {
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out;
  background-color: #8E58E4;
}

.order__page .wa-submit-button:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.order__page .wa-submit-button span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.order__page .wa-submit-button {
  color: #fff;
  width: 225px;
}

.order__page .wa-row {
  display: flex;
  gap: 24px;
}

.order__page .wa-flex-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.checkout__line {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 1;
}

.checkout__link {
  background-color: var(--surface-color);
  border-radius: 8px;
  color: var(--primary-color);
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkout__link:hover {
  color: var(--primary-hover-color);
}

.c-payment-image {
  opacity: 1;
  visibility: visible;
}

.c-payment-section {
  margin-bottom: 16px;
}

.checkout__container .c-payment-section .c-button {
  padding: 12px 16px !important;
  border-radius: 16px !important;
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  position: relative !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  transition: 0.3s ease-in-out !important;
  background-color: transparent !important;
  border: 2px solid var(--primary-hover-color);
  color: #fff !important;
  font-size: 16px !important;
}

.checkout__container .c-payment-section .c-button:hover {
  background-color: var(--primary-hover-color) !important;
}