@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
  */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
  */
:where(ul[class]) {
  list-style: none;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
  */
p {
  --paragraphMarginBottom: 16px;
  margin-block: 0;
}
p:last-of-type {
  margin: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями
  */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
  Пригодится в большинстве ситуаций
  (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  height: 100%;
  /**
  Плавный скролл
  */
  scroll-behavior: smooth;
}

body {
  /**
  Пригодится в большинстве ситуаций
  (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  min-height: 100%;
  /**
  Унифицированный интерлиньяж
  */
  line-height: 1.5;
}

/**
  Приводим к единому цвету svg-элементы
  */
svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff"), url("../fonts/Gilroy-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff"), url("../fonts/Gilroy-Medium.woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff"), url("../fonts/Gilroy-Bold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Extrabold.woff"), url("../fonts/Gilroy-Extrabold.woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
:root {
  /*colors*/
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #858585;
  --color-gray-light: #F7F7F7;
  --color-green: #146F60;
  --color-green-light: #0D947D;
  --color-red: #E55250;
  --color-red-dark: #9A180B;
  --color-yellow: #FFC34F;
  --color-pink: #FDAFBC;
  --color-gold: #D3BE7B;
  --color-broun: #956C5A;
  --color-purple: #A76CCA;
  --color-gray-dark: #615C57;
  --color-blue-light: #5FB0E0;
  --color-transparent: transparent;
  --shadow: 0px 1px 8px 0px #00000026;
  /*colors*/
  /*border*/
  --border: 1px solid #0000001A;
  --border-radius: 20px;
  --border-radius-small: 10px;
  --border-radius-large: 30px;
  /*border*/
  /*body*/
  --font-family-base: "Gilroy", serif;
  --container-width: 1170px;
  --container-padding-x: 25px;
  --section-padding-y: clamp(3rem, 1.195rem + 7.7vw, 8.125rem);
  /*body*/
  /*button*/
  --input-height: 46px;
  --button-height: 46px;
  --icon-button-height: 30px;
  --transition-duration: 0.3s;
  /*button*/
}

.container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
@media (max-width: 767px) {
  .container {
    padding-inline: 16px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col {
  width: 100%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

ul.regular {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 560px) {
  ul.regular {
    grid-template-columns: repeat(1, 1fr);
  }
}
ul.regular li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
ul.regular li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icons/list.svg) no-repeat center/cover;
}

.title {
  font-size: clamp(16px, 1.7094017094vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.25px;
}
body.lock {
  overflow: hidden;
}
body.modal-open .gallery__list {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

a,
button,
input,
textarea,
svg * {
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a, a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  line-height: 1.2;
  font-size: clamp(20px, 3.7606837607vw, 44px);
  font-weight: 700;
}

h2 {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(26px, 2.735042735vw, 32px);
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: clamp(20px, 2.0512820513vw, 24px);
  font-weight: 500;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

/* Анимация для движения вправо */
@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* Анимация для движения влево */
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: var(--button-height);
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-large);
  color: var(--color-white);
  background: var(--color-green);
}
@media (hover: hover) {
  .button:hover {
    background: var(--color-green-light);
  }
}
@media (hover: none) {
  .button:active {
    background: var(--color-green-light);
  }
}
.button--white {
  background: var(--color-white);
  border: 2px solid var(--color-green);
  color: var(--color-black);
  padding: 0 20px;
  line-height: 1.2;
  letter-spacing: 0.25px;
}
@media (hover: hover) {
  .button--white:hover {
    color: var(--color-white);
    background: var(--color-green);
  }
}
@media (hover: none) {
  .button--white:active {
    color: var(--color-white);
    background: var(--color-green);
  }
}

.icon {
  position: relative;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: var(--color-black);
}
@media (hover: hover) {
  .icon:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .icon:active {
    color: var(--color-green);
  }
}
.icon span {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14px;
  height: 14px;
  color: var(--color-white);
  background: var(--color-black);
  font-size: 9px;
  line-height: 1;
  border-radius: 50%;
}
.icon svg {
  width: 100%;
  height: 100%;
}

.burger {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  position: relative;
  z-index: 3;
}
@media (max-width: 1023px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.burger::before, .burger::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  left: 50%;
  translate: -50% 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger::before {
  top: 6px;
}
.burger::after {
  bottom: 6px;
}
.burger span {
  font-size: 0;
  width: 20px;
  height: 2px;
  background: var(--color-black);
}
.burger.burger--active::before, .burger.burger--active::after {
  width: 90%;
  top: 50%;
  bottom: auto;
  translate: -50% -50%;
}
.burger.burger--active::before {
  rotate: 45deg;
}
.burger.burger--active::after {
  rotate: -45deg;
}
.burger.burger--active span {
  opacity: 0;
}

.search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 560px) {
  .search {
    display: none;
  }
}
.search__open {
  position: relative;
}
.search__open::after {
  content: "×";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  font-size: 36px;
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
.search__open.search--close::after {
  opacity: 1;
}
.search .aws-container {
  position: absolute;
  right: 100%;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  background: var(--color-white);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
@media (max-width: 560px) {
  .search .aws-container {
    right: -14px;
    top: 110%;
    translate: 0 0%;
  }
}
.search .aws-container.search--active {
  opacity: 1;
  visibility: visible;
}
.search .aws-container .aws-search-form {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search .aws-container .aws-search-field {
  height: 38px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  width: 300px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 2px solid var(--color-black);
  border-radius: var(--border-radius-small);
}
.search .aws-container .aws-search-field:focus-visible {
  border-color: var(--color-green);
  -webkit-box-shadow: 0 0 5px var(--color-green);
          box-shadow: 0 0 5px var(--color-green);
}
.search .aws-container .aws-search-field::-webkit-input-placeholder {
  font-size: 1rem;
  color: var(--color-black);
}
.search .aws-container .aws-search-field::-moz-placeholder {
  font-size: 1rem;
  color: var(--color-black);
}
.search .aws-container .aws-search-field:-ms-input-placeholder {
  font-size: 1rem;
  color: var(--color-black);
}
.search .aws-container .aws-search-field::-ms-input-placeholder {
  font-size: 1rem;
  color: var(--color-black);
}
.search .aws-container .aws-search-field::placeholder {
  font-size: 1rem;
  color: var(--color-black);
}
.search .aws-container .aws-search-btn {
  background: var(--color-white);
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
}

input,
select,
textarea {
  outline: none;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-gray);
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-gray);
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--color-gray);
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--color-gray);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color-gray);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--color-green);
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  bottom: 15px !important;
}
.swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  border: 2px solid var(--color-green);
  background: var(--color-white);
}
.swiper-pagination-bullet-active {
  background: var(--color-green);
}

.swiper-button-next,
.swiper-button-prev {
  margin: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  z-index: 1;
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    border-radius: 50%;
    background: var(--color-white);
  }
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icons/slider.svg) no-repeat center;
}

.swiper-button-prev::after {
  rotate: 180deg;
}

.header {
  position: relative;
  border-bottom: var(--border);
  background: var(--color-white);
}
.header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  color: var(--color-white);
  background: var(--color-black);
}
.header__top .wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .header__top .wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__top .rating {
  color: var(--color-white);
}
@media (max-width: 767px) {
  .header__top .rating {
    display: none;
  }
}
.header__top .rating__star {
  color: var(--color-white);
}
.header__top a {
  margin-left: 160px;
  font-size: clamp(13px, 1.3675213675vw, 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header__top a {
    margin: 0;
  }
}
.header__bottom {
  padding-block: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .header__bottom {
    padding-block: 20px;
  }
}

.action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .action {
    gap: 15px;
  }
}

@media (hover: hover) {
  .logo:hover {
    scale: 1.1;
  }
}
@media (hover: none) {
  .logo:active {
    scale: 1.1;
  }
}
.logo img {
  max-width: 200px;
}
@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
  }
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .navigation {
    padding: 40px 24px;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--color-white);
  }
  .navigation.navigation--active {
    left: 0;
    opacity: 1;
  }
}
.navigation__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .navigation__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.navigation__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.navigation__list li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-black);
  /* Начальный цвет */
  mask: url(../images/icons/chevron.svg) no-repeat center;
  -webkit-mask: url(../images/icons/chevron.svg) no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  -webkit-transition: background-color var(--transition-duration);
  /* Плавный переход */
  -webkit-transition: var(--transition-duration);
  transition: var(--transition-duration);
}
@media (hover: hover) {
  .navigation__list li.menu-item-has-children:hover::after {
    background-color: var(--color-green);
    rotate: 180deg;
  }
}
@media (hover: none) {
  .navigation__list li.menu-item-has-children:active::after {
    background-color: var(--color-green);
    rotate: 180deg;
  }
}
.navigation__list li a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.navigation__list li a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  -webkit-transition-duration: var(--transition-duration);
          transition-duration: var(--transition-duration);
}
@media (hover: hover) {
  .navigation__list li a:hover {
    color: var(--color-green);
  }
  .navigation__list li a:hover::before {
    width: 100%;
  }
}
@media (hover: none) {
  .navigation__list li a:active {
    color: var(--color-green);
  }
  .navigation__list li a:active::before {
    width: 100%;
  }
}
.navigation__list .sub-menu {
  width: 100%;
  display: none;
  padding: 20px;
  position: absolute;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 30px;
  left: 0;
  top: 100%;
  z-index: 2;
  background: var(--color-gray-light);
  border-radius: var(--border-radius-small);
}
.navigation__list .sub-menu li a {
  padding: 10px 0;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
  width: 215px;
  height: 400px;
  background: url(../images/decor/hero1.svg) no-repeat center/contain;
}
@media (max-width: 1023px) {
  .hero::before {
    left: -25px;
    width: 100px;
    height: 200px;
  }
}
.hero .seen {
  padding: 30px 0;
}
.hero h1 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .hero h1 {
    margin-bottom: 15px;
  }
}
.hero__text {
  font-size: clamp(14px, 1.7094017094vw, 20px);
  font-weight: 400;
  line-height: 1.2;
}
.hero .rating {
  margin: 40px 0 20px;
}
@media (max-width: 767px) {
  .hero .rating {
    margin: 30px 0 20px;
  }
}
@media (max-width: 560px) {
  .hero .rating svg {
    width: 14px;
  }
}
.hero .wrapper {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: clamp(1.875rem, -2.641rem + 12.9vw, 6.875rem);
}
@media (max-width: 1023px) {
  .hero .wrapper {
    margin-top: clamp(1.875rem, -2.641rem + 12.9vw, 6.875rem);
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.hero .col {
  position: relative;
}
@media (max-width: 1023px) {
  .hero .col {
    max-width: none;
  }
}
.hero .col::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -70px;
  translate: 0% 0%;
  z-index: -1;
  width: 220px;
  height: 210px;
  background: url(../images/decor/hero2.svg) no-repeat center/contain;
}
@media (max-width: 1023px) {
  .hero .col::before {
    left: 0px;
    top: -70px;
    width: 110px;
    height: 160px;
  }
}
.hero .col::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0% -50%;
  z-index: -1;
  width: 178px;
  height: 238px;
  background: url(../images/decor/hero3.svg) no-repeat center/contain;
}
@media (max-width: 1023px) {
  .hero .col::after {
    left: auto;
    right: -25px;
    width: 110px;
    height: 160px;
  }
}
.hero .col:first-child {
  max-width: 500px;
}
@media (max-width: 1023px) {
  .hero .col:first-child {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1023px) {
  .hero .col:first-child::before, .hero .col:first-child::after {
    display: none;
  }
}
.hero .col:last-child::before, .hero .col:last-child::after {
  display: none;
}
@media (max-width: 1023px) {
  .hero .col:last-child::before, .hero .col:last-child::after {
    display: block;
  }
}
.hero .col img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero .col img {
    width: 60%;
  }
}
@media (max-width: 560px) {
  .hero .button {
    width: 100%;
  }
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.rating__star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-green);
}
.rating p {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  font-weight: 500;
  letter-spacing: 0.400000006px;
}
.rating p b {
  font-weight: 500;
  opacity: 0.8;
}
.rating p span {
  opacity: 0.2;
}
.rating span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.rating a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration-line: underline;
  text-underline-position: from-font;
  opacity: 0.6;
}
@media (hover: hover) {
  .rating a:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .rating a:active {
    color: var(--color-green);
  }
}

.seen__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media (max-width: 1023px) {
  .seen__list {
    gap: 0;
  }
}

.customer {
  padding: 60px 0;
  background: var(--color-gray-light);
  overflow: hidden;
}
@media (max-width: 767px) {
  .customer {
    padding: 30px 0 20px;
  }
}

.reported {
  position: relative;
  z-index: 1;
}
.reported::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  translate: 0 -50%;
  z-index: -1;
  width: 246px;
  height: 233px;
  background: url(../images/decor/customer.svg) no-repeat center/contain;
}
@media (max-width: 560px) {
  .reported::before {
    top: 80%;
  }
}
.reported__list {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .reported__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .reported__list {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.reported__list::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 36px);
  left: 100px;
  z-index: -1;
  width: 200px;
  height: 180px;
  background: url(../images/decor/reported1.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .reported__list::before {
    left: -10px;
    bottom: calc(100% - 56px);
  }
}
.reported__list::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  z-index: -1;
  width: 310px;
  height: 280px;
  background: url(../images/decor/reported2.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .reported__list::after {
    top: 0;
    right: auto;
    left: calc(100% - 150px);
  }
}
.reported__list li {
  padding: 22px 16px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
@media (max-width: 1023px) {
  .reported__list li {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .reported__list li {
    max-width: none;
    border-radius: 8px;
  }
}
.reported__list li .top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.reported__list li .top img {
  max-width: 70px;
}
.reported__list li p {
  font-size: 14px;
  line-height: 1.28;
}
.reported__description {
  margin-top: 30px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
@media (max-width: 1023px) {
  .reported__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reported__description .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  max-width: none;
}
.reported__description .col:first-child {
  max-width: 470px;
}
@media (max-width: 1023px) {
  .reported__description .col:first-child {
    max-width: none;
  }
}
.reported__description .slider {
  position: relative;
  width: 100%;
  background: var(--color-gray-light);
  border-radius: 14px;
}
.reported__description .slider .swiper {
  height: 460px;
}
@media (max-width: 560px) {
  .reported__description .slider .swiper {
    height: 300px;
  }
}
.reported__description .slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media (max-width: 560px) {
  .reported__description .slider .swiper-slide {
    padding: 20px 10px;
  }
}
.reported__description .slider .swiper-slide img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.reported__description .slider .swiper-button-prev {
  left: -15px;
}
.reported__description .slider .swiper-button-next {
  right: -15px;
}
.reported__description p {
  margin: 0;
  font-size: clamp(16px, 1.5384615385vw, 18px);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.25px;
}
.reported__description p.strong {
  font-weight: 600;
}
.reported__description .icons {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.reported__description .icons img {
  max-width: 70px;
}
@media (max-width: 560px) {
  .reported__description .icons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .reported__description .icons img {
    max-width: 60px;
  }
}

.product .slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .product .slider {
    padding: 0 16px;
  }
}
@media (max-width: 560px) {
  .product .slider {
    padding: 0;
  }
}
.product .slider .swiper {
  padding: 0 10px;
}
.product .slider .swiper-button-prev {
  left: 0px;
}
@media (max-width: 1023px) {
  .product .slider .swiper-button-prev {
    left: 50px;
  }
}
.product .slider .swiper-button-next {
  right: 0px;
}
@media (max-width: 1023px) {
  .product .slider .swiper-button-next {
    right: 50px;
  }
}
.product__list {
  padding: 40px 0 40px;
}
@media (max-width: 767px) {
  .product__list {
    padding: 30px 0;
  }
}
.product__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 17px;
  background: var(--color-white);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
@media (max-width: 767px) {
  .product__item {
    border-radius: 8px;
  }
}
.product__item h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.product__item .rating {
  margin-top: 30px;
}
.product__item .button {
  width: 100%;
  margin-top: 30px;
  text-transform: uppercase;
}
.product__goods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: absolute;
  top: 9px;
  right: 9px;
}
.product__goods span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  text-transform: uppercase;
}
.product__goods span.onsale {
  color: var(--color-white);
  background: var(--color-red);
}
.product__goods span.new {
  color: var(--color-white);
  background: var(--color-green);
}
.product__goods span.hit {
  background: var(--color-yellow);
}
.product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__img {
  max-width: 220px;
}
.product__price {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.product__price .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.product__price .price-old {
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: var(--border-radius);
  text-transform: uppercase;
}

.explore {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .explore {
    margin-top: 40px;
  }
}
.explore::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 25%;
  width: 246px;
  height: 200px;
  z-index: -1;
  background: url(../images/decor/explore.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .explore::before {
    rotate: -120deg;
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}
.explore .reels {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .explore .reels {
    padding: 20px 0;
  }
}
@media (max-width: 560px) {
  .explore .reels {
    padding: 10px 0 20px 16px;
  }
}
.explore .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.explore .swiper-slide.swiper-slide-active .buttons .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.explore .swiper-slide img, .explore .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.explore .swiper-slide .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.explore .swiper-slide .buttons .icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .explore .swiper-slide .buttons .icon:hover {
    scale: 1.1;
  }
}
@media (hover: none) {
  .explore .swiper-slide .buttons .icon:active {
    scale: 1.1;
  }
}
.explore .swiper-slide .buttons .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0;
}
.explore .swiper-slide .buttons .icon img.sound-on, .explore .swiper-slide .buttons .icon img.play {
  display: none;
}
@media (max-width: 560px) {
  .explore .swiper-button-next,
  .explore .swiper-button-prev {
    display: none;
  }
}
.explore .swiper-button-next {
  right: 20%;
}
.explore .swiper-button-prev {
  left: 20%;
}
.maps__list {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1023px) {
  .maps__list {
    gap: 30px;
    padding: 20px 0;
  }
}
.maps__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .maps__list li {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .maps__list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.maps__list li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .maps__list li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .maps__list li .col {
    max-width: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.maps__list li img {
  width: 100%;
  border-radius: 15px;
}
.maps__list li h3 {
  margin-bottom: 25px;
  font-size: clamp(24px, 2.735042735vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25px;
  max-width: 420px;
}
@media (max-width: 767px) {
  .maps__list li h3 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.maps__list li p {
  font-size: 15px;
  letter-spacing: 0.25px;
}
@media (max-width: 767px) {
  .maps__list li p {
    text-align: center;
  }
}

.size img {
  margin: 60px 0;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .size img {
    margin: 30px 0;
    border-radius: 8px;
  }
}

.gallery {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 30px;
  }
}
.gallery__slider {
  padding: 30px 0;
}
.gallery__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (hover: hover) {
  .gallery__container:hover.to-right .gallery__list, .gallery__container:hover.to-left .gallery__list {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}
@media (hover: none) {
  .gallery__container:active.to-right .gallery__list, .gallery__container:active.to-left .gallery__list {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}
.gallery__container.to-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.gallery__container.to-right .gallery__list {
  -webkit-animation: scroll-right 30s linear infinite;
          animation: scroll-right 30s linear infinite;
}
.gallery__container.to-left .gallery__list {
  -webkit-animation: scroll-left 30s linear infinite;
          animation: scroll-left 30s linear infinite;
}
.gallery__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery__list > li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 560px) {
  .gallery__list > li {
    width: 50%;
  }
}
.gallery__list > li img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
@media (max-width: 560px) {
  .gallery__list > li img {
    height: 150px;
  }
}

.modal {
  display: none;
  /* Скрыть по умолчанию */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  margin: auto;
  display: block;
  width: 90%;
}
.modal .close {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 560px) {
  .modal .close {
    right: 20px;
  }
}

.about {
  overflow: hidden;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 20px 0;
  }
}
.about__card {
  position: relative;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: 20px;
  background: var(--color-white);
}
@media (max-width: 1023px) {
  .about__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .about__card {
    gap: 20px;
  }
}
.about__card::before {
  content: "";
  position: absolute;
  left: -110px;
  top: 50%;
  translate: 0% -50%;
  z-index: -1;
  width: 210px;
  height: 220px;
  background: url(../images/decor/about1.svg) no-repeat center/contain;
}
@media (max-width: 1023px) {
  .about__card::before {
    top: 90%;
  }
}
.about__card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50px;
  z-index: -1;
  width: 205px;
  height: 220px;
  background: url(../images/decor/about2.svg) no-repeat center/contain;
}
@media (max-width: 1023px) {
  .about__card .col {
    max-width: none;
  }
}
.about__card h2 {
  text-align: left;
  margin: 0 0 24px 0;
}
@media (max-width: 767px) {
  .about__card h2 {
    margin: 0 10px 0 0;
  }
}
.about__card img {
  width: 100%;
  border-radius: 14px;
}
@media (max-width: 1023px) {
  .about__card img {
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about__card img {
    max-height: 300px;
  }
}
.about__card img.signature {
  margin: 10px 0 0;
  max-width: 180px;
}

.reviews {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .reviews {
    margin-top: 30px;
  }
}
.reviews__wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1023px) {
  .reviews__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .reviews__wrap {
    margin-top: 20px;
  }
}
.reviews__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reviews__list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.reviews__list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background: var(--color-gray-light);
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .reviews__list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 8px;
  }
}
.reviews__product {
  max-width: 170px;
}
@media (max-width: 767px) {
  .reviews__product {
    max-width: none;
  }
}
.reviews__info {
  position: relative;
  width: 100%;
}
.reviews__info .author {
  display: block;
  max-width: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.reviews__info .date {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: clamp(12px, 1.1965811966vw, 14px);
  line-height: 1.2;
  letter-spacing: 0.25px;
}
.reviews__info h4 {
  margin: 30px 0 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .reviews__info h4 {
    margin: 20px 0 10px;
  }
}
.reviews__info p {
  font-size: 14px;
}
.reviews__images {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.reviews__images img {
  max-width: 80px;
}
.reviews__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .reviews__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (hover: hover) {
  .reviews__link:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .reviews__link:active {
    color: var(--color-green);
  }
}
.reviews__link img {
  max-width: 170px;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .reviews__link img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 560px) {
  .reviews__link img {
    width: 70px;
    height: 70px;
  }
}
.reviews__link h5 {
  font-size: 14px;
  font-size: clamp(12px, 1.1965811966vw, 14px);
  font-weight: 700;
  line-height: 1.2 0.93px;
  text-align: center;
}
@media (max-width: 767px) {
  .reviews__link h5 {
    text-align: left;
  }
}
.reviews__stats {
  width: 260px;
  background: var(--color-gray-light);
  padding: 30px 35px;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .reviews__stats {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews__stats {
    padding: 20px;
    border-radius: 8px;
  }
}
.reviews__stats img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__stats h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.25px;
}
.reviews__stats .total {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.25px;
}
.reviews__stats a {
  display: block;
}
.reviews__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.reviews__summary .count {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
}
.reviews__rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.reviews__rating .mark {
  width: 27px;
  height: 8px;
  background: rgba(16, 16, 16, 0.1019607843);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.reviews__rating .mark .filled {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-green);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.reviews__grade {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.reviews__grade li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__grade li b {
  width: 70px;
  font-size: 12px;
  font-weight: 700;
}
.reviews__grade li .percent {
  text-align: right;
  width: 30px;
  font-size: 12px;
  line-height: 1;
}
.reviews__grade li .bar {
  position: relative;
  margin-right: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 8px;
  background: rgba(16, 16, 16, 0.1019607843);
  border-radius: 5px;
}
.reviews__grade li .bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 5px;
}
.reviews__grade li .bar .progress.excellent {
  background: var(--color-green);
}
.reviews__grade li .bar .progress.good {
  background: var(--color-yellow);
}
.reviews__grade li .bar .progress.bad {
  background: var(--color-red);
}

/* Filter and sort buttons */
.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: clamp(10px, 1.1965811966vw, 14px);
  line-height: 1;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .filters {
    gap: 8px;
  }
}
.filters .button {
  height: 48px;
  font-size: clamp(10px, 1.1965811966vw, 14px);
}
@media (max-width: 767px) {
  .filters .button {
    padding: 0 10px;
    height: 33px;
  }
}

/* Pagination */
.pagination {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .pagination {
    padding: 20px 0;
  }
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
}
.pagination .page-numbers.prev svg {
  rotate: 180deg;
}
.pagination .page-numbers.current {
  color: var(--color-green);
  font-weight: 700;
}
@media (hover: hover) {
  .pagination .page-numbers:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .pagination .page-numbers:active {
    color: var(--color-green);
  }
}

.faq__list {
  padding: 40px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .faq__list {
    padding: 20px 0 40px;
  }
}
.faq__item {
  padding: 28px;
  border-radius: 20px;
  background: var(--color-gray-light);
  overflow: hidden;
}
@media (max-width: 767px) {
  .faq__item {
    border-radius: 8px;
    padding: 20px;
  }
}
.faq__item.active .faq__question {
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .faq__item.active .faq__question {
    margin-bottom: 20px;
  }
}
.faq__item.active .faq__question::after {
  content: "−";
}
.faq__item.active .faq__answer {
  max-height: 200px;
}
.faq__question {
  font-size: clamp(14px, 1.7094017094vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .faq__question:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .faq__question:active {
    color: var(--color-green);
  }
}
.faq__question::after {
  content: "+";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq__answer {
  font-size: clamp(14px, 1.7094017094vw, 20px);
  line-height: 1.2;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.single {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .single {
    padding: 30px 0;
  }
}
.single .wrapper {
  gap: 30px;
}
@media (max-width: 1023px) {
  .single .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single .col {
  max-width: calc(50% - 15px);
}
@media (max-width: 1023px) {
  .single .col {
    max-width: none;
  }
}
.single .col:first-child {
  position: sticky;
  top: 0;
}
@media (max-width: 1023px) {
  .single .col:first-child {
    position: static;
  }
}
.single .col:last-child {
  padding: 28px 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}
@media (max-width: 767px) {
  .single .col:last-child {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}
.single .swipper-gallery {
  height: 540px;
  width: 100%;
}
@media (max-width: 767px) {
  .single .swipper-gallery {
    height: 400px;
  }
}
@media (max-width: 560px) {
  .single .swipper-gallery {
    height: 320px;
  }
  .single .swipper-gallery .swiper-button-next,
  .single .swipper-gallery .swiper-button-prev {
    display: none;
  }
}
.single .swipper-gallery .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-gray-light);
}
@media (max-width: 767px) {
  .single .swipper-gallery .swiper-slide {
    border-radius: 8px;
  }
}
.single .swiper-thumb {
  margin-top: 10px;
  height: 100px;
  width: 100%;
}
@media (max-width: 560px) {
  .single .swiper-thumb {
    height: 70px;
  }
}
.single .swiper-thumb .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.6;
  background: var(--color-gray-light);
  padding: 10px;
}
.single .swiper-thumb .swiper-slide-thumb-active {
  opacity: 1;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.single .swiper-thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.single h1 {
  font-size: clamp(24px, 2.735042735vw, 32px);
  margin-bottom: 10px;
}
.single .product__price {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .single .product__price {
    margin: 20px 0;
  }
}
.single .product__price .price-old {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
  color: var(--color-gray);
  background: none;
}
.single .product__price .onsale {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 8px;
  padding: 2px 8px;
}
.single .regular {
  padding: 20px 0;
  grid-template-columns: repeat(1, 1fr);
}
.single .size-selector {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.single .size-selector .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .size-selector .top span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.single .size-selector .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.single .size-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 13px 20px;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border: 2px solid var(--color-white);
}
@media (max-width: 560px) {
  .single .size-option {
    padding: 13px;
  }
}
.single .size-option.active {
  border-color: var(--color-green);
  background-color: var(--color-gray-light);
}
@media (hover: hover) {
  .single .size-option:hover {
    border-color: var(--color-green);
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
}
@media (hover: none) {
  .single .size-option:active {
    border-color: var(--color-green);
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
}
.single .size-option img {
  max-width: 42px;
  height: auto;
  margin-bottom: 10px;
}
.single .size-option input {
  display: none;
}
.single .size-option h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
}
.single .size-option p {
  font-size: clamp(10px, 1.0256410256vw, 12px);
  opacity: 0.8;
}
.single .color-selector {
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single .color-selector .color-label {
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: clamp(16px, 1.7094017094vw, 20px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.400000006px;
}
.single .color-selector > p {
  color: rgba(70, 69, 69, 0.8);
}
.single .color-selector .color-actions {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 560px) {
  .single .color-selector .color-actions {
    margin-top: 15px;
  }
}
.single .color-selector .color-actions .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single .color-selector .color-actions .icon.active svg {
  rotate: 90deg;
}
@media (hover: hover) {
  .single .color-selector .color-actions .icon:hover {
    color: var(--color-green);
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
  }
}
@media (hover: none) {
  .single .color-selector .color-actions .icon:active {
    color: var(--color-green);
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
  }
}
.single .color-selector .color-actions .icon svg {
  width: 17px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single .color-selector .color-options {
  max-height: 28px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.single .color-selector .color-options.show {
  max-height: none;
}
.single .color-selector .color-option {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s;
  transition: border-color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border-color 0.2s;
  transition: transform 0.2s, border-color 0.2s, -webkit-transform 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .single .color-selector .color-option:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (hover: none) {
  .single .color-selector .color-option:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.single .color-selector .color-option.active {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  border: 4px solid var(--color-green);
}
.single .personalization-selector {
  border-top: var(--border);
  padding-top: 25px;
  width: 100%;
}
.single .personalization-selector.active .top .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single .personalization-selector.active .personalization-style {
  display: block;
}
.single .personalization-selector .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single .personalization-selector .top .title {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media (hover: hover) {
  .single .personalization-selector .top .title:hover {
    color: var(--color-green);
  }
}
@media (hover: none) {
  .single .personalization-selector .top .title:active {
    color: var(--color-green);
  }
}
.single .personalization-selector .top .title span {
  color: var(--color-red-dark);
}
.single .personalization-selector .top .icon {
  display: none;
}
.single .personalization-selector .top .icon svg {
  width: 12px;
}
.single .personalization-selector .personalization-style {
  margin-top: 20px;
  display: none;
}
@media (max-width: 560px) {
  .single .personalization-selector .personalization-style {
    margin-top: 25px;
  }
}
.single .personalization-selector .slider {
  position: relative;
  padding: 10px 0 25px;
}
@media (max-width: 767px) {
  .single .personalization-selector .slider {
    padding: 10px 0 20px;
  }
}
.single .personalization-selector .slider .swiper-button-prev {
  left: -12px;
}
.single .personalization-selector .slider .swiper-button-prev.swiper-button-disabled {
  display: none;
}
.single .personalization-selector .slider .swiper-button-next {
  right: -12px;
}
.single .personalization-selector .slider .swiper-button-next.swiper-button-disabled {
  display: none;
}
.single .personalization-selector .instructions {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  margin: 10px 0 15px;
  position: relative;
  padding-left: 20px;
  line-height: 1;
}
@media (max-width: 560px) {
  .single .personalization-selector .instructions {
    margin: 10px 0 15px;
    padding: 0;
  }
}
.single .personalization-selector .instructions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  min-width: 13px;
  height: 13px;
  background: url(../images/icons/info.svg) no-repeat center/cover;
}
@media (max-width: 560px) {
  .single .personalization-selector .instructions::before {
    display: none;
  }
}
.single .personalization-selector input {
  width: 100%;
  height: 46px;
  border: var(--border);
  border-radius: 8px;
  padding: 0 20px;
}
.single .personalization-selector input::-webkit-input-placeholder {
  text-align: center;
}
.single .personalization-selector input::-moz-placeholder {
  text-align: center;
}
.single .personalization-selector input:-ms-input-placeholder {
  text-align: center;
}
.single .personalization-selector input::-ms-input-placeholder {
  text-align: center;
}
.single .personalization-selector input::placeholder {
  text-align: center;
}
.single .personalization-selector input:focus-visible {
  border-color: var(--color-green);
}
.single .personalization-selector .button {
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .single .personalization-selector .button {
    margin-top: 15px;
  }
}
.single .personalization-selector .personalization-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid var(--color-white);
  overflow: hidden;
}
.single .personalization-selector .personalization-option.active {
  border-color: var(--color-green);
}
@media (hover: hover) {
  .single .personalization-selector .personalization-option:hover {
    border-color: var(--color-green);
  }
}
@media (hover: none) {
  .single .personalization-selector .personalization-option:active {
    border-color: var(--color-green);
  }
}
.single .personalization-selector .personalization-option img {
  width: 100%;
  height: 164px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .personalization-selector .personalization-option input {
  display: none;
}
.single .payment__list {
  margin-top: 20px;
}
@media (max-width: 560px) {
  .single .payment__list {
    margin-top: 25px;
  }
}
.single .payment__list img {
  max-height: 24px;
}
.single .desc__list {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (max-width: 560px) {
  .single .desc__list {
    gap: 10px;
  }
}
.single .desc__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.footer .wrapper {
  gap: 20px;
}
@media (max-width: 1023px) {
  .footer .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer__logo {
  display: block;
  margin-bottom: 26px;
}
@media (max-width: 560px) {
  .footer__logo {
    margin-bottom: 15px;
  }
}
.footer__col {
  max-width: 380px;
}
@media (max-width: 1023px) {
  .footer__col {
    width: 100%;
    max-width: none;
  }
  .footer__col:first-child {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .footer__col:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__col:last-child {
    display: contents;
  }
}
.footer__text {
  font-size: 14px;
  letter-spacing: 0.25px;
}
@media (max-width: 560px) {
  .footer__text {
    text-align: center;
  }
}
.footer h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.footer .news__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 220px;
}
@media (max-width: 1023px) {
  .footer .news__form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer .news__form {
    margin-top: 20px;
  }
}
.footer .news__form input {
  width: 100%;
  height: 54px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.2px;
  border-radius: 100px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  text-align: center;
  border: var(--border);
}
.footer .news__form input:focus-visible {
  border-color: var(--color-green);
  -webkit-box-shadow: 0 0 5px var(--color-green);
          box-shadow: 0 0 5px var(--color-green);
}
.footer .news__form .button {
  width: 100%;
  height: 54px;
}
@media (max-width: 1023px) {
  .footer__nav {
    padding: 30px 0;
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.footer__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0px;
}
.footer__nav--list li {
  width: 50%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.copy {
  margin-top: 40px;
  padding: 40px 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  border-top: var(--border);
  opacity: 0.6;
}
@media (max-width: 1023px) {
  .copy {
    margin-top: 30px;
    padding: 30px 0;
  }
}

.social {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 1023px) {
  .social {
    margin-top: 15px;
    gap: 10px;
  }
}
.social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
}
@media (max-width: 767px) {
  .social a {
    width: 28px;
    height: 28px;
  }
}
@media (hover: hover) {
  .social a:hover path:first-child {
    fill: var(--color-green);
  }
}
@media (hover: none) {
  .social a:active path:first-child {
    fill: var(--color-green);
  }
}
.social a svg {
  width: 100%;
  height: 100%;
}
.social a svg path:last-child {
  fill: var(--color-white);
}

.payment__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
}
@media (max-width: 1023px) {
  .payment__list {
    margin-top: 0px;
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.payment__list img {
  max-height: 18px;
}/*# sourceMappingURL=style.css.map */