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

.wa-signup-form {
  max-width: 1920px;
  background-size: cover;
  padding: 100px 0;
  margin: 0 auto;
}

.wa-signup-form-wrapper {
  max-width: 1440px;
  padding: 0px 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-signup-form form {
  border-radius: 24px;
  background-color: var(--surface-color);
  padding: 16px;
  width: 375px;
}

.wa-signup-form-wrapper form .wa-signup-form-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.wa-signup-form-wrapper form .wa-field {
  position: relative;
}

.wa-signup-form-wrapper form .wa-field:not(:last-child) {
  margin-top: 24px;
}

.wa-signup-form-wrapper form .wa-field:not(.wa-captcha-field) .wa-name {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  position: absolute;
  left: 16px;
  top: 0px;
  transform: translate(0px, 16px);
  transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
  color: #FFF;
  z-index: 1;
}

.wa-signup-form-wrapper form input[type=text],
.wa-signup-form-wrapper form input[type=email],
.wa-signup-form-wrapper form input[type=password] {
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: #FFF;
  height: 56px;
}

.wa-signup-form-wrapper form input[type=text]:hover,
.wa-signup-form-wrapper form input[type=email]:hover,
.wa-signup-form-wrapper form input[type=password]:hover {
  border-color: #fff;
}

.wa-signup-form-wrapper form input[type=text]:focus,
.wa-signup-form-wrapper form input[type=email]:focus,
.wa-signup-form-wrapper form input[type=password]:focus {
  border-color: var(--primary-color);
}

.wa-signup-form-wrapper form .wa-field:has(input[type=text]:not(:-moz-placeholder)) .wa-name, .wa-signup-form-wrapper form .wa-field:has(input[type=email]:not(:-moz-placeholder)) .wa-name, .wa-signup-form-wrapper form .wa-field:has(input[type=password]:not(:-moz-placeholder)) .wa-name {
  transform: translate(-2px, 2px);
  font-size: 9px;
  line-height: 16px;
}

.wa-signup-form-wrapper form .wa-field:has(input[type=text]:focus) .wa-name,
.wa-signup-form-wrapper form .wa-field:has(input[type=email]:focus) .wa-name,
.wa-signup-form-wrapper form .wa-field:has(input[type=password]:focus) .wa-name,
.wa-signup-form-wrapper form .wa-field:has(input[type=text]:not(:placeholder-shown)) .wa-name,
.wa-signup-form-wrapper form .wa-field:has(input[type=email]:not(:placeholder-shown)) .wa-name,
.wa-signup-form-wrapper form .wa-field:has(input[type=password]:not(:placeholder-shown)) .wa-name {
  transform: translate(-2px, 2px);
  font-size: 9px;
  line-height: 16px;
}

.wa-signup-form-wrapper form .wa-field .wa-value label {
  padding-left: 31px;
}

.wa-signup-form-wrapper form .wa-field .wa-value label::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect width=%2723%27 height=%2723%27 rx=%276%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27white%27 stroke-opacity=%270.4%27 stroke-width=%272%27/%3E%3C/svg%3E");
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 3px;
  transition: background-image 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.wa-signup-form-wrapper form .wa-field .wa-value label:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3C/svg%3E");
}

.wa-signup-form-wrapper form .wa-field .wa-value label:has(input:checked)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3C/svg%3E");
}

.wa-signup-form-wrapper form .wa-field .wa-value label input,
.wa-signup-form-wrapper form .wa-field .wa-value label a {
  display: inline;
}

.wa-signup-form-wrapper form .wa-field .wa-value label input {
  display: none;
}

.wa-signup-form-wrapper form .wa-field .wa-value label a {
  color: #A578EF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-signup-form-wrapper form .wa-field .wa-value label a:hover {
  color: var(--primary-color);
}

.wa-signup-form-wrapper form .wa-signup-form-actions {
  margin-top: 24px;
}

.wa-signup-form-wrapper form input[type=submit],
.wa-done-signup-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;
}

.wa-signup-form-wrapper form input[type=submit]:hover,
.wa-done-signup-button:hover {
  background-color: #7483F1;
  box-shadow: 0px 0px 28px 0px rgba(87, 147, 243, 0.5019607843);
  color: #fff;
}

.wa-signup-form-wrapper form input[type=submit] span,
.wa-done-signup-button span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.wa-signup-form-wrapper form input[type=submit],
.wa-done-signup-button {
  color: #fff;
  width: 100%;
}

.wa-signup-form-wrapper form .wa-signup-form-actions .wa-login-url {
  margin-top: 8px;
}

.wa-signup-form-wrapper form .wa-signup-form-actions .wa-login-url a {
  display: inline-block;
  margin-left: 8px;
  color: #A578EF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-signup-form-wrapper form .wa-signup-form-actions .wa-login-url a:hover {
  color: var(--primary-color);
}

.wa-signup-form .wa-signup-form-wrapper.wa-is-onetime-password-auth-type .wa-field-onetime-password .wa-value input[type=text] {
  width: 100%;
  margin-bottom: 16px;
}

.wa-login-form {
  max-width: 1920px;
  background-size: cover;
  padding: 100px 0;
  margin: 0 auto;
}

.wa-login-form-wrapper {
  max-width: 1440px;
  padding: 0px 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-login-form .js-wa-form-item {
  border-radius: 24px;
  background-color: var(--surface-color);
  padding: 16px;
  width: 375px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-login-form-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field {
  position: relative;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field:not(:last-child) {
  margin-top: 24px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field:not(.wa-captcha-field) .wa-name {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  position: absolute;
  left: 16px;
  top: 0px;
  transform: translate(0px, 16px);
  transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
  color: #FFF;
  z-index: 1;
}

.wa-login-form-wrapper .js-wa-form-item input[type=text],
.wa-login-form-wrapper .js-wa-form-item input[type=email],
.wa-login-form-wrapper .js-wa-form-item input[type=password] {
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: #FFF;
  height: 56px;
}

.wa-login-form-wrapper .js-wa-form-item input[type=text]::-moz-placeholder, .wa-login-form-wrapper .js-wa-form-item input[type=email]::-moz-placeholder, .wa-login-form-wrapper .js-wa-form-item input[type=password]::-moz-placeholder {
  color: transparent;
}

.wa-login-form-wrapper .js-wa-form-item input[type=text]::placeholder,
.wa-login-form-wrapper .js-wa-form-item input[type=email]::placeholder,
.wa-login-form-wrapper .js-wa-form-item input[type=password]::placeholder {
  color: transparent;
}

.wa-login-form-wrapper .js-wa-form-item input[type=text]:hover,
.wa-login-form-wrapper .js-wa-form-item input[type=email]:hover,
.wa-login-form-wrapper .js-wa-form-item input[type=password]:hover {
  border-color: #fff;
}

.wa-login-form-wrapper .js-wa-form-item input[type=text]:focus,
.wa-login-form-wrapper .js-wa-form-item input[type=email]:focus,
.wa-login-form-wrapper .js-wa-form-item input[type=password]:focus {
  border-color: var(--primary-color);
}

.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=text]:not(:-moz-placeholder)) .wa-name, .wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=email]:not(:-moz-placeholder)) .wa-name, .wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=password]:not(:-moz-placeholder)) .wa-name {
  transform: translate(-2px, 2px);
  font-size: 9px;
  line-height: 16px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=text]:focus) .wa-name,
.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=email]:focus) .wa-name,
.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=password]:focus) .wa-name,
.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=text]:not(:placeholder-shown)) .wa-name,
.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=email]:not(:placeholder-shown)) .wa-name,
.wa-login-form-wrapper .js-wa-form-item .wa-field:has(input[type=password]:not(:placeholder-shown)) .wa-name {
  transform: translate(-2px, 2px);
  font-size: 9px;
  line-height: 16px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label {
  padding-left: 31px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect width=%2723%27 height=%2723%27 rx=%276%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27white%27 stroke-opacity=%270.4%27 stroke-width=%272%27/%3E%3C/svg%3E");
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 3px;
  transition: background-image 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3C/svg%3E");
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label:has(input:checked)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2723%27 height=%2723%27 viewBox=%270 0 23 23%27 fill=%27none%27%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 fill=%27%23242424%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Crect x=%271%27 y=%271%27 width=%2721%27 height=%2721%27 rx=%275%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%23C39DFF%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%2357CAF3%27 stroke-width=%272%27/%3E%3Cpath d=%27M7 12.2481L10.1719 15.5L17 8.5%27 stroke=%27%2385BCFF%27 stroke-width=%272%27/%3E%3C/svg%3E");
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label input,
.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label a {
  display: inline;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label input {
  display: none;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label a {
  color: #A578EF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-field .wa-value label a:hover {
  color: var(--primary-color);
}

.wa-login-form-wrapper .js-wa-form-item .wa-login-form-actions {
  margin-top: 24px;
}

.wa-login-form-wrapper .js-wa-form-item button,
.wa-login-form-wrapper .wa-login-submit {
  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;
}

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

.wa-login-form-wrapper .js-wa-form-item button span,
.wa-login-form-wrapper .wa-login-submit span {
  color: #FFF;
  font-size: 14px;
  line-height: 21px;
}

.wa-login-form-wrapper .js-wa-form-item button,
.wa-login-form-wrapper .wa-login-submit {
  color: #fff;
  width: 100%;
}

.wa-login-form-wrapper .js-wa-form-item .wa-login-form-actions .wa-signup-url {
  margin-top: 8px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-login-form-actions .wa-signup-url a {
  display: inline-block;
  margin-left: 8px;
  color: #A578EF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wa-login-form-wrapper .js-wa-form-item .wa-login-form-actions .wa-signup-url a:hover {
  color: var(--primary-color);
}

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

.posts {
  margin-bottom: 80px;
}

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

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

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

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

.posts__prev.swiper-button-disabled,
.posts__next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.posts__prev svg,
.posts__next svg {
  width: 100%;
  height: 100%;
}

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

.post__item,
.post__item.swiper-slide {
  width: calc(25% - 24px);
  margin: 16px 24px 24px 0;
  position: relative;
}

.post__item:hover .post__imagebox::before,
.post__item:hover .post__imagebox::after,
.post__item.swiper-slide:hover .post__imagebox::before,
.post__item.swiper-slide:hover .post__imagebox::after {
  opacity: 1;
}

.post__item:hover .post__more,
.post__item.swiper-slide:hover .post__more {
  color: var(--primary-color);
}

.post__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.post__imagebox {
  aspect-ratio: 1/1;
  display: flex;
  margin-bottom: 24px;
  border-radius: 24px;
}

.post__imagebox:has(.post__placeholder) {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.post__placeholder {
  width: 90px;
}

.post__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.post__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.post__text {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  margin-bottom: 8px;
  max-height: 72px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.post__more {
  transition: color 0.2s;
}

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

.hero {
  margin: 40px 0;
}

.hero__slider {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 504px;
  border-radius: 24px;
  overflow: hidden;
  height: clamp(362px, -348px + 59.1666666667vw, 504px);
}

.hero__slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(36, 36, 36, 0.5019607843);
}

.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero__block {
  margin-top: 100px;
  margin-left: 130px;
  max-width: 522px;
}

.hero__title {
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 16px;
}

.hero__description {
  max-width: 422px;
  margin-bottom: 32px;
}

.hero__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: #FFF;
  color: var(--background-color);
}

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

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

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

.hero__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero__pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 105px;
  height: 4px;
  border-radius: 64px;
  background-color: #fff;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
  margin: 0 2px;
}

.hero__pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:hover {
  opacity: 1;
}

.hero__pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  z-index: 1;
  cursor: pointer;
}

.hero__nav.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.hero__nav--mobile {
  position: relative;
}

.hero__nav a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.hero__prev {
  left: 24px;
}

.hero__next {
  right: 24px;
}

.advantages {
  margin-bottom: 80px;
}

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

.advantages__controls {
  display: none;
}

.advantages__item {
  flex: 1;
  border-radius: 24px;
  background-color: var(--surface-color);
  padding: 24px 40px;
  position: relative;
}

.advantages__name {
  font-size: 52px;
  line-height: 62px;
  margin-bottom: 8px;
  font-weight: 600;
  padding: 0 32px;
}

.advantages__name::before {
  content: attr(data-decorator);
  color: var(--primary-color);
  position: absolute;
  left: 40px;
}

.advantages__text {
  padding: 0 32px;
  font-weight: 600;
}