@font-face {
  font-family: "Gilroy";
  src: url("https://pinplacemaps.com/cdn/shop/t/2/assets/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://pinplacemaps.com/cdn/shop/t/2/assets/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://pinplacemaps.com/cdn/shop/t/2/assets/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("https://pinplacemaps.com/cdn/shop/t/2/assets/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --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-gold: #d3be7b;
  --shadow: 0px 1px 8px 0px #00000026;
  --border: 1px solid #0000001a;
  --border-radius: 20px;
  --border-radius-small: 10px;
  --border-radius-large: 30px;
  --font-family-base: "Gilroy", sans-serif;
  --container-width: 1170px;
  --container-padding-x: 25px;
  --button-height: 46px;
  --transition-duration: 0.3s;
}

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

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  max-width: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
fieldset {
  margin: 0;
  padding: 0;
}

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

h2 {
  max-width: min(700px, 100%);
  margin: 0 auto;
  font-size: clamp(26px, 2.735042735vw, 32px);
  font-weight: 700;
  text-align: center;
  padding-inline: 16px;
  box-sizing: border-box;
}

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

h5 {
  font-size: 16px;
}

.col {
  width: 100%;
  max-width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .col {
    max-width: 100%;
  }
}

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

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

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

ul {
  list-style: none;
}

fieldset {
  border: 0;
}

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

.container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  min-width: 0;
}

@media (max-width: 767px) {
  .container {
    padding-inline: 16px;
  }
}

.wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

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

button.title {
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  cursor: pointer;
  font-size: clamp(16px, 1.7094017094vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.button {
  padding: 0 60px;
  background: var(--color-green);
  border: none;
  cursor: pointer;
  height: var(--button-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-large);
  color: var(--color-white) !important;
  font-family: inherit;
  font-size: 16px;
}

.button:hover {
  background: var(--color-green-light);
}

.icon {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: var(--color-black);
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon span {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: flex;
  justify-content: 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%;
}

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

.rating__star {
  display: flex;
  align-items: center;
  color: var(--color-green);
}

.rating p {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.rating p b {
  font-weight: 500;
  opacity: 0.8;
}

.rating p span {
  opacity: 0.2;
}

/* Promo bar */
.promo-bar {
  background: var(--color-green);
  color: var(--color-white);
  padding: 6px 0 7px;
}

.promo-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.promo-bar__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.promo-bar__title strong {
  font-weight: 800;
}

.promo-bar__countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.promo-bar__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 32px;
}

.promo-bar__value {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.promo-bar__sep {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.75;
  padding-top: 1px;
}

.promo-bar__label {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.01em;
  line-height: 1;
}

@media (min-width: 768px) {
  .promo-bar {
    padding: 7px 0 8px;
  }

  .promo-bar__inner {
    flex-direction: row;
    gap: 20px;
  }

  .promo-bar__title {
    font-size: 13px;
    text-align: left;
  }

  .promo-bar__value {
    font-size: 20px;
  }

  .promo-bar__unit {
    min-width: 38px;
  }

  .promo-bar__sep {
    font-size: 16px;
    padding-top: 1px;
  }
}

/* Header */
.header {
  position: relative;
  border-bottom: var(--border);
  background: var(--color-white);
  z-index: 20;
}

.header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 15;
}

.header__top {
  display: none;
}

.header__top .wrapper {
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 767px) {
  .header__top .wrapper {
    justify-content: center;
  }
}

.header__top .rating {
  color: var(--color-white);
}

.header__top .rating p {
  color: var(--color-white);
  margin: 0;
}

@media (max-width: 767px) {
  .header__top .rating {
    display: none;
  }
}

.header__top .main-text {
  margin-left: 160px;
  font-size: clamp(13px, 1.3675213675vw, 16px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .header__top .main-text {
    margin: 0;
  }
}

.header__bottom {
  padding-block: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 767px) {
  .header__bottom {
    padding-block: 20px;
  }
}

.logo img {
  max-width: 200px;
}

@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
  }
}

@media (max-width: 1023px) {
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

@media (max-width: 767px) {
  .action {
    gap: 15px;
  }
}

.search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 560px) {
  .search {
    display: none;
  }
}

.search .aws-container {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 5;
  width: 260px;
}

.search .aws-container.search--active {
  display: block;
}

.search .aws-search-form {
  display: flex;
  background: var(--color-white);
  border: var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.search .aws-search-field {
  flex: 1;
  border: 0;
  height: 44px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
}

.search .aws-search-btn {
  width: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  aspect-ratio: 1;
  display: none;
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .burger {
    display: flex;
  }
}

.burger::before,
.burger::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
  position: absolute;
  left: 50%;
  translate: -50% 0;
  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;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .navigation {
    display: none;
  }
}

.navigation__list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1023px) {
  .navigation__list {
    flex-direction: column;
    align-items: flex-start;
  }
}

.navigation__list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-item-has-children {
  position: relative;
}

.navigation__list li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  min-width: 16px;
  height: 16px;
  background-color: var(--color-black);
  mask: url("../assets/chevron.svg") no-repeat center;
  -webkit-mask: url("../assets/chevron.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.navigation__list li .link {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navigation__list li .link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition-duration: var(--transition-duration);
}

.navigation__list li .link:hover {
  color: var(--color-green);
}

.navigation__list li .link:hover::before {
  width: 100%;
}

.navigation__list .sub-menu {
  display: none;
  padding: 20px;
  position: absolute;
  flex-direction: column;
  white-space: nowrap;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: 2;
  background: var(--color-gray-light);
  border-radius: var(--border-radius-small);
}

@media (max-width: 1023px) {
  .navigation__list .sub-menu {
    position: static;
    transform: none;
    width: 100%;
    padding: 10px 0 0 12px;
    background: transparent;
  }
}

.navigation__list .sub-menu li a {
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--color-gray-light);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, visibility 0.28s;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.mobile-menu__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 10px;
  flex-shrink: 0;
  height: 52px;
  padding: 0 16px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
}

.mobile-menu__logo {
  justify-self: center;
  display: flex;
  align-items: center;
}

.mobile-menu__logo img {
  height: 18px;
  width: auto;
  max-width: 120px;
}

.mobile-menu__cta {
  justify-self: end;
  flex-shrink: 0;
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 999px;
  white-space: nowrap;
}

.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 32px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav__item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: normal;
}

a.mobile-nav__row {
  text-decoration: none;
}

.mobile-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--color-white);
  color: var(--color-green);
}

.mobile-nav__icon:has(img) {
  padding: 0;
  border: none;
  background: transparent;
}

.mobile-nav__icon img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-nav__icon--soft {
  background: #e7f3ef;
  border-color: transparent;
}

.mobile-nav__copy {
  min-width: 0;
  flex: 1;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav__title {
  display: block;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.mobile-nav__text {
  display: block;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  white-space: normal;
}

.mobile-nav__chevron {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-right: 1.5px solid rgba(0, 0, 0, 0.45);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mobile-nav__item.is-open .mobile-nav__chevron {
  margin-top: 10px;
  transform: rotate(225deg);
}

.mobile-nav__sub {
  display: none;
  flex-direction: column;
  padding: 0 0 16px 72px;
}

.mobile-nav__item.is-open .mobile-nav__sub {
  display: flex;
}

.mobile-nav__sub a {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(0, 0, 0, 0.7);
}

.mobile-nav__sub a:hover {
  color: var(--color-green);
}

.mobile-features {
  display: flex;
  gap: 12px;
  padding: 32px 0 8px;
}

.mobile-feature {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mobile-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--color-white);
  color: var(--color-green);
}

.mobile-feature span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

/* Product hero */
.single {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .single {
    padding: 0 0 30px;
  }
}

.single .wrapper {
  gap: 30px;
}

@media (max-width: 1023px) {
  .single .wrapper {
    flex-direction: column;
  }
}

.single .col {
  width: 100%;
  max-width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1023px) {
  .single .col {
    max-width: none;
  }
}

.single .col:first-child {
  position: sticky;
  top: 20px;
}

@media (max-width: 1023px) {
  .single .col:first-child {
    position: static;
  }
}

.single .col:last-child {
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

@media (max-width: 767px) {
  .single .col:last-child {
    box-shadow: none;
    padding: 0;
  }
}

.single .swipper-gallery {
  height: 540px;
  width: 100%;
  position: relative;
}

.product-gallery__badges {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: max-content;
  max-width: calc(100% - 16px);
  pointer-events: none;
}

.product-gallery__badge {
  display: inline-block;
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(248, 248, 246, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #2a2a2a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  .product-gallery__badges {
    bottom: 10px;
    gap: 4px;
    max-width: calc(100% - 24px);
  }

  .product-gallery__badge {
    font-size: 9.9px;
    padding: 3px 6px;
  }
}

@media (max-width: 1023px) {
  .single .swipper-gallery {
    margin-inline: -25px;
    width: calc(100% + 50px) !important;
  }
}

@media (max-width: 767px) {
  .single .swipper-gallery {
    width: 100vw !important;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: auto;
  }

  .single .swipper-gallery .swiper-button-prev {
    left: 12px;
  }

  .single .swipper-gallery .swiper-button-next {
    right: 12px;
  }
}

.single .swipper-gallery .swiper-slide {
  display: flex;
  justify-content: 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: 0;
    aspect-ratio: 1 / 1;
  }
}

.single .swipper-gallery .swiper-slide a,
.single .swipper-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  display: block !important;
  position: absolute;
  margin: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 2;
  cursor: pointer;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../assets/slider.svg") no-repeat center;
  position: absolute;
  inset: 0;
}

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

.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: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  background: var(--color-gray-light);
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  height: auto;
}

.single .swiper-thumb .swiper-slide-thumb-active {
  opacity: 1;
  box-shadow: var(--shadow);
}

.single .swiper-thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.single h1 {
  font-size: clamp(24px, 2.735042735vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.single .rating {
  margin-bottom: 4px;
}

.single .rating p {
  color: var(--color-black);
}

.single .rating p b {
  opacity: 1;
  color: var(--color-black);
}

.single .product__price {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product__price .price__container,
.product__price .price__sale {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price__regular {
  display: none;
}

.product__price .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.single .product__price .price-old {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
  color: var(--color-gray);
  background: none;
  padding: 0;
}

.single .product__price .price-old s {
  text-decoration: line-through;
}

.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 .col:last-child > p {
  margin-top: 4px;
}

ul.regular {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
}

ul.regular li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

ul.regular li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("../assets/list.svg") no-repeat center / cover;
}

.size-selector {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.size-selector .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.size-selector .top span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-size-guide {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-size-guide img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.product-form__input input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.size-selector .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  padding-top: 12px;
}

.size-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 13px 20px;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid var(--color-white);
  background: var(--color-white);
  min-width: 0;
}

.size-option__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

input:checked + .size-option {
  border-color: var(--color-green);
  background-color: var(--color-gray-light);
}

.size-option:hover {
  border-color: var(--color-green);
}

.size-option img {
  max-width: 42px;
  height: auto;
  margin-bottom: 10px;
}

.size-option h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
}

.size-option p {
  font-size: clamp(10px, 1.0256410256vw, 12px);
  opacity: 0.8;
}

@media (max-width: 560px) {
  .size-selector .bottom {
    gap: 6px;
    padding-top: 10px;
  }

  .size-option {
    padding: 12px 4px;
  }

  .size-option__badge {
    top: -9px;
    padding: 3px 7px;
    font-size: 8px;
  }

  .size-option img {
    max-width: 34px;
    margin-bottom: 8px;
  }

  .size-option h3 {
    font-size: 13.8px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .size-option p {
    font-size: 11.5px;
    white-space: nowrap;
  }
}

.product-form-spacer {
  display: none;
}

@media (max-width: 767px) {
  .product-form-spacer {
    display: block;
    width: 100%;
    height: 32px;
    flex-shrink: 0;
    background: var(--color-white);
  }

  .color-selector {
    margin-top: 0;
  }
}

.color-selector {
  width: 100%;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.color-selector .color-label,
.frame-selector .color-label {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(16px, 1.7094017094vw, 20px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.4px;
}

.color-selector .color-label b,
.frame-selector .color-label b {
  font-weight: 700;
}

.color-label__boxes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.color-label__box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.color-selector > p {
  color: rgba(70, 69, 69, 0.8);
}

.color-box-rows {
  margin-top: 15px;
}

.color-palette-stack {
  flex: 1;
  min-width: 0;
}

.color-box-row--first + .color-box-row--second {
  margin-top: 14px;
}

.color-box-row__label {
  margin: 0 0 8px;
  color: rgba(70, 69, 69, 0.8);
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.2;
}

.color-selector .color-actions {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-top: 0;
}

.color-selector .color-options--box2 {
  max-height: calc(var(--color-pin-options-padding) + var(--color-pin-row-height));
}

.color-box-rows.is-expanded .color-options--box2.show {
  max-height: calc(
    var(--color-pin-options-padding) + (var(--color-pin-row-height) * 2) + var(--color-pin-row-gap)
  );
}

.color-selector .color-options {
  --color-pin-row-height: 30px;
  --color-pin-row-gap: 10px;
  --color-pin-options-padding: 6px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  gap: var(--color-pin-row-gap) 20px;
  max-height: calc(var(--color-pin-options-padding) + var(--color-pin-row-height));
  overflow: hidden;
  padding: 4px 0 2px;
  transition: max-height 0.28s ease;
}

.color-selector .color-options.show {
  max-height: calc(
    var(--color-pin-options-padding) + (var(--color-pin-row-height) * 2) + var(--color-pin-row-gap)
  );
}

.color-selector .color-options:not(.show).is-collapsed::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--color-white) 78%);
  pointer-events: none;
}

.color-selector .color-options > div {
  position: relative;
  width: 18px;
  height: 30px;
  flex-shrink: 0;
}

.color-selector .color-option {
  position: relative;
  display: block;
  width: 18px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.2s ease;
}

.color-selector .color-option::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 12px;
  height: 4px;
  transform: translateX(-58%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  filter: blur(1px);
  pointer-events: none;
}

.color-selector .color-option::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 1.5px;
  height: 13px;
  transform: translateX(-50%) rotate(-22deg);
  transform-origin: top center;
  border-radius: 1px;
  background: linear-gradient(90deg, #bdbdbd 0%, #666 42%, #a8a8a8 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 0;
}

.color-selector .color-option:hover {
  transform: translateY(-1px) scale(1.06);
}

.color-selector .color-option .swatch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--swatch--background);
  box-shadow:
    inset -2px -3px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.42),
    0 3px 5px rgba(0, 0, 0, 0.14);
}

.color-selector .color-option .swatch--mix,
.color-selector .color-option .swatch--metallic {
  background: var(--swatch--background);
}

.color-selector .color-option[title="White"] .swatch {
  box-shadow:
    inset -2px -3px 5px rgba(0, 0, 0, 0.08),
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 3px 5px rgba(0, 0, 0, 0.12);
}

.color-selector .color-option--preview {
  width: 14px;
  height: 24px;
  flex-shrink: 0;
}

.color-selector .color-option--preview::before {
  width: 10px;
  height: 3px;
}

.color-selector .color-option--preview::after {
  top: 10px;
  height: 10px;
}

.color-selector .color-option--preview .swatch {
  width: 13px;
  height: 13px;
}

.color-selector input:checked + .color-option .swatch {
  box-shadow:
    0 0 0 2px var(--color-green),
    inset -2px -3px 5px rgba(0, 0, 0, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.42),
    0 3px 6px rgba(0, 0, 0, 0.16);
}

.color-selector input:checked + .color-option[title="White"] .swatch {
  box-shadow:
    0 0 0 2px var(--color-green),
    inset -2px -3px 5px rgba(0, 0, 0, 0.08),
    inset 2px 2px 4px rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 3px 6px rgba(0, 0, 0, 0.14);
}

.color-more {
  position: relative;
  display: none;
  flex-shrink: 0;
  align-items: flex-end;
  justify-content: center;
  width: auto;
  height: 30px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-green);
  cursor: pointer;
}

.color-more.is-visible {
  display: flex;
}

.color-more__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 0;
  border-radius: 50%;
  background: var(--color-gray-light);
  box-shadow: 0 0 0 1px rgba(20, 111, 96, 0.18);
  z-index: 1;
}

.color-more__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  opacity: 0;
  animation: color-more-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

.color-more__btn svg {
  width: 12px;
  height: 12px;
  animation: color-more-nudge 1.6s ease-in-out infinite;
  transition: transform 0.28s ease, animation 0.2s;
}

.color-more.active .color-more__pulse {
  display: none;
}

.color-more.active .color-more__btn {
  background: #e7f3ef;
  box-shadow: 0 0 0 1px rgba(20, 111, 96, 0.28);
}

.color-more.active .color-more__btn svg {
  animation: none;
  transform: rotate(90deg);
}

.color-more:hover .color-more__btn {
  background: #e7f3ef;
  color: var(--color-green);
}

@keyframes color-more-pulse {
  0% {
    transform: scale(0.82);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes color-more-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .color-more__pulse,
  .color-more__btn svg {
    animation: none;
  }
}

.personalization-selector {
  border-top: var(--border);
  padding-top: 25px;
  width: 100%;
}

.personalization-selector .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.personalization-selector .top .title {
  gap: 7px;
}

.personalization-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-gray-light);
  box-shadow: 0 0 0 1px rgba(20, 111, 96, 0.18);
}

.personalization-plus__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  opacity: 0;
  animation: color-more-pulse 1.8s ease-out infinite;
  pointer-events: none;
}

.personalization-plus svg {
  width: 12px;
  height: 12px;
  color: #464545;
  animation: personalization-plus-pulse 1.6s ease-in-out infinite;
  transition: color 0.28s ease, transform 0.28s ease, animation 0.2s;
}

.personalization-selector.active .personalization-plus__pulse {
  display: none;
}

.personalization-selector.active .personalization-plus {
  background: #e7f3ef;
  box-shadow: 0 0 0 1px rgba(20, 111, 96, 0.28);
}

.personalization-selector.active .personalization-plus svg {
  animation: none;
}

.personalization-selector .top .title:hover {
  color: var(--color-green);
}

.personalization-selector .top .title:hover .personalization-plus {
  background: #e7f3ef;
}

.personalization-selector .top .title:hover .personalization-plus svg {
  color: var(--color-green);
}

@keyframes personalization-plus-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .personalization-plus__pulse,
  .personalization-plus svg {
    animation: none;
  }
}

.product-extra-price,
.personalization-selector .top .title p:last-child {
  color: var(--color-red-dark);
  font-size: clamp(16px, 1.7094017094vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}

.personalization-selector .top .icon {
  display: none;
}

.personalization-selector.active .top .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21.4px;
  height: 21.4px;
}

.personalization-selector .personalization-style {
  margin-top: 20px;
  display: none;
}

.personalization-selector.active .personalization-style {
  display: block;
}

.personalization-selector .slider {
  position: relative;
  padding: 10px 0 25px;
}

.personalization-selector .slider .swiper-button-prev {
  left: -12px;
}

.personalization-selector .slider .swiper-button-next {
  right: -12px;
}

.personalization-selector .slider .swiper-button-prev.swiper-button-disabled,
.personalization-selector .slider .swiper-button-next.swiper-button-disabled {
  display: none;
}

.personalization-selector .swiper-slide {
  height: auto;
}

.personalization-option {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  cursor: pointer;
  border: 2px solid var(--color-white);
  overflow: hidden;
  transition: border-color 0.3s ease;
  background: #f7f5f1;
}

.personalization-option.active,
.personalization-option:has(input:checked) {
  border-color: var(--color-green);
}

.personalization-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.personalization-option input {
  display: none;
}

.personalization-selector .instructions {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  margin: 10px 0 15px;
  position: relative;
  padding-left: 20px;
  line-height: 1.3;
}

.personalization-selector .instructions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  min-width: 13px;
  height: 13px;
  background: url("../assets/info.svg") no-repeat center / cover;
}

@media (max-width: 560px) {
  .personalization-selector .instructions {
    padding: 0;
  }

  .personalization-selector .instructions::before {
    display: none;
  }
}

.personalization-selector input[type="text"] {
  width: 100%;
  height: 46px;
  border: var(--border);
  border-radius: 8px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 16px;
}

.personalization-selector input[type="text"]::placeholder {
  text-align: center;
}

.frame-selector {
  width: 100%;
  margin: 0;
  padding: 20px 0;
  border: none;
  border-top: var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame-selector__label-row {
  flex-wrap: wrap;
}

.frame-selector__label-row .product-extra-price {
  letter-spacing: 0;
}

.frame-selector__options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-frame {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: #f2f2f2;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-frame.is-active {
  border-color: var(--color-green);
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.personalization-selector input[type="text"]:focus-visible {
  outline: none;
  border-color: var(--color-green);
}

.add-to-cart,
.product-form,
.product-form__buttons {
  width: 100%;
}

.product-visitor-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.3;
  text-align: center;
}

.product-visitor-count strong {
  font-weight: 700;
  color: var(--color-black);
}

.product-visitor-count__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.single .button {
  width: 100%;
  margin-top: 10px;
}

.product-form__submit-total {
  text-transform: none;
  letter-spacing: 0;
}

.sticky-add-to-cart {
  display: none;
}

@media (max-width: 767px) {
  .sticky-add-to-cart {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .sticky-add-to-cart.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.lock .sticky-add-to-cart {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }

  .sticky-add-to-cart__button.button {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .single .button {
    margin-top: 15px;
  }
}

.single .payment__list {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.single .payment__list img {
  max-height: 24px;
  width: auto;
}

.desc__list {
  font-size: clamp(14px, 1.3675213675vw, 16px);
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 560px) {
  .desc__list {
    gap: 10px;
  }
}

.desc__list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desc__list img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background: #fff;
  max-width: 900px;
  width: 90%;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  line-height: 1.45;
  font-size: 18px;
  overflow-y: auto;
  max-height: 85vh;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  padding: 0;
  color: var(--color-green-light);
  font-size: 28px;
  line-height: 1;
}

.popup-content h2 {
  text-align: left;
  margin-bottom: 20px;
  max-width: 100%;
  font-size: 28px;
}

.popup-content p {
  margin-bottom: 12px;
}

.size-sheet {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  visibility: hidden;
}

.size-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.size-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.size-sheet.is-open .size-sheet__backdrop {
  opacity: 1;
}

.size-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
  background: var(--color-white);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.size-sheet.is-open .size-sheet__panel {
  transform: translateY(0);
}

.size-sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.size-sheet__title {
  margin: 0;
  padding: 0;
  max-width: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.size-sheet__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.size-sheet__close svg {
  width: 18px;
  height: 18px;
}

.size-sheet__body {
  overflow-y: auto;
  padding: 16px 20px 28px;
  -webkit-overflow-scrolling: touch;
}

.size-sheet__legend {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 1024px;
  margin-inline: auto;
}

.size-sheet__legend li {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.75);
}

.size-sheet__legend strong {
  color: var(--color-black);
  font-weight: 600;
}

.size-sheet__body img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 8px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 10000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.swiper-pagination {
  display: flex;
  align-items: 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);
}

.customer,
.product-info {
  padding: 60px 0;
  background: var(--color-gray-light);
}

.product-info {
  overflow: visible;
}

@media (max-width: 767px) {
  .customer {
    padding: 30px 0 20px;
  }
}

.size img {
  margin: 60px 0;
  border-radius: 20px;
  width: 100%;
}

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

.reported {
  position: relative;
  z-index: 1;
}

.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: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .reported__list {
    margin-top: 20px;
    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("../assets/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("../assets/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);
  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: flex;
  align-items: center;
  gap: 20px;
}

.reported__list li .top img {
  max-width: 70px;
}

.reported__list li p {
  font-size: 14px;
  line-height: 1.28;
}

.explore {
  position: relative;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .explore {
    margin-top: 40px;
  }
}

.explore::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  width: 246px;
  height: 200px;
  z-index: -1;
  background: url("../assets/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 13px 20px;
  }
}

.explore .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.explore .swiper-slide.swiper-slide-active .buttons .icon,
.explore .swiper-slide.swiper-slide-next .buttons .icon,
.explore .swiper-slide.swiper-slide-prev .buttons .icon {
  display: flex;
}

.explore .swiper-slide img,
.explore .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.explore .swiper-slide .buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.explore .swiper-slide .buttons .icon {
  width: 32px;
  height: 32px;
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.explore .swiper-slide .buttons .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  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 !important;
  }
}

.explore .swiper-button-next {
  right: 20%;
}

.explore .swiper-button-prev {
  left: 20%;
}

.about__card,
.maps__list li,
.reported__description,
.customer .container,
.product-info .container {
  min-width: 0;
  max-width: 100%;
}

.seen {
  display: none;
}

@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .reported__list li p,
  .maps__list li p,
  .about__card p {
    overflow-wrap: break-word;
  }
}

.seen__list {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.seen__list img {
  max-height: 70px;
  width: auto;
}

@media (max-width: 1023px) {
  .seen__list {
    gap: 24px 40px;
    padding: 0 16px;
  }

  .seen__list img {
    max-height: 42px;
  }
}

.maps__list {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

@media (max-width: 1023px) {
  .maps__list {
    gap: 30px;
    padding: 20px 0;
  }
}

.maps__list li {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

@media (max-width: 1023px) {
  .maps__list li {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .maps__list li {
    flex-direction: column;
  }
}

.maps__list li:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .maps__list li:nth-child(even) {
    flex-direction: column;
  }

  .maps__list li .col {
    max-width: 100%;
    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;
    max-width: 100%;
    padding-inline: 8px;
  }

  .maps__list li p {
    text-align: center;
    padding-inline: 8px;
  }

  .maps__list li .col:nth-child(1) {
    margin-inline: -16px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
  }

  .maps__list li img {
    border-radius: 0;
  }
}

.maps__list li p {
  font-size: 15px;
  letter-spacing: 0.25px;
}

.product-info .container {
  position: relative;
}

.product-info .container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  translate: 0 -50%;
  z-index: 0;
  width: 246px;
  height: 233px;
  background: url("../assets/customer.svg") no-repeat center / contain;
}

.reported__description {
  padding: 20px;
  margin-top: 30px;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 2;
  background: var(--color-white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

@media (max-width: 1023px) {
  .reported__description {
    flex-direction: column;
    gap: 0;
  }

  .reported__description .col {
    justify-content: flex-start;
  }

  .reported__description .col + .col {
    padding-top: 8px;
  }
}

.reported__description .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: auto;
  flex: 1;
  min-width: 0;
  max-width: none;
}

.reported__description .col:first-child {
  flex: 0 1 470px;
  max-width: 470px;
}

@media (max-width: 1023px) {
  .reported__description .col:first-child {
    flex: 0 0 auto;
    max-width: none;
  }
}

.reported__description .slider {
  position: relative;
  width: 100%;
  background: var(--color-gray-light);
  border-radius: 14px;
  overflow: visible;
}

.reported__description .slider .swiper__navigation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.reported__description .slider .swiper__navigation .swiper-pagination,
.reported__description .slider .swiper__navigation .swiper-button-prev,
.reported__description .slider .swiper__navigation .swiper-button-next {
  pointer-events: auto;
}

.reported__description .slider .swiper__navigation .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
}

.reported__description .slider .swiper {
  height: 460px;
  overflow: hidden;
  border-radius: 14px;
}

.reported__description .slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.reported__description .slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 560px) {
  .reported__description .slider .swiper {
    height: 300px;
  }

  .reported__description .slider .swiper-slide {
    padding: 0;
    height: 100%;
  }

  .reported__description .slider .swiper-slide img {
    object-fit: cover;
  }
}

.reported__description .slider .swiper-button-prev {
  left: -15px;
  z-index: 3;
}

.reported__description .slider .swiper-button-next {
  right: -15px;
  z-index: 3;
}

.reported__description .slider .swiper-button-next::after,
.reported__description .slider .swiper-button-prev::after {
  opacity: 1;
  filter: brightness(0);
  background-size: 8px 12px;
}

.reported__description p {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.5384615385vw, 18px);
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.25px;
}

.product-info .col:nth-child(2) ul:not(.icons) {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 560px) {
  .product-info .col:nth-child(2) ul:not(.icons) {
    grid-template-columns: 1fr;
  }
}

.product-info .col:nth-child(2) ul:not(.icons) li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-info .col:nth-child(2) ul:not(.icons) li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("../assets/list.svg") no-repeat center / cover;
}

.reported__description .icons {
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reported__description .icons img {
  max-width: 70px;
}

@media (max-width: 560px) {
  .reported__description .icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .reported__description .icons img {
    max-width: 80px;
    width: 80px;
  }
}

.gallery {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .gallery {
    margin-top: 30px;
  }
}

.gallery__slider {
  padding: 30px 0;
}

.gallery__container {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery__container:hover .gallery__list {
  animation-play-state: paused;
}

.gallery__container.to-right {
  justify-content: flex-end;
}

.gallery__container.to-right .gallery__list {
  animation: scroll-right 60s linear infinite;
}

.gallery__container.to-left {
  margin-top: 4px;
}

.gallery__container.to-left .gallery__list {
  animation: scroll-left 60s linear infinite;
}

.gallery__list {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery__list > li {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
}

.gallery__list > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.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);
  align-items: center;
  justify-content: center;
}

.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  object-fit: contain;
}

.modal .close {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: 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;
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--color-white);
}

.about.drop_shadow .about__card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.about.drop_shadow .about__card::after,
.about.drop_shadow .about__card::before {
  display: block;
}

@media (max-width: 1023px) {
  .about__card {
    flex-direction: column;
    max-width: 100%;
  }

  .about__card .col {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about__card {
    gap: 20px;
  }
}

.about__card::before {
  content: "";
  display: none;
  position: absolute;
  left: -110px;
  top: 50%;
  translate: 0% -50%;
  z-index: -1;
  width: 210px;
  height: 220px;
  background: url("../assets/about1.svg") no-repeat center / contain;
}

@media (max-width: 1023px) {
  .about__card::before {
    top: 90%;
  }
}

.about__card::after {
  content: "";
  display: none;
  position: absolute;
  right: -80px;
  top: 50px;
  z-index: -1;
  width: 205px;
  height: 220px;
  background: url("../assets/about2.svg") no-repeat center / contain;
}

.about__card h2 {
  text-align: left;
  margin: 0 0 24px 0;
  padding-inline: 0;
}

@media (max-width: 767px) {
  .about__card h2 {
    margin: 0 0 16px;
  }
}

.about__card p {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 0.25px;
  max-width: 100%;
}

.about__card img.about__photo {
  width: 100%;
  border-radius: 14px;
}

@media (max-width: 1023px) {
  .about__card img.about__photo {
    max-height: 500px;
    object-fit: cover;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about__card img.about__photo {
    max-height: 300px;
  }
}

.about__signature {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}

.about__signature-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.about__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-black);
}

.about__signature-img {
  width: min(200px, 52vw);
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
}

.about__role {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about__signature {
    margin-top: 24px;
    max-width: 360px;
  }

  .about__name {
    font-size: 16px;
  }

  .about__signature-img {
    width: 200px;
  }
}

.faq__list {
  padding: 40px 0 60px;
  display: flex;
  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: 400px;
}

.faq__question {
  font-size: clamp(14px, 1.7094017094vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: var(--color-green);
}

.faq__question::after {
  content: "+";
  transition: all 0.3s ease;
}

.faq__answer {
  font-size: clamp(14px, 1.7094017094vw, 20px);
  line-height: 1.35;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.footer {
  margin-top: 50px;
  width: 100%;
}

.footer .wrapper {
  gap: 20px;
}

@media (max-width: 1023px) {
  .footer .wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .footer {
    margin-top: 35px;
  }
}

.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 {
    order: 0;
  }

  .footer__col:nth-child(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: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 220px;
}

@media (max-width: 1023px) {
  .footer .news__form {
    width: 100%;
  }
}

.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;
  appearance: none;
  outline: none;
  text-align: center;
  border: var(--border);
  font-family: inherit;
}

.footer .news__form input:focus-visible {
  border-color: var(--color-green);
  box-shadow: 0 0 5px var(--color-green);
}

.footer .news__form .button {
  width: 100%;
  height: 54px;
}

.footer-newsletter__pitch {
  margin: 12px 0 0;
  max-width: 220px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgba(16, 16, 16, 0.62);
  text-align: center;
}

@media (max-width: 1023px) {
  .footer-newsletter__pitch {
    max-width: none;
  }
}

@media (max-width: 1023px) {
  .footer__nav {
    padding: 30px 0;
    border-top: var(--border);
    border-bottom: var(--border);
    order: 1;
    width: 100%;
  }
}

.footer__nav--list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.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: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1023px) {
  .social {
    margin-top: 15px;
    gap: 10px;
  }
}

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

@media (max-width: 767px) {
  .social a {
    width: 28px;
    height: 28px;
  }
}

.social a:hover path:first-child {
  fill: var(--color-green);
}

.social a svg {
  width: 100%;
  height: 100%;
}

.footer .payment__list {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 1023px) {
  .footer .payment__list {
    margin-top: 0;
    gap: 24px;
    justify-content: center;
    order: 3;
  }
}

.footer .payment__list img {
  max-height: 18px;
}

.footer-lang-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
}

.footer-lang__title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(16, 16, 16, 0.72);
  text-align: left;
}

.footer-lang {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.footer-lang__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 25px;
  padding: 0;
  border: 1.5px solid rgba(16, 16, 16, 0.12);
  border-radius: 4px;
  background: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-lang__btn.is-active {
  border-color: var(--color-green);
  box-shadow: 0 0 0 1px var(--color-green);
}

.footer-lang__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 111, 96, 0.45);
}

.footer-lang__flag {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
}

.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("../assets/hero1.svg") no-repeat center / contain;
}

@media (max-width: 1023px) {
  .hero::before {
    left: -25px;
    width: 100px;
    height: 200px;
  }
}

.hero h1 {
  margin-bottom: 25px;
  max-width: none;
  text-align: left;
  padding-inline: 0;
  font-size: clamp(20px, 3.7606837607vw, 44px);
  line-height: 1.2;
}

@media (max-width: 767px) {
  .hero h1 {
    margin-bottom: 15px;
    text-align: center;
  }
}

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

.hero .wrapper {
  position: relative;
  align-items: center;
  padding-block: clamp(1.875rem, -2.641rem + 12.9vw, 10.875rem);
}

@media (max-width: 1023px) {
  .hero .wrapper {
    margin-top: clamp(1.875rem, -2.641rem + 12.9vw, 6.875rem);
    padding: 0;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
  }
}

.hero .col {
  position: relative;
}

@media (max-width: 1023px) {
  .hero .col {
    width: 100%;
    max-width: 100%;
  }
}

.hero .col::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -70px;
  z-index: -1;
  width: 220px;
  height: 210px;
  background: url("../assets/hero2.svg") no-repeat center / contain;
}

@media (max-width: 1023px) {
  .hero .col::before {
    left: 0;
    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("../assets/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;
}

.hero .col:last-child::before,
.hero .col:last-child::after {
  display: none;
}

@media (max-width: 1023px) {
  .hero .col:first-child {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero .col:first-child::before,
  .hero .col:first-child::after {
    display: none;
  }

  .hero .col:last-child::before,
  .hero .col:last-child::after {
    display: block;
  }

  .hero h1,
  .hero__text,
  .hero .rating {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero .rating {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .col img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero .col img {
    width: 60%;
  }

  .hero .col:first-child {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero .button {
    width: 100%;
  }
}

.hero--split {
  background:
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(20, 111, 96, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(20, 111, 96, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #faf8f6 0%, #ffffff 45%, #faf8f6 100%);
}

.hero--split::before {
  display: none;
}

.hero--split .hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

@media (max-width: 1023px) {
  .hero--split .hero__media {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .hero--split .hero__copy {
    padding: 12px 0 24px;
  }

  .hero--split .hero__rating-top {
    gap: 6px;
  }

  .hero--split .hero__rating-top p {
    font-size: 12px;
  }

  .hero--split h1 {
    margin-top: 8px;
    max-width: 19rem;
    font-size: clamp(21px, 5vw, 26px);
    line-height: 1.12;
  }

  .hero--split .hero__text {
    margin-top: 6px;
    max-width: 18rem;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero__cta-panel {
    margin-top: 12px;
    padding: 5px;
  }

  .hero__btn {
    height: 42px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
    gap: 6px;
  }

  .hero__btn svg {
    width: 16px;
    height: 16px;
  }

  .hero__cta-shop {
    height: 42px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero__btn--secondary {
    height: 42px;
    min-height: 42px;
  }
}

.hero--split .hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.hero--split .hero__copy {
  padding: 20px 0 40px;
  text-align: center;
}

.hero--split .hero__rating-top {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.hero--split .hero__rating-top p {
  margin: 0;
  font-size: 13px;
}

.hero--split h1 {
  margin: 20px auto 0;
  max-width: 22rem;
  text-align: center;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 1.15;
}

.hero--split .hero__text {
  margin: 16px auto 0;
  max-width: 22rem;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(16, 16, 16, 0.62);
}

.hero__cta-panel {
  margin: 28px auto 0;
  max-width: 28rem;
  padding: 6px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 16px;
  background: rgba(15, 46, 40, 0.92);
  box-shadow: 0 8px 24px rgba(16, 16, 16, 0.12);
}

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

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero__btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero__btn:hover svg {
  transform: translateX(4px);
}

.hero__btn--secondary {
  flex: 0.8;
  height: var(--button-height);
  min-height: var(--button-height);
  padding-block: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white) !important;
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__cta-shop {
  flex: 1.2;
  align-self: center;
  width: auto;
  min-width: 0;
  height: var(--button-height);
  min-height: var(--button-height);
  padding: 0 24px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.hero__cta-shop:hover {
  box-shadow: none;
}

@media (min-width: 1024px) {
  .hero--split {
    padding-top: 52px;
  }

  .hero--split .container {
    max-width: 1152px;
  }

  .hero--split .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 32px 0 64px;
  }

  .hero--split .hero__media {
    order: 2;
  }

  .hero--split .hero__copy {
    order: 1;
    padding: 0;
    text-align: left;
  }

  .hero--split .hero__media img {
    border-radius: 24px;
  }

  .hero--split .hero__rating-top {
    justify-content: flex-start;
  }

  .hero--split h1 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: left;
    font-size: clamp(32px, 3.2vw, 40px);
  }

  .hero--split .hero__text {
    margin-left: 0;
    margin-right: 0;
    max-width: 32rem;
    text-align: left;
    font-size: 17px;
  }

  .hero__cta-panel {
    margin-left: 0;
    margin-right: 0;
    max-width: 28rem;
  }
}

.info {
  padding: 60px 0;
  background: var(--color-gray-light);
}

.featured-collection {
  padding-bottom: 0;
  overflow-x: hidden;
}

.featured-collection .product__item {
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  align-items: flex-start;
  background: transparent;
}

.featured-collection .product__item > a.product__link {
  order: 1;
  width: 100%;
}

.featured-collection .product__item > a:not(.product__link):not(.button) {
  order: 2;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.featured-collection .product__item > .rating {
  order: 3;
}

.featured-collection .product__item > .product__price {
  order: 4;
}

.featured-collection .product__item .button {
  display: none;
}

.featured-collection .product__link {
  justify-content: flex-start;
}

.featured-collection .product__link img {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.featured-collection .product__item h5 {
  margin: 12px 0 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.featured-collection .product__item .rating {
  margin: 8px 0 0;
  justify-content: flex-start;
}

.featured-collection .product__item .rating .rating__star svg {
  width: 14px;
  height: 14px;
}

.featured-collection .product__item .rating .link {
  font-size: 12px;
}

.featured-collection .product__item .product__price {
  margin-top: 10px;
  justify-content: flex-start;
}

.featured-collection .product__item .product__price .price-old {
  background: transparent;
  padding: 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.featured-collection .product__item .product__price .price-old s {
  text-decoration: line-through;
}

.featured-collection .product__goods {
  top: 10px;
  right: 10px;
}

.featured-collection .swiper-slide {
  height: auto;
}

.featured-collection + .info {
  padding: 0;
}

.info + .product-info {
  padding-top: 30px;
}

.info + .product-info .reported__description {
  margin-top: 0;
}

.info + .product-info .container::before {
  top: 0;
}

.product .slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
  overflow: hidden;
}

.product .slider .swiper {
  padding: 0 10px;
}

@media (max-width: 767px) {
  .product .slider {
    padding: 0 16px;
  }
}

@media (max-width: 560px) {
  .product .slider {
    padding: 0;
  }
}

.product__list {
  padding: 40px 0;
}

@media (max-width: 767px) {
  .product__list {
    padding: 30px 0;
  }
}

.product__item {
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 17px;
  background: var(--color-white);
  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;
  margin-top: 8px;
}

.product__item .rating {
  margin-top: 30px;
}

.product__item .button {
  width: 100%;
  margin-top: 30px;
  text-transform: uppercase;
}

.product__goods {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
}

.product__goods span.onsale {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  height: 45px;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-red);
}

.product__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product__link img {
  max-width: 220px;
  margin: 0 auto;
}

.product__item .product__price {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product__item .product__price .price-old {
  padding: 2px 10px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: var(--border-radius);
  text-transform: uppercase;
}

.product__item .product__price .price-old s {
  text-decoration: none;
}

.product .slider .swiper-button-prev {
  left: 0;
}

.product .slider .swiper-button-next {
  right: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product .slider .swiper-button-prev {
    left: 50px;
  }

  .product .slider .swiper-button-next {
    right: 50px;
  }
}

@media (max-width: 767px) {
  .featured-collection .product .slider {
    padding: 0 12px 0 14px;
  }

  .featured-collection .product .slider .swiper {
    padding: 0;
  }

  .featured-collection .product .slider .swiper__navigation {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }

  .featured-collection .product .slider .swiper-button-prev,
  .featured-collection .product .slider .swiper-button-next {
    pointer-events: auto;
    top: 42%;
    width: 34px;
    height: 34px;
  }

  .featured-collection .product .slider .swiper-button-prev {
    left: 4px;
  }

  .featured-collection .product .slider .swiper-button-next {
    right: 4px;
  }
}

#about,
#reviews {
  scroll-margin-top: 24px;
}

.rating .link {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  opacity: 0.6;
}

.rating .link:hover {
  color: var(--color-green);
}

.reviews__info {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 10px;
  padding: 30px 16px 10px;
  text-align: center;
}

.reviews__title {
  margin-bottom: 12px;
}

.reviews__rating-text {
  margin-bottom: 10px;
  font-size: 15px;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.reviews__stars path,
.review-card__stars path {
  fill: var(--color-green);
}

.reviews__score {
  font-weight: 700;
}

.reviews__count-inline {
  font-size: 14px;
}

.reviews__count-inline::before {
  content: "·";
  margin-right: 10px;
}

.reviews-section {
  padding: 0 0 48px;
  background: var(--color-white);
}

.reviews-section .reviews__info {
  margin-bottom: 8px;
}

.reviews-showcase-wrap {
  position: relative;
  max-width: 720px;
  padding: 0 16px;
}

.reviews-lazy-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 48px 16px;
}

.reviews-lazy-placeholder__text {
  margin: 0;
  font-size: 15px;
  color: rgba(16, 16, 16, 0.55);
  text-align: center;
}

.reviews-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.review-pair.is-hidden {
  display: none;
}

.review-pair.is-visible {
  display: grid;
}

.review-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-gray-light);
  min-height: 0;
}

.review-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.review-media--video {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 200px;
  background: var(--color-gray-light);
}

.review-media--video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center center;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px;
  border-radius: 16px;
  background: var(--color-gray-light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 200px;
}

.review-card__stars {
  margin-bottom: 10px;
  line-height: 0;
}

.review-card__name {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.review-card__text {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(16, 16, 16, 0.82);
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.55);
}

.review-card__verified-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-green);
}

.review-card__verified-icon::after {
  content: "";
  width: 4px;
  height: 7px;
  margin-top: -1px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reviews-showcase__actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -28px;
  padding: 56px 0 8px;
}

.reviews-showcase__fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 96px;
  background: linear-gradient(
    to top,
    var(--color-white) 0%,
    rgba(255, 255, 255, 0.92) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.reviews-showcase__actions.is-hidden {
  display: none;
}

.reviews-load-more {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 32px;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 999px;
}

.review-pair--text {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .reviews-showcase-wrap {
    max-width: 860px;
    padding: 0 24px;
  }

  .reviews-showcase {
    gap: 16px;
  }

  .review-pair {
    gap: 16px;
  }

  .review-card {
    padding: 22px 20px;
    min-height: 260px;
  }

  .review-card__name {
    font-size: 17px;
  }

  .review-card__text {
    font-size: 14px;
  }

  .review-media img {
    min-height: 260px;
  }

  .review-media--video {
    min-height: 260px;
  }

}

.button--white {
  background: var(--color-white);
  border: 2px solid var(--color-green);
  color: var(--color-black) !important;
  padding: 0 20px;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.button--white:hover {
  color: var(--color-white) !important;
  background: var(--color-green);
}

.collection-hero {
  position: relative;
  overflow: hidden;
}

.collection-hero--with-image {
  padding: 64px 0;
}

.collection-hero--with-image .collection-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.collection-hero__title {
  margin: 0;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  max-width: none;
  text-align: left;
  padding-inline: 0;
}

.collection-hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.collection-hero__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero--with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 0;
}

@media (max-width: 749px) {
  .collection-hero--with-image {
    padding: 0;
  }

  .collection-hero--with-image .collection-hero__inner {
    padding-block: 48px;
  }

  .collection-hero__title {
    font-size: 28px;
  }

  .collection-hero__image-container {
    min-height: 200px;
  }
}

.collection-grid-section {
  padding: 36px 0 60px;
}

.collection-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.collection-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.collection-sort__trigger:hover {
  background: #0f5a4e;
}

.collection-sort__trigger svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.collection-sort__label {
  white-space: nowrap;
}

.collection-sort__value {
  font-weight: 700;
}

.sort-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.sort-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}

.sort-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.sort-sheet.is-open .sort-sheet__backdrop {
  opacity: 1;
}

.sort-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 18px 18px 0 0;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.sort-sheet.is-open .sort-sheet__panel {
  transform: translateY(0);
}

.sort-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sort-sheet__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-black);
}

.sort-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f2f2f2;
  color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
  padding: 0;
}

.sort-sheet__close svg {
  width: 16px;
  height: 16px;
}

.sort-sheet__body {
  padding: 8px 18px calc(18px + env(safe-area-inset-bottom));
  overflow-y: auto;
}

.sort-sheet__group {
  margin: 0;
  padding: 0;
  border: none;
}

.sort-sheet__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-black);
  cursor: pointer;
}

.sort-sheet__option:last-child {
  border-bottom: none;
}

.sort-sheet__option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-green);
  flex-shrink: 0;
}

.sort-sheet__option:has(input:checked) span {
  font-weight: 600;
  color: var(--color-green);
}

@media (min-width: 768px) {
  .sort-sheet__panel {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 360px;
    max-height: calc(100vh - 48px);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .sort-sheet.is-open .sort-sheet__panel {
    transform: translateY(0);
    opacity: 1;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}

.collection .product__item {
  border-radius: 0;
  box-shadow: none;
  padding: 0 20px;
  align-items: flex-start;
  height: 100%;
  background: transparent;
}

.collection .product__item > a.product__link {
  order: 1;
  width: 100%;
}

.collection .product__item > a:not(.product__link):not(.button) {
  order: 2;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.collection .product__item > .rating {
  order: 3;
}

.collection .product__item > .product__price {
  order: 4;
}

.collection .product__link {
  justify-content: flex-start;
}

.collection .product__link img {
  object-fit: cover;
  border-radius: 12px;
  max-width: none;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.collection .product__item h5 {
  margin: 12px 0 0;
  text-align: left;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.collection .product__item .rating {
  margin: 8px 0 0;
  margin-left: 0;
  gap: 6px;
}

.collection .product__item .rating .rating__star svg {
  width: 14px;
  height: 14px;
}

.collection .product__item .rating .link {
  font-size: 12px;
}

.collection .product__price {
  margin-top: 10px;
  gap: 8px;
  align-items: baseline;
}

.collection .product__item .button {
  margin-top: 20px;
  display: none;
}

.collection .product__price .price {
  font-size: 18px;
}

.collection .product__price .price-old {
  background: transparent;
  padding: 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.collection .product__price .price-old s {
  text-decoration: line-through;
}

.collection .product__goods {
  top: 12px;
  right: 28px;
}

@media (max-width: 767px) {
  .collection .product__item {
    padding: 0;
  }

  .collection .product__item h5 {
    font-size: 14px;
  }

  .collection .product__price .price {
    font-size: 17px;
  }

  .collection .product__goods {
    right: 9px;
  }
}

/* Side cart drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.drawer.is-open::before {
  opacity: 1;
}

.drawer--right .drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 400px);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.drawer__panel--cart {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0;
  box-shadow: -8px 0 40px rgba(16, 16, 16, 0.16);
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.cart__icon span {
  background: var(--color-green);
}

.cart-count[hidden] {
  display: none;
}

.drawer--cart::before {
  background: rgba(16, 16, 16, 0.35);
}

.cart-drawer__close svg {
  width: 18px;
  height: 18px;
}

.cart-drawer__close:hover {
  color: var(--color-black);
}

.cart-drawer__shipping-frame {
  box-shadow: inset 0 0 0 1px #dedede;
}

.cart-drawer__shipping-bar.is-qualified .cart-drawer__shipping-message {
  color: rgba(16, 16, 16, 0.78);
}

.cart-drawer__shop-link:hover {
  text-decoration: underline;
}

.cart-item__price--sale {
  color: var(--color-green);
}

.cart-item__edit:hover,
.cart-item__remove:hover {
  opacity: 0.7;
}

.cart-summary__subtotal--sale {
  color: var(--color-green);
}

.cart-drawer__checkout:active:not(:disabled) {
  transform: scale(0.98);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.cart-drawer__count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

.cart-drawer__count[hidden] {
  display: none;
}

.cart-drawer__close {
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(16, 16, 16, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-drawer__perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 12px 12px 16px;
  flex-shrink: 0;
}

.cart-drawer__perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 6px;
  border-right: 1px solid #ececec;
  text-align: center;
}

.cart-drawer__perk:last-child {
  border-right: 0;
}

.cart-drawer__perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
}

.cart-drawer__perk-icon img {
  display: block;
  width: auto;
  height: 20px;
  max-width: 100%;
  object-fit: contain;
}

.cart-drawer__perk-icon img[src*="cart-perk-"] {
  height: 36px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  object-position: center;
}

.cart-drawer__perk-label {
  font-size: 9px;
  line-height: 1.25;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.62);
}

.cart-drawer__shipping-bar {
  padding: 0 20px 14px;
  margin-top: 4px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cart-drawer__shipping-frame {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}

.cart-drawer__shipping-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0d947d 0%, var(--color-green) 100%);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer__shipping-bar.is-qualified .cart-drawer__shipping-fill {
  box-shadow: 0 0 10px rgba(20, 111, 96, 0.35);
}

.cart-drawer__shipping-text {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(16, 16, 16, 0.62);
  text-align: center;
}

.cart-drawer__shipping-message strong {
  font-weight: 700;
  color: var(--color-green);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-drawer__items {
  display: grid;
  gap: 12px;
}

.cart-drawer__empty {
  padding: 48px 12px;
  text-align: center;
  color: rgba(16, 16, 16, 0.45);
}

.cart-drawer__shop-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green);
  text-decoration: none;
}

.cart-item {
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: var(--color-gray-light);
}

.cart-item__inner {
  display: flex;
  gap: 12px;
  padding: 12px;
}

.cart-item__thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #ececec;
}

.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__content {
  min-width: 0;
  flex: 1;
}

.cart-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cart-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.cart-item__options {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(16, 16, 16, 0.5);
}

.cart-item__prices {
  display: flex;
  flex-shrink: 0;
  align-items: baseline;
  gap: 6px;
}

.cart-item__price-old {
  font-size: 12px;
  color: rgba(16, 16, 16, 0.35);
  text-decoration: line-through;
}

.cart-item__price {
  font-size: 14px;
  font-weight: 700;
}

.cart-item__actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.cart-item__edit,
.cart-item__remove {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-green);
}

.cart-drawer__footer {
  flex-shrink: 0;
  border-top: 1px solid #f0f0f0;
  padding: 16px 20px 12px;
}

.cart-summary {
  display: grid;
  gap: 12px;
}

.cart-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary__values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cart-summary__old {
  font-size: 14px;
  color: rgba(16, 16, 16, 0.35);
  text-decoration: line-through;
}

.cart-summary__subtotal,
.cart-summary__discount-label,
.cart-summary__label {
  font-size: 14px;
}

.cart-summary__subtotal {
  font-weight: 700;
}

.cart-summary__discount-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green);
}

.cart-summary__shipping {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green);
}

.cart-summary__row--total {
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.cart-summary__total-label {
  font-size: 16px;
  font-weight: 700;
}

.cart-summary__total-value {
  font-size: 18px;
  font-weight: 700;
}

.cart-drawer__checkout {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: var(--border-radius-large);
  background: var(--color-green);
  color: var(--color-white) !important;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-drawer__checkout:hover:not(:disabled) {
  background: var(--color-green-light);
}

.cart-drawer__checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-drawer__delivery {
  margin: 8px 0 0;
  font-size: 12px;
  text-align: center;
  color: rgba(16, 16, 16, 0.5);
}

/* Contact page */
.contact-page {
  background: var(--color-gray-light);
}

.contact-hero {
  padding: 48px 0 24px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.contact-hero p {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.contact-section {
  padding: 0 0 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--border-radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.contact-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.5;
}

.contact-card a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

.contact-perks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

.contact-form-card {
  padding: 28px 24px 32px;
  border-radius: var(--border-radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.contact-form-card > p {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: var(--border);
  border-radius: 10px;
  padding: 0 16px;
  font: inherit;
  font-size: 15px;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input,
.contact-field select {
  height: 46px;
}

.contact-field textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(20, 111, 96, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.contact-form__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.contact-form__success {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(20, 111, 96, 0.08);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 32px;
  }
}

@media (max-width: 560px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px 18px 28px;
  }
}

/* Policy & info pages */
.policy-page,
.about-page {
  background: var(--color-gray-light);
}

.policy-hero {
  padding: 48px 0 20px;
  text-align: center;
}

.policy-hero h1 {
  margin: 0 auto 8px;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.policy-hero__meta {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.policy-section,
.about-page-section {
  padding: 0 0 72px;
}

.policy-content,
.about-page__content {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 28px 40px;
  border-radius: var(--border-radius);
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.policy-content h2,
.about-page__content h2 {
  margin: 32px 0 12px;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  max-width: none;
}

.policy-content h2:first-child,
.about-page__content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin: 24px 0 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.policy-content p,
.about-page__content p {
  margin: 0 0 14px;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.65;
}

.policy-content ul,
.policy-content ol,
.about-page__content ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.65;
}

.policy-content li,
.about-page__content li {
  margin-bottom: 6px;
}

.policy-content a,
.about-page__content a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}

.policy-content a:hover,
.about-page__content a:hover {
  text-decoration: underline;
}

.about-page__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.about-page__photo {
  width: 100%;
  border-radius: var(--border-radius-small);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-page__copy .about__signature {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .about-page__card {
    grid-template-columns: 1fr;
  }

  .policy-content,
  .about-page__content {
    padding: 24px 20px 32px;
  }

  .policy-hero {
    padding-top: 32px;
  }
}
