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

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

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

main {
  overflow-x: hidden;
}

section {
  position: relative;
}

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

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

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

form {
  margin-bottom: 0;
}

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

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

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

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

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

mark {
  background: transparent;
}

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

ol {
  counter-reset: item;
}

ol li {
  display: block;
}

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

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

/* LazyLoad */

img {
  opacity: 0;
}

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

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

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

p {
  margin: 0;
}

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

.nowrap {
  white-space: nowrap;
}

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

.cookie--visible {
  display: block;
}

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

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

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

.cookie__text {
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

.has-loader {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__account:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.header__search button {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__email {
  margin-left: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs__container {
  display: flex;
}

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

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

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

.thumbs {
  margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

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

.thumbs__slide {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbs__offer {
  margin-top: auto;
}

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

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

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

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

/* product_image_slider */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* slider indicators */

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

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

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

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

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

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

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

/* mobile */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.category__top {
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category__title {
  font-size: 40px;
  line-height: 44px;
}

.category__count {
  font-size: 24px;
  line-height: 32px;
  color: #85BCFF;
  margin-left: 16px;
  vertical-align: middle;
}

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

.search__actions {
  padding-top: 24px;
}

.category__action {
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.category__action:hover {
  opacity: 1;
}

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

.category__aside {
  margin-left: -40px;
  width: 362px;
  flex-shrink: 0;
}

.category__aside-header {
  display: none;
}

.category__aside-bottom {
  margin-top: auto;
  padding: 24px 0;
  width: 100%;
  justify-content: center;
  display: none;
}

.category__aside-close {
  width: 80px;
  height: 80px;
}

.category__aside-close svg {
  width: 100%;
  height: 100%;
}

.filter__param {
  position: relative;
}

.filter__param.active .filter__header h5::after {
  transform: rotate(180deg);
}

.filter__param.active .filter__content {
  opacity: 1;
  padding-bottom: 16px;
}

.filter__param:not(:first-child) {
  margin-top: 24px;
}

.filter__param:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 40px;
  top: -12px;
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.filter__param-price .filter__content .price__slider-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.filter__param-price .filter__content .price__slider-item {
  flex: 1;
  width: calc(50% - 20px);
}

.filter__param-price .filter__content .price__slider-label {
  display: none;
}

.filter__param-price .filter__content input {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background-color: var(--background-color);
  padding: 12px 16px;
  height: 40px;
  width: 100%;
  color: #fff;
}

.filter__param-price .filter__content .filter-slider.ui-slider {
  height: 2px;
  background: #6A6A6A;
  margin: 22px 0;
  border: none;
}

.filter__param-price .filter__content .ui-slider-range.ui-widget-header {
  background: #85BCFF;
}

.filter__param-price .filter__content .ui-slider-handle.ui-state-default.ui-corner-all {
  background: #6A6A6A;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  margin-left: 0;
  transition: background 0.4s;
}

.filter__param-price .filter__content .ui-slider-handle.ui-state-default.ui-corner-all.ui-state-hover {
  background: #85BCFF;
}

.filter__param-price .filter__content .ui-slider-handle.ui-state-default.ui-corner-all:last-child {
  margin-left: -14px;
}

.filter__header {
  padding: 24px 40px;
  cursor: pointer;
}

.filter__header h5 {
  margin: 0;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.filter__header h5::after {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2718%27 height=%2718%27 viewBox=%270 0 18 18%27 fill=%27none%27%3E%3Crect xmlns=%27http://www.w3.org/2000/svg%27 width=%2718%27 height=%2718%27/%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M9.00003 9.46474L4.72169 6L3.5 7.5459L9.00004 12L14.5 7.54589L13.2783 6.00001L9.00003 9.46474Z%27 fill=%27white%27 fill-opacity=%270.4%27/%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  transition: transform 0.3s;
}

.filter__content {
  padding: 0 40px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

.filter__content label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}

.filter__content label:not(:last-child) {
  margin-bottom: 8px;
}

.filter__content label::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%273.5%27 stroke=%27white%27 stroke-opacity=%270.4%27/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.filter__content label:has(input:checked)::before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%273.5%27 stroke=%27%23C39DFF%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%273.5%27 stroke=%27%2357CAF3%27/%3E%3Crect x=%270.5%27 y=%270.5%27 width=%2719%27 height=%2719%27 rx=%273.5%27 stroke=%27%2385BCFF%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%23C39DFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2357CAF3%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M6 10.357L9.0003 13L14 7.00012%27 stroke=%27%2385BCFF%27 stroke-width=%272%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
}

.filter__content input {
  display: none;
}

.filter__more {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #85BCFF;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-top: 16px;
  cursor: pointer;
}

.filters__reset-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px 28px 24px 40px;
  margin-top: 12px;
}

.filters__reset-label::after {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27%3E%3Crect width=%2742%27 height=%2742%27 rx=%2721%27 fill=%27%23272727%27/%3E%3Cmask id=%27mask0_172_4816%27 style=%27mask-type:luminance%27 maskUnits=%27userSpaceOnUse%27 x=%2716%27 y=%2716%27 width=%2710%27 height=%2710%27%3E%3Cpath d=%27M25.6654 17.2735L24.7254 16.3335L20.9987 20.0602L17.272 16.3335L16.332 17.2735L20.0587 21.0002L16.332 24.7268L17.272 25.6668L20.9987 21.9402L24.7254 25.6668L25.6654 24.7268L21.9387 21.0002L25.6654 17.2735Z%27 fill=%27white%27/%3E%3C/mask%3E%3Cg mask=%27url%28%23mask0_172_4816%29%27%3E%3Crect x=%2713%27 y=%2713%27 width=%2716%27 height=%2716%27 fill=%27white%27 fill-opacity=%270.8%27/%3E%3C/g%3E%3C/svg%3E");
  width: 42px;
  height: 42px;
}

.filters__reset {
  font-size: 16px;
  line-height: 24px;
  background-color: var(--background-color);
  color: rgba(255, 255, 255, 0.8);
}

.skeleton {
  margin-top: 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skeleton-loader {
  animation: spin 1s linear infinite;
}

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

.category__list {
  width: 100%;
}

.category__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
}

.category__filter-button {
  display: none;
}

.category__sorting .sorting-dropdown {
  position: relative;
  display: inline-block;
}

.category__sorting .sorting-dropdown svg {
  transition: transform 0.3s;
}

.category__sorting .sorting-dropdown.is-open .sorting-dropdown__toggle svg {
  transform: rotate(180deg);
}

.category__sorting .sorting-dropdown.is-open .sorting-dropdown__menu {
  display: block;
}

.category__sorting .sorting-dropdown__toggle {
  display: flex;
  align-items: center;
  min-width: 100%;
  padding: 0;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: normal;
  cursor: pointer;
  white-space: nowrap;
  font-size: 16px;
  line-height: 24px;
}

.category__sorting .sorting-dropdown__toggle svg {
  margin-left: 8px;
}

.category__sorting .is-open .sorting-dropdown__toggle {
  color: #85BCFF;
}

.category__sorting .sorting-dropdown__toggle.chevron.down:after {
  margin-left: 8px;
}

.category__sorting .sorting-dropdown__toggle .sorting-dropdown__label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.category__sorting .sorting-dropdown__current-order {
  margin-left: 0.25rem;
}

.category__sorting .sorting-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  z-index: 11;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
}

.category__sorting .sorting-dropdown__item {
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 8px;
}

.category__sorting .sorting-dropdown__item svg {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category__sorting .sorting-dropdown__item.is-selected, .category__sorting .sorting-dropdown__item:hover {
  color: #85BCFF;
}

.category__sorting .sorting-dropdown__item.is-selected svg {
  opacity: 1;
}

.category__sorting .sorting-dropdown__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--text-color);
  text-decoration: none;
  width: 100%;
}

.category__sorting .sorting-dropdown__item a i[class^=sort-] {
  display: none;
}

.category__sorting .sorting-dropdown__item a:hover,
.category__sorting .sorting-dropdown__item a:focus {
  color: var(--link-color);
}

.category__sorting .sorting-dropdown__item.is-selected a {
  color: var(--link-color);
}

.category__subs {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
}

.category__subs.open .category__sub--hidden {
  display: block;
}

.category__sub {
  flex: 1 1 calc(33.33% - 1.5px);
  background-color: var(--surface-color);
}

.category__sub a {
  padding: 16px;
}

.category__sub--hidden {
  display: none;
}

.subs__more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease-out;
}

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

.subs__more .minus {
  display: none;
}

.subs__more.open .plus {
  display: none;
}

.subs__more.open .minus {
  display: block;
}