
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;
}

.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;
}

.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;
}

.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;
}

.product {
  margin-top: 24px;
}

.product__container {
  max-width: 1176px;
}

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

.product__gallery {
  width: calc(50% - 12px);
}

.gallery__slider.swiper {
  border-radius: 24px;
  overflow: hidden;
}

.gallery__slide:first-child {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

.gallery__slide:last-child {
  border-radius: 0 24px 24px 0;
  overflow: hidden;
}

.gallery__slide.gallery__slide--single {
  border-radius: 24px;
  overflow: hidden;
}

.gallery__imagebox {
  aspect-ratio: 1/1;
  display: flex;
}

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

.product__info {
  width: calc(50% - 12px);
}

.product__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

.product__action {
  cursor: pointer;
}

.product__action svg {
  opacity: 0.4;
}

.product__action svg.active {
  opacity: 1;
  color: var(--primary-color);
}

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

.product__title {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product__sku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
}

.product__label {
  font-size: 14px;
  line-height: 21px;
  opacity: 0.7;
}

.product__value--sku {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.product__previews {
  position: relative;
  margin-top: 24px;
}

.previews__slide.swiper-slide {
  width: 93px;
  height: 93px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.previews__slide.swiper-slide.swiper-slide-thumb-active {
  border: 1px solid #FFFFFF;
}

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

.previews__slide.swiper-slide .loader {
  width: 50px;
  height: 50px;
}

.previews__slide.swiper-slide .loader img {
  width: 100%;
  height: 100%;
}

.previews__prev,
.previews__next {
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.previews__prev.swiper-button-disabled,
.previews__next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.previews__prev {
  left: -24px;
  transform: translateY(-50%) rotate(180deg);
}

.previews__next {
  right: -24px;
  transform: translateY(-50%);
}

.previews__imagebox {
  width: 100%;
  height: 100%;
}

.previews__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__purchase {
  padding: 16px;
  border-radius: 24px;
  background-color: var(--surface-color);
  margin-bottom: 24px;
}

.product__purchase .services,
.product__purchase .options {
  display: none;
}

.product__compare-price {
  opacity: 0.5;
  text-decoration: line-through;
  margin-bottom: 2px;
  width: 100%;
}

.product__row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.product__price {
  font-size: 32px;
  line-height: 44px;
  margin-right: 8px;
}

.product__discount {
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #FF781E;
  font-size: 12px;
  line-height: 16px;
}

.product__reserve {
  margin-left: auto;
  padding: 4px 8px;
  padding-left: 18px;
  background-color: #363636;
  border-radius: 6px;
  position: relative;
}

.product__reserve span {
  opacity: 0.8;
}

.product__reserve::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 8px;
  border-radius: 50%;
  background-color: #6BB74D;
  top: 50%;
  transform: translateY(-50%);
}

.product__reserve.out-of-stock::before {
  background-color: #FF3D12;
}

.product__add2cart {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product__add2cart .product__gotocart.wa-hide {
  display: none;
}

.product__add2cart .button__loader {
  display: none;
  width: 24px;
  height: 24px;
}

.product__add2cart .button__loader img {
  width: 100%;
  height: 100%;
}

.product__add2cart .product__gotocart {
  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;
}

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

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

.product__add2cart .product__gotocart {
  background-color: #2E2D6E;
  width: 100%;
}

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

.product__volume {
  width: 48px;
  height: 48px;
  background-color: #4D4D4D;
  border-radius: 50%;
}

.product__volume button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__count input {
  width: 12px;
  background-color: transparent;
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.product__counter {
  display: flex;
  gap: 24px;
  align-items: center;
}

.product__counter.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.product__buy {
  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;
}

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

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

.product__buy {
  width: 100%;
  color: #fff;
}

.product__buy:disabled {
  background-color: #2E2D6E;
  pointer-events: none;
}

.product__buy.loading {
  pointer-events: none;
  background-color: #2E2D6E;
}

.product__buy.loading .button__icon,
.product__buy.loading .button__text {
  display: none;
}

.product__buy.loading .button__loader {
  display: block;
}

.product__buy.loading .button__loader img {
  animation: spin 1s linear infinite;
}

.product__summary {
  margin-bottom: 24px;
  opacity: 0.8;
}

.product__stocks-list {
  margin-top: 8px;
}

.product__stocks-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

.stock-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stock-item span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 16px;
}

.stock-item span.text-red {
  color: #FF3D12;
}

.stock-item span.text-orange {
  color: #FF8F0C;
}

.stock-item span.text-green {
  color: #079D16;
}

.stock-item span.text-blue {
  color: #0388D2;
}

.stock-name {
  font-size: 16px;
  line-height: 24px;
}