﻿:root {
  --bg: #fefefe;
  --surface: #ffffff;
  --text: #111111;
  --muted: #8e8e8e;
  --dark: #171717;
  --accent: #8ff451;
  --accent-soft: #e1ffce;
  --border: #dddddd;
  --chip-bg: #ffffff;
  --row-bg: rgba(217, 217, 217, 0.17);
  --dropdown-bg: #ffffff;
  --dropdown-text: #000000;
  --dropdown-hover: #f2f2f2;
  --footer-bg: #111216;
  --radius-s: 8px;
  --radius-m: 10px;
  --radius-l: 20px;
  --container: 1300px;
  --z-header: 15;
  --z-dropdown: 25;
  --z-inline-tip: 24;
  --z-tooltip: 26;
  --z-help-rail: 30;
  --z-mobile-trigger: 59;
  --z-mobile-panel: 60;
  --z-modal: 70;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 340px;
  margin: 0;
  font-family: Montserrat, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page > main,
.content {
  flex: 1 0 auto;
  padding: 30px 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section-title {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: var(--text);
}

.section-title--tight {
  margin-bottom: 20px;
}

.section-title__icon {
  object-fit: contain;
  display: inline-block;
}

.header {
  position: relative;
  padding-bottom: 42px;
}

.header__bg {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background: url("img/bg.png") center/cover no-repeat;
  box-shadow: 0 10px 40px #01010136;
}

.header__container {
  display: flex;
  position: relative;
  z-index: var(--z-header);
  gap: 10px;
  padding-top: 30px;
  align-items: center;
}

.header__controls {
  flex: 1 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo__img {
  height: 35px;
  width: auto;
  display: block;
}

.logo__mark {
  font-family: "Archivo Black", sans-serif;
  font-size: 40px;
  line-height: 0.8;
  color: var(--accent);
}

.logo__text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.header__catalog-btn,
.header__link-btn,
.dropdown__toggle,
.icon-btn,
.search,
.footer__btn,
.product-card__btn,
.product-row__right button,
.referral__btn {
  border: 0;
  border-radius: var(--radius-m);
}

.header__catalog-btn,
.header__link-btn {
  background: var(--accent);
  color: #000;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
}

.header__catalog-btn,
.header__link-btn,
.hero__btn,
.product-card__btn,
.product-row__link,
.product-row__right button,
.referral__btn,
.footer__btn,
.help-rail {
  border: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.header__catalog-btn:hover,
.header__link-btn:hover,
.hero__btn:hover,
.product-card__btn:hover,
.product-row__link:hover,
.product-row__right button:hover,
.referral__btn:hover,
.footer__btn:hover,
.help-rail:hover {
  background-color: #e1ffce;
  border-color: #8ff451;
}

.header__catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.header__catalog-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header__burger {
  display: none !important;
  flex-direction: column;
  gap: 3px;
}

.mobile-menu__close {
  display: none;
}

.header__burger-line {
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  background: rgba(249, 249, 249, 0.13);
  height: 40px;
  padding-inline: 14px;
  width: auto;
  gap: 8px;
  flex: 1 0;
}

.search__input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  font-family: Montserrat, sans-serif;
}

.search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.search__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.search__submit,
.search__clear {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search__clear {
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.search--filled .search__clear {
  opacity: 1;
  pointer-events: auto;
}

.header__link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.header__link-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown {
  position: relative;
}

.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 40px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.dropdown__toggle:hover {
  background: #ffffff45;
}

.dropdown__toggle--social {
  width: auto;
  height: 47px;
  padding: 0 14px;
  background: transparent;
  color: inherit;
}

.dropdown__toggle--about {
  justify-content: space-between;
  padding: 0 16px 0 18px;
}

.dropdown__arrow {
  width: 6px;
  height: 9px;
  transform: rotate(90deg);
  opacity: 0.95;
}

.dropdown__toggle--small {
  display: inline-flex;
  height: 30px;
  background: #2c2c2c;
  font-size: 12px;
  width: auto;
}

.dropdown__toggle--sort {
  gap: 6px;
  padding: 0 10px;
}

.dropdown__arrow--sort {
  width: 6px;
  height: 9px;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.dropdown--open .dropdown__arrow--sort {
  transform: rotate(-90deg);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 175px;
  border-radius: var(--radius-m);
  background: var(--dropdown-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: var(--z-dropdown);
  color: var(--dropdown-text);
}

.dropdown__menu--right {
  left: auto;
  right: 0;
}

.dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  width: 100%;
  color: var(--dropdown-text);
}

.dropdown__menu a img {
  width: 17.996px;
  height: 12px;
  border-radius: 1px;
  object-fit: cover;
  transform: none;
}

.dropdown__menu a:hover {
  background: var(--dropdown-hover);
}

.dropdown--open .dropdown__menu {
  display: block;
}

.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background-color 0.3s ease;
}
.icon-btn:hover {
  background: #ffffff45;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.icon-btn--lang {
  width: 61px;
  justify-content: space-evenly;
}

.icon-btn__flag {
  width: 17.996px;
  height: 12px;
  border-radius: 1px;
  object-fit: cover;
  transform: none;
  rotate: 0deg;
}

.icon-btn__arrow {
  width: 6px !important;
  height: 9px !important;
  transform: rotate(90deg);
}

.dropdown--lang .dropdown__toggle--lang {
  width: 61px;
  min-width: 61px;
  padding: 0 8px;
}

.dropdown--lang .dropdown__menu {
  min-width: 120px;
}

.header__icon-btn--profile img {
  width: 14px;
  height: 17px;
}

.header__icon-btn--cart img {
  width: 18px;
  height: 18px;
}

.header__icon-btn--theme img {
  width: 18px;
  height: 18px;
}

.hero {
  margin-top: 30px;
  position: relative;
  min-height: 363px;
  height: 363px;
  border-radius: var(--radius-l);
  overflow: hidden;
  padding: 0;
  background: #2a3129;
  box-shadow: 0px 10px 57px 3px #00000059;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  visibility: visible;
}

.hero__slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 400ms ease, visibility 400ms ease;
  z-index: 0;
  visibility: hidden;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}



.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: rgba(29, 31, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.hero__side--left {
  left: 0;
  border-radius: 20px 0 0 20px;
}

.hero__side--right {
  right: 0;
  border-radius: 0 20px 20px 0;
}

.hero__title {
  margin: 0;
  max-width: 640px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.hero__text {
  margin: 18px 0 0;
  max-width: 445px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.hero__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-m);
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.hero__arrow {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  font-size: 22px;
  background: transparent;
}

.hero__arrow img {
  width: 13px;
  height: 20px;
}

.hero__arrow--prev img {
  transform: rotate(180deg);
}

.hero__arrow:active,
.hero__arrow--pressed {
  transform: scale(0.96);
}


.social {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.social__row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
}

.social-chip {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-m);
  background: var(--chip-bg);
  box-shadow: 0 6px 14.4px rgba(0, 0, 0, 0.06);
  height: 47px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow 160ms ease, background-color 0.3s ease;
  color: var(--text);
}

.social-chip:hover {
  background: rgba(181, 181, 181, 0.17);
  box-shadow: 0 6px 14.4px rgba(0, 0, 0, 0);
}

.social-chip:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.dropdown--open .social-chip {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.social-chip img { width: 24px; height: 24px; }

.social__all {
  padding: 6px 0;
  text-align: right;
}
.social__all-link {
  justify-self: end;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  text-align: right;
  transition: color 0.3s ease;
}
.social__all-link:hover {
  color: #90f452;
}

.dropdown--social .dropdown__menu {
  min-width: 150px;
  top: calc(100% + 8px);
}

.top-products,
.products {
  margin-top: 38px;
}

.top-products__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 30px;
}

.product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__image {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 20px;
  object-fit: contain;
}

.product-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text);
  word-break: break-word;
  overflow: hidden;
}

.product-card__meta {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.product-card__btn {
  margin-top: 14px;
  width: 100%;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

.products-table {
  margin-top: 0;
}

.products-table__header {
  background: var(--dark);
  border-radius: var(--radius-m);
  color: #fff;
  min-height: 53px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.products-table__sort {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.products-table__label {
  font-size: 12px;
  color: #fff;
}

.products-table__header h3,
.products-table__header .h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
  word-break: break-word;
}

.products-table__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-row {
  border-radius: var(--radius-m);
  background: var(--row-bg);
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.product-row__left {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
}

.product-row__left img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-row__info {
  display: grid;
  gap: 4px;
  position: relative;
}

.product-row__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  max-width: 780px;
  color: var(--text);
  overflow: hidden;
  word-break: break-word;
}

.product-row__title:hover {
  text-decoration: underline;
}

.product-row__sales {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  width: fit-content;
  cursor: pointer;
}

.product-row__sales img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.product-row__sales:hover .product-row__icon-tip {
  display: block;
}

.product-row__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 46px;
  background: var(--accent);
  font-weight: 600;
  border-radius: var(--radius-m);
  color: #000;
}

.product-row__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-row__icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-row__icon-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 8px;
  white-space: nowrap;
  display: none;
  z-index: var(--z-inline-tip);
}

.product-row__icon-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.95) transparent;
}

.product-row__icon:hover .product-row__icon-tip {
  display: block;
}

.product-row__badge {
  color: var(--accent);
  font-size: 10px;
}

.product-row__badge--sale {
  color: #c2ff9d;
}

.product-row__right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  justify-content: flex-start;
}

.product-row__qty,
.product-row__price {
  display: inline-flex;
  justify-content: flex-start;
  min-width: 90px;
  text-align: left;
}

.product-row__price {
  min-width: 110px;
}

.product-row__right button {
  width: 138px;
  height: 46px;
  background: var(--accent);
  font-weight: 600;
}

.hint {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
}

.tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: min(560px, 90vw);
  padding: 14px;
  border-radius: var(--radius-m);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  display: none;
  z-index: var(--z-tooltip);
}

.tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.95) transparent;
}

.product-row__title:hover + .product-row__sales + .tooltip {
  display: block;
}

.referral {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
  min-height: 135px;
  border-radius: var(--radius-l);
  background: url("img/ref_bg.png") center/cover no-repeat;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 34px 0 40px;
}

.referral__vec {
  position: absolute;
  width: auto;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.referral__vec--1 {
  left: -22px;
  top: -22px;
}

.referral__vec--2 {
  left: 60%;
  bottom: -14px;
  transform: translateX(-50%);
}

.referral__content {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.referral__kicker {
  margin: 0;
  padding-left: 40px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
}

.referral__title {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1;
  font-weight: bold;
}

.referral__image {
  position: relative;
  z-index: 1;
  width: clamp(170px, 19vw, 227px);
  height: auto;
  margin: -42px 0 -36px;
  align-self: center;
}

.referral__btn {
  position: relative;
  z-index: 1;
  width: 153px;
  height: 51px;
  background: var(--accent);
  font-size: 16px;
  font-weight: 600;
  align-self: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  margin-top: auto;
  background: var(--footer-bg);
  color: #fff;
  padding: 46px 0 36px;
}

[data-theme="dark"] {
  --bg: #202020;
  --surface: #171717;
  --text: #ffffff;
  --muted: #afafaf;
  --chip-bg: rgba(217, 217, 217, 0.04);
  --row-bg: rgba(217, 217, 217, 0.04);
  --dropdown-bg: rgba(0, 0, 0, 0.95);
  --dropdown-text: #ffffff;
  --dropdown-hover: rgba(255, 255, 255, 0.08);
  --footer-bg: #171717;
}

[data-theme="dark"] .social__all {
  color: var(--accent);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 36px;
}

.footer__brand p {
  margin-top: 20px;
  max-width: 330px;
  color: #a6a6a6;
  font-size: 11px;
  line-height: 1.35;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  min-height: 170px;
}

.footer__nav {
  display: grid;
  grid-template-rows: repeat(4, minmax(24px, auto));
  row-gap: 20px;
  align-content: start;
}

.footer__nav a {
  font-size: 14px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: #8ff451;
}

.footer__nav a:nth-child(1) {
  font-weight: 600;
}

.footer__actions {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 56px;
}

.footer__btn {
  width: 174px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.footer__payments {
  width: 237px;
  opacity: 0.85;
  filter: brightness(2) contrast(0);
}

[data-theme="dark"] .footer__payments {
  opacity: 0.85;
}

.help-rail {
  position: fixed;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  writing-mode: vertical-rl;
  rotate: 180deg;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 10px;
  z-index: var(--z-help-rail);
}

.help-rail__icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transform: rotate(90deg);
}

.accsmoll-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.accsmoll-link img {
  width: auto;
  height: 24px;
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: none;
}

.catalog-modal--open {
  display: block;
}

.catalog-modal__panel {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 320px 1fr;
  padding: 50px;
}

.catalog-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  z-index: 3;
}

.catalog-modal__sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 20px 0 0;
}

.catalog-modal__logo {
  display: inline-flex;
}

.catalog-modal__subtitle {
  margin: 40px 0 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.catalog-modal__select-wrap {
  display: none;
  position: relative;
}

.catalog-modal__select-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.catalog-modal__select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0 38px 0 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color-scheme: dark;
}

.catalog-modal__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  pointer-events: none;
}

.catalog-modal__select option {
  background: #111216;
  color: #fff;
}

.catalog-modal__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.catalog-modal__cat {
  width: 240px;
  height: 39px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  text-align: left;
}

.catalog-modal__cat img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.catalog-modal__cat--active {
  background: #fff;
  color: #111;
  box-shadow: 0 6px 14.4px rgba(0, 0, 0, 0.06);
}

.catalog-modal__content {
  padding: 0 0 0 40px;
  overflow: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #8ff451 rgba(255, 255, 255, 0.14);
}

.catalog-modal__content::-webkit-scrollbar {
  width: 8px;
}

.catalog-modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.catalog-modal__content::-webkit-scrollbar-thumb {
  background: #8ff451;
  border-radius: 10px;
}

.catalog-modal__title {
  margin: 0 0 50px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.catalog-modal__tab {
  display: none;
}

.catalog-modal__tab--active {
  display: block;
}

.catalog-modal__grid {
  height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: start;
}
@media (max-width: 1279px) {
  .catalog-modal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1079px) {
  .catalog-modal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catalog-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-height: 48px;
  min-width: 0;
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background-color 160ms ease;
}

.catalog-item:hover,
.catalog-item:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.catalog-item img {
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.catalog-item span {
  display: grid;
  min-width: 0;
}

.catalog-item b {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
}

.catalog-item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  white-space: normal;
  word-break: break-word;
}

.page--content .header {
  padding-bottom: 30px;
}


.breadcrumbs {
  position: relative;
  z-index: var(--z-header);
  margin-top: 30px;
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.breadcrumbs__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.breadcrumbs__sep,
.breadcrumbs__current {
  color: rgba(255, 255, 255, 0.72);
}

.content-page {
  margin-top: 30px;
  margin-bottom: 56px;
}

.static-page__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.about-hero {
  background: #2a3129;
  border-radius: 20px;
  box-shadow: 0 4px 46px rgb(0 0 0 / 44%);
  position: relative;
  overflow: hidden;
  min-height: 363px;
  padding: 0 101px;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/bg_hero_about.png") center/cover no-repeat;
  opacity: 1;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 444px;
  color: #fff;
}

.about-hero__content h2 {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
}

.about-hero__content p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.about-advantages,
.about-links {
  margin-top: 50px;
}

.about-section-title {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.about-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.about-advantages__card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(0, 0, 0, 0.07);
  min-height: 229px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-advantages__icon-circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-advantages__icon-circle img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.about-advantages__icon--price {
  width: 52px !important;
  height: 78px !important;
}

.about-advantages__icon--cart {
  width: 63px !important;
  height: 63px !important;
}

.about-advantages__icon--box {
  width: 61px !important;
  height: 63px !important;
}

.about-advantages__icon-circle--number {
  font-family: "Miriam Libre", sans-serif;
  font-size: 86px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.about-advantages__card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.about-advantages__card p {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 22px;
}

.about-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.about-links__card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(0, 0, 0, 0.07);
  min-height: 178px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  overflow: hidden;
}

.about-links__icon-wrap {
  height: 100%;
  background: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-links__icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.about-links__icon--support {
  width: 32px;
  height: 33px;
}

.about-links__icon--balance {
  width: 32px;
  height: 32px;
}

.about-links__icon--assort {
  width: 32px;
  height: 32px;
}

.about-links__icon--telegram {
  width: 32px !important;
  height: 38px !important;
}

.about-links__text {
  padding: 15px 20px;
}

.about-links__text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.about-links__text p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #555;
}

.about-links__btn {
  margin-right: 20px;
  height: 51px;
  min-width: 174px;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.about-links__btn:hover {
  background-color: #e1ffce;
}

[data-theme="dark"] .static-page__title,
[data-theme="dark"] .about-section-title,
[data-theme="dark"] .about-advantages__card h3,
[data-theme="dark"] .about-links__text h3 {
  color: #fff;
}

[data-theme="dark"] .about-advantages__card,
[data-theme="dark"] .about-links__card {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .about-links__icon-wrap {
  background: #333333;
}

[data-theme="dark"] .about-links__icon-wrap img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .about-links__text p,
[data-theme="dark"] .about-advantages__card p {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .about-hero {
  box-shadow: none;
}

@media (max-width: 1279px) {
  .about-hero {
    min-height: 300px;
    padding: 36px;
  }

  .about-hero__content h2 {
    font-size: 34px;
  }

  .about-advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-links__grid {
    grid-template-columns: 1fr;
  }

}

.static-page__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.static-page__content {
  max-width: 1300px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.static-page__content p {
  margin: 0 0 4px;
}

.static-page__content ul {
  margin: 0 0 2px;
  padding-left: 18px;
}

.static-page__content li {
  margin: 0;
}

.rules-page p {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.2;
}

.rules-page__lead {
  margin-bottom: 2px;
}

.rules-page__title {
  margin: 12px 0 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.rules-page__box {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 6px;
}

.rules-page__list,
.rules-page__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rules-page__sublist {
  margin-top: 2px;
}

.rules-page__list li,
.rules-page__sublist li {
  position: relative;
  padding-left: 16px;
  margin: 0;
}

.rules-page__sublist li {
  padding-left: 15px;
}

.rules-page__list li::before,
.rules-page__sublist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 7px;
  height: 7px;
  background: url("img/point.png") center / contain no-repeat;
}

[data-theme="dark"] .rules-page__title {
  color: #fff;
}

[data-theme="dark"] .rules-page__box {
  background: #333333;
}

[data-theme="dark"] .rules-page p,
[data-theme="dark"] .rules-page__list li,
[data-theme="dark"] .rules-page__sublist li {
  color: rgba(255, 255, 255, 0.82);
}

[data-theme="dark"] .rules-page__lead b {
  color: #fff;
}

.faq-page {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 30px;
}

.faq-page__intro {
  align-self: center;
}

.faq-page__icon {
  width: 114px;
  height: 114px;
  border-radius: 20px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.faq-page__icon img {
  width: 69px;
  height: 69px;
  object-fit: contain;
}

.faq-page__intro h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.02;
  font-weight: 600;
  color: #0c0c0c;
}

.faq-page__intro p {
  margin: 0;
  max-width: 350px;
  font-size: 14px;
  line-height: 1.3;
  color: #0c0c0c;
}

.faq-page__list {
  display: grid;
  gap: 8px;
  align-self: start;
}

.faq-item {
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 4px 36.9px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.faq-item.is-open {
  background: #ebebeb;
  box-shadow: none;
}

.faq-item__toggle {
  width: 100%;
  min-height: 55px;
  padding: 10px 10px 10px 20px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  text-align: left;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #0c0c0c;
  cursor: pointer;
}

.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: #111;
}

.faq-item.is-open .faq-item__icon::before {
  content: "−";
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  will-change: max-height;
}

.faq-item__content-inner {
  padding: 4px 20px 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.faq-item__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  color: #0c0c0c;
}

.faq-item.is-open .faq-item__content-inner {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="dark"] .faq-page__intro h2,
[data-theme="dark"] .faq-page__intro p {
  color: #fff;
}

[data-theme="dark"] .faq-item {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .faq-item.is-open {
  background: #333333;
}

[data-theme="dark"] .faq-item__toggle {
  color: #fff;
}

[data-theme="dark"] .faq-item__content p {
  color: rgba(255, 255, 255, 0.75);
}

.purchases-page {
  max-width: 1300px;
}

.purchases-page__lead {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.25;
  color: #0c0c0c;
}

.search.purchases-page__search {
  width: 420px;
  max-width: 100%;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 44px;
}

.purchases-page__search .search__input {
  color: #0c0c0c;
}

.purchases-page__search .search__input::placeholder {
  color: rgba(12, 12, 12, 0.4);
}

.purchases-page__search .search__icon,
.purchases-page__search .search__submit,
.purchases-page__search .search__clear {
  filter: brightness(0);
  color: #0c0c0c;
}

.purchases-page__subtitle {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #0c0c0c;
}

.purchases-page__grid {
  margin-top: 0;
}

[data-theme="dark"] .purchases-page__lead,
[data-theme="dark"] .purchases-page__subtitle {
  color: #fff;
}

[data-theme="dark"] .search.purchases-page__search {
  background: #333333;
}

[data-theme="dark"] .purchases-page__search .search__input {
  color: #fff;
}

[data-theme="dark"] .purchases-page__search .search__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .purchases-page__search .search__icon,
[data-theme="dark"] .purchases-page__search .search__submit,
[data-theme="dark"] .purchases-page__search .search__clear {
  filter: brightness(10);
  color: #fff;
}

.partners-page {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 30px;
  position: relative;
}

.partners-page__tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.partners-page__tab-btn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  padding: 10px 20px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #0c0c0c;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.partners-page__tab-arrow {
  font-size: 18px;
  line-height: 1;
  color: #111;
  opacity: 0.9;
}

.partners-page__tab-btn--active {
  background: #8ff451;
  width: calc(100% - 22px);
  font-weight: 600;
}

.partners-page__content {
  min-width: 0;
}

.partners-page__panel {
  display: none;
}

.partners-page__panel.is-active {
  display: block;
}

.partners-page__panel-title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #0c0c0c;
}

.partners-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 286px));
  gap: 30px;
  align-items: stretch;
  justify-content: start;
}

.partner-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36.9px rgba(0, 0, 0, 0.07);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}

.partner-card__image {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  margin: 0 auto 17px;
}

.partner-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #0c0c0c;
  word-break: break-word;
}

.partner-card__text {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.2;
  color: #0c0c0c;
  flex: 1 1 auto;
  word-break: break-word;
}

.partner-card__promo-label {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.2;
  color: #0c0c0c;
  margin-top: auto;
}

.partner-card__promo {
  height: 40px;
  border-radius: 10px;
  border: 1px dashed #afa88f;
  background: #ffeeb8;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-card__promo-code {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #0c0c0c;
}

.partner-card__copy {
  border: 0;
  background: transparent;
  width: 18px;
  height: 18px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-card__copy img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0);
}

.partner-card__link {
  margin-top: 12px;
  width: 100%;
  min-height: 51px;
  border-radius: 10px;
  background: #8ff451;
  color: #0c0c0c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms ease;
}

.partner-card__link:hover {
  background: #7ee743;
}

.partners-page__toast {
  position: fixed;
  right: 20px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0c0c0c;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 80;
}

.partners-page__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="dark"] .partners-page__panel-title {
  color: #fff;
}

[data-theme="dark"] .partners-page__tab-btn {
  background: #333333;
  color: #fff;
}

[data-theme="dark"] .partners-page__tab-btn--active {
  background: #8ff451;
  color: #0c0c0c;
}

[data-theme="dark"] .partners-page__tab-arrow {
  color: #fff;
}

[data-theme="dark"] .partners-page__tab-btn--active .partners-page__tab-arrow {
  color: #0c0c0c;
}

[data-theme="dark"] .partner-card {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .partner-card__title,
[data-theme="dark"] .partner-card__text,
[data-theme="dark"] .partner-card__promo-label,
[data-theme="dark"] .partner-card__promo-code {
  color: #fff;
}

[data-theme="dark"] .partner-card__promo {
  background: #4a4330;
  border-color: #998f69;
}

[data-theme="dark"] .partner-card__copy img {
  filter: brightness(10);
}

[data-theme="dark"] .partners-page__toast {
  background: #8ff451;
  color: #0c0c0c;
}

.about-hero.forpartners-page__hero {
  background: #2a3129;
  box-shadow: 0 4px 46px rgb(0 0 0 / 44%);
  min-height: 363px;
  padding: 0 101px;
}

.about-hero.forpartners-page__hero::before {
  background: url("img/bg_hero_forpartners.png") center/cover no-repeat;
}

.forpartners-page__hero-content {
  max-width: 444px;
}

.about-hero__content.forpartners-page__hero-content h2 {
  margin-bottom: 28px;
  font-size: 32px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
}

.about-hero__content.forpartners-page__hero-content p {
  max-width: 444px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.forpartners-page__advantages {
  margin-top: 50px;
}

.forpartners-page__section-title {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #0c0c0c;
}

.forpartners-page__advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 52px;
}

.forpartners-page__adv {
  position: relative;
  min-height: 218px;
  padding: 48px 0 0 109px;
}

.forpartners-page__adv-circle {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 173px;
  height: 173px;
  border-radius: 50%;
  background: var(--accent);
}

.forpartners-page__adv-number {
  position: absolute;
  left: 0;
  top: 26px;
  font-size: 128px;
  line-height: 0.85;
  font-weight: 800;
  font-style: italic;
  color: #0c0c0c;
}

.forpartners-page__adv h3 {
  position: relative;
  margin: 0 0 14px;
  max-width: 470px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0;
  color: #0c0c0c;
}

.forpartners-page__adv p {
  position: relative;
  margin: 0;
  max-width: 468px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #0c0c0c;
}

.forpartners-page__details {
  margin-top: 34px;
}

.forpartners-page__details p {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #0c0c0c;
}

.forpartners-page__supplier {
  margin-top: 46px;
}

.forpartners-page__supplier-grid {
  display: grid;
  grid-template-columns: 1fr minmax(440px, 1fr);
  gap: 20px 30px;
  align-items: center;
}

.forpartners-page__supplier-info {
  padding-left: 72px;
}

.forpartners-page__supplier-info h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #0c0c0c;
}

.forpartners-page__supplier-info p {
  margin: 0 0 26px;
  max-width: 470px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #0c0c0c;
}

.forpartners-page__supplier-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  min-width: 216px;
  border-radius: 10px;
  background: var(--accent);
  font-size: 16px;
  font-weight: 600;
  color: #0c0c0c;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.forpartners-page__supplier-btn:hover {
  background: #7ee743;
}

.forpartners-page__supplier-visual {
  position: relative;
  min-height: 320px;
}

.forpartners-page__supplier-box-main {
  position: absolute;
  left: 64px;
  bottom: 10px;
  width: 333px;
  transform: rotate(-8deg);
}

.forpartners-page__supplier-box-float {
  position: absolute;
  right: 46px;
  top: 10px;
  width: 104px;
  transform: rotate(22deg);
}

.forpartners-page__supplier-badge {
  position: absolute;
  top: 64px;
  right: 74px;
  width: auto;
  margin: 0;
  border-radius: 20px;
  background: var(--accent);
  padding: 12px 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: #0c0c0c;
}

.forpartners-page__supplier-badge span {
  display: block;
}

.forpartners-page__supplier-note {
  position: absolute;
  right: 22px;
  top: 168px;
  width: 357px;
  min-height: 70px;
  margin: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 25px 36.9px rgba(0, 0, 0, 0.21);
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #0c0c0c;
}

.forpartners-page__supplier-vector {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.forpartners-page__supplier-vector--left {
  width: 193px;
  left: 10px;
  top: 22px;
  transform: rotate(-12deg);
}

.forpartners-page__supplier-vector--right {
  width: 146px;
  right: 4px;
  top: 130px;
  transform: rotate(30deg);
}

[data-theme="dark"] .forpartners-page__section-title,
[data-theme="dark"] .forpartners-page__adv h3,
[data-theme="dark"] .forpartners-page__adv p,
[data-theme="dark"] .forpartners-page__details p,
[data-theme="dark"] .forpartners-page__supplier-info h3,
[data-theme="dark"] .forpartners-page__supplier-info p {
  color: #fff;
}

[data-theme="dark"] .forpartners-page__adv-number {
  color: var(--accent);
}

[data-theme="dark"] .forpartners-page__adv-circle {
  background: #0f1115;
}

[data-theme="dark"] .forpartners-page__adv p {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="dark"] .forpartners-page__supplier-note {
  background: #e9e9e9;
}

[data-theme="dark"] .about-hero.forpartners-page__hero {
  box-shadow: none;
}

@media (max-width: 1279px) {
  .about-hero.forpartners-page__hero {
    min-height: 320px;
    padding: 0 36px;
  }

  .about-hero__content.forpartners-page__hero-content h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .about-hero__content.forpartners-page__hero-content p {
    max-width: 376px;
  }

  .forpartners-page__advantages-grid {
    gap: 14px 26px;
  }

  .forpartners-page__adv {
    min-height: 168px;
    padding: 34px 0 0 88px;
  }

  .forpartners-page__adv-circle {
    width: 136px;
    height: 136px;
    left: 6px;
    top: 8px;
  }

  .forpartners-page__adv-number {
    font-size: 94px;
    top: 16px;
  }

  .forpartners-page__adv h3 {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.2;
  }

  .forpartners-page__adv p {
    line-height: 1.4;
  }

  .forpartners-page__details p {
    line-height: 1.45;
  }

  .forpartners-page__supplier-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .forpartners-page__supplier-info {
    padding-left: 0;
  }

  .forpartners-page__supplier-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about-hero.forpartners-page__hero {
    min-height: 0;
    padding: 20px 16px;
  }

  .about-hero__content.forpartners-page__hero-content h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .about-hero__content.forpartners-page__hero-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .forpartners-page__advantages {
    margin-top: 32px;
  }

  .forpartners-page__section-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .forpartners-page__advantages-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .forpartners-page__adv {
    min-height: 126px;
    padding: 24px 0 0 66px;
  }

  .forpartners-page__adv-circle {
    width: 98px;
    height: 98px;
    left: 4px;
    top: 10px;
  }

  .forpartners-page__adv-number {
    font-size: 74px;
    top: 18px;
  }

  .forpartners-page__adv h3 {
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1.2;
  }

  .forpartners-page__adv p {
    font-size: 12px;
    line-height: 1.35;
  }

  .forpartners-page__details {
    margin-top: 20px;
  }

  .forpartners-page__details p {
    font-size: 13px;
    line-height: 1.35;
  }

  .forpartners-page__supplier {
    margin-top: 24px;
  }

  .forpartners-page__supplier-grid {
    gap: 12px;
  }

  .forpartners-page__supplier-info h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
  }

  .forpartners-page__supplier-info p {
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .forpartners-page__supplier-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 15px;
  }

  .forpartners-page__supplier-visual {
    display: none;
  }

  .forpartners-page__supplier-box-main {
    width: 226px;
    left: 18px;
    bottom: 14px;
  }

  .forpartners-page__supplier-box-float {
    width: 62px;
    right: 46px;
    top: 8px;
  }

  .forpartners-page__supplier-badge {
    width: auto;
    right: 18px;
    top: 48px;
    border-radius: 14px;
    padding: 10px 14px 12px;
    font-size: 19px;
    line-height: 1.1;
  }

  .forpartners-page__supplier-badge span {
    white-space: nowrap;
  }

  .forpartners-page__supplier-note {
    width: 248px;
    right: 6px;
    top: 156px;
    min-height: 56px;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.25;
  }

  .forpartners-page__supplier-vector--left {
    width: 102px;
    left: 0;
    top: 38px;
  }

  .forpartners-page__supplier-vector--right {
    width: 82px;
    right: -8px;
    top: 186px;
  }
}

@media (max-width: 1279px) {
  :root { --container: 1160px; }

  .faq-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-page__intro {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0 14px;
    align-items: center;
  }

  .faq-page__icon {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    margin: 0;
  }

  .faq-page__icon img {
    width: 52px;
    height: 52px;
  }

  .faq-page__intro h2 {
    margin: 0;
    font-size: 34px;
  }

  .faq-page__intro p {
    grid-column: 1 / -1;
    max-width: none;
    margin-top: 10px;
  }

  .header__container {
    grid-template-columns: 143px minmax(0, 1fr) auto;
  }

  .header__controls {
    gap: 8px;
  }

  .header__controls .search {
    width: 100%;
    min-width: 0;
  }

  .top-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .products-table__header h3,
  .products-table__header .h3 { font-size: 20px; }

  .referral {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding: 0 22px;
  }

  .referral__kicker {
    font-size: 22px;
    padding-left: 24px;
  }

  .referral__title { font-size: clamp(28px, 3.2vw, 36px); }

  .referral__image {
    width: clamp(148px, 18vw, 200px);
    margin: -28px 0 -22px;
  }

  .referral__btn {
    width: 142px;
    height: 47px;
    font-size: 15px;
  }

  .catalog-modal__panel {
    grid-template-columns: 280px 1fr;
    padding: 40px;
  }

  .catalog-modal__cat {
    width: 210px;
  }

  .catalog-modal__grid {
    column-count: 3;
  }

  .partners-page {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
  }

  .partners-page__grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 286px));
    gap: 20px;
    justify-content: start;
  }

  .partner-card {
    min-height: 0;
  }

  .search.purchases-page__search {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .purchases-page__lead {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .search.purchases-page__search {
    width: 100%;
    margin-bottom: 22px;
  }

  .purchases-page__subtitle {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .partners-page {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partners-page__tabs {
    order: 1;
  }

  .partners-page__content {
    order: 2;
  }

  .partners-page__tab-btn {
    min-height: 44px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .partners-page__tab-btn--active {
    width: 100%;
  }

  .partners-page__panel-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .partners-page__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-card {
    border-radius: 15px;
    padding: 15px;
  }

  .partner-card__image {
    width: 110px;
    height: 110px;
    border-radius: 15px;
    margin-bottom: 12px;
  }

  .partner-card__link {
    min-height: 48px;
    font-size: 15px;
  }

  .partners-page__toast {
    right: 15px;
    bottom: 18px;
  }
}

@media (max-width: 1024px) {
  .header__container {
    grid-template-columns: 1fr auto;
    gap: 8px;
    justify-content: space-between;
  }

  .header__controls {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 92vw);
    height: 100vh;
    background: #111216;
    padding: 20px 16px;
    z-index: var(--z-mobile-panel);
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    overflow: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .header__controls.mobile-menu--open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.7);
  }

  .header__burger {
    position: relative;
    z-index: var(--z-mobile-trigger);
  }

  body.mobile-menu-open .header__burger {
    opacity: 0;
    pointer-events: none;
  }

  .header__burger {
    display: inline-flex !important;
  }

  .mobile-menu__close {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 22px;
    line-height: 1;
  }

  .header__controls .header__catalog-btn,
  .header__controls .header__link-btn,
  .header__controls .icon-btn,
  .header__controls .dropdown {
    display: inline-flex !important;
    width: 100%;
  }

  .header__controls .search {
    display: grid !important;
    width: 100%;
  }

  .header__controls .dropdown {
    display: block !important;
  }

  .header__controls .icon-btn {
    min-height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .header__controls .dropdown__toggle {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    border-radius: 10px;
  }

  .header__controls .header__catalog-btn,
  .header__controls .header__link-btn {
    justify-content: center;
  }

  .referral {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 135px;
    height: auto;
    padding: 14px 16px 10px;
    gap: 10px;
  }

  .referral__kicker {
    font-size: 19px;
    padding-left: 0;
  }

  .referral__title {
    font-size: clamp(26px, 4.1vw, 34px);
  }

  .referral__image {
    width: clamp(132px, 22vw, 170px);
    margin: -12px 0 -16px;
  }

  .referral__btn {
    width: 132px;
    height: 44px;
    font-size: 14px;
  }

  .referral__vec { display: none; }

  .header__controls .dropdown--about {
    width: 100%;
  }

  .header__controls .dropdown--about .dropdown__toggle {
    display: none !important;
  }

  .header__controls .dropdown--about .dropdown__menu {
    position: static;
    display: grid !important;
    gap: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header__controls .dropdown--about .dropdown__menu a {
    display: block;
    padding: 8px 0;
    border-radius: 0;
    color: #fff;
    font-size: 15px;
  }

  .header__controls .dropdown--about .dropdown__menu a:hover {
    background: transparent;
    color: #fff;
  }

  .header__controls .dropdown--lang {
    width: 100%;
  }

  .header__controls .dropdown--lang .dropdown__toggle {
    display: none !important;
  }

  .header__controls .dropdown--lang .dropdown__menu {
    position: static;
    display: grid !important;
    gap: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header__controls .dropdown--lang .dropdown__menu a {
    padding: 8px 0;
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    background: transparent;
  }

  .header__controls .dropdown--lang .dropdown__menu a:hover {
    background: transparent;
    color: #fff;
  }

  .social__row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .dropdown--social {
    flex: 1 1 calc(50% - 5px);
    min-width: 220px;
  }

  .social-chip {
    width: 100%;
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .dropdown--social {
    flex-basis: 100%;
    min-width: 0;
  }
}

@media (max-width: 1599px) {
  .catalog-modal__grid {
    column-count: 3;
  }
}

@media (max-width: 1399px) {
  .catalog-modal__grid {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .container { width: calc(100% - 24px); }

  .page--content .header {
    padding-bottom: 16px;
  }

  .header__container {
    position: relative;
    z-index: var(--z-mobile-trigger);
  }

  .breadcrumbs {
    margin-top: 14px;
    z-index: 1;
  }

  .breadcrumbs__list {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    gap: 7px;
    font-size: 11px;
  }

  .breadcrumbs__list li {
    flex: 0 0 auto;
  }

  .breadcrumbs__list li:last-child {
    min-width: 0;
    flex: 1 1 auto;
  }

  .breadcrumbs__current {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  {
    margin-top: 2px;
    margin-bottom: 40px;
  }

  .static-page__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .static-page__content {
    font-size: 13px;
    line-height: 1.3;
  }

  .static-page__content h2 {
    font-size: 15px;
  }

  .rules-page__title {
    font-size: 16px;
    margin: 10px 0 5px;
  }

  .rules-page__box {
    padding: 8px 12px;
  }

  {
    margin-top: 52px;
    margin-bottom: 40px;
  }

  .static-page__title,
  .about-section-title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .about-hero {
    min-height: 0;
    padding: 15px;
  }

  .about-hero__content {
    max-width: none;
    position: static;
  }

  .about-hero__content h2 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .about-hero__content p {
    font-size: 13px;
  }

  .about-advantages,
  .about-links {
    margin-top: 30px;
  }

  .about-advantages__grid {
    gap: 12px;
  }

  .about-advantages__card {
    min-height: 0;
    padding: 15px;
  }

  .about-advantages__icon-circle {
    width: 62px;
    height: 62px;
    margin-bottom: 10px;
  }

  .about-advantages__icon-circle img {
    width: 26px;
    height: 39px;
  }

  .about-advantages__icon--price {
    width: 26px !important;
    height: 39px !important;
  }

  .about-advantages__icon--cart {
    width: 32px !important;
    height: 32px !important;
  }

  .about-advantages__icon--box {
    width: 31px !important;
    height: 32px !important;
  }

  .about-advantages__icon-circle--number {
    font-size: 44px;
  }

  .about-advantages__card h3 {
    font-size: 22px;
  }

  .about-advantages__card p {
    font-size: 12px;
  }

  .about-links__grid {
    gap: 12px;
  }

  .about-links__card {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    overflow: hidden;
  }

  .about-links__icon-wrap {
    grid-row: 1;
    align-self: stretch;
  }

  .about-links__icon-wrap img {
    width: 28px;
    height: 28px;
  }

  .about-links__text {
    padding: 14px 14px 12px;
  }

  .about-links__text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .about-links__text p {
    font-size: 13px;
    line-height: 1.35;
  }

  .about-links__btn {
    grid-column: 1 / -1;
    margin: 0;
    width: 100%;
    min-width: 0;
    height: 48px;
    border-radius: 0 0 20px 20px;
    font-size: 15px;
  }

  .faq-page {
    gap: 16px;
  }

  .faq-page__intro {
    display: block;
  }

  .faq-page__icon {
    width: 84px;
    height: 84px;
    margin-bottom: 12px;
  }

  .faq-page__icon img {
    width: 50px;
    height: 50px;
  }

  .faq-page__intro h2 {
    font-size: 36px;
    margin: 0 0 10px;
  }

  .faq-page__intro p {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq-item__toggle {
    min-height: 50px;
    padding: 8px 8px 8px 14px;
    gap: 10px;
    font-size: 14px;
  }

  .faq-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .faq-item__icon::before {
    font-size: 24px;
  }

  .faq-item__content-inner {
    padding: 2px 14px 14px;
  }

  .faq-item__content p {
    font-size: 13px;
    line-height: 1.35;
  }

  .rules-page__title {
    font-size: 15px;
  }

  .rules-page__box {
    padding: 7px 9px;
    border-radius: 9px;
  }

  .rules-page__list li,
  .rules-page__sublist li {
    padding-left: 15px;
    font-size: 13px;
    line-height: 1.35;
  }

  .rules-page__list li::before,
  .rules-page__sublist li::before {
    left: 4px;
    top: 7px;
    width: 4px;
    height: 4px;
  }

  .header__container {
    grid-template-columns: 1fr auto;
    gap: 8px;
    justify-content: space-between;
  }

  .header__controls .header__catalog-btn {
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 260px;
  }

  .hero__content {
    padding: 0 20px 42px;
    align-items: center;
    text-align: center;
  }

  .hero__title { font-size: 32px; }
  .hero__text {
    font-size: 14px;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero__btn {
    align-self: center;
  }

  .hero__bg {
    display: none;
  }

  .hero__side {
    top: auto;
    bottom: 10px;
    width: auto;
    background: transparent;
    pointer-events: none;
    z-index: 4;
  }

  .hero__side--left,
  .hero__side--right {
    border-radius: 0;
  }

  .hero__side--left {
    left: 50%;
    transform: translateX(-38px);
  }

  .hero__side--right {
    left: 50%;
    right: auto;
    transform: translateX(8px);
  }

  .hero__arrow {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: auto;
  }

  .hero__arrow img {
    width: 10px;
    height: 14px;
  }

  .top-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .social__row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .dropdown--social {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  .social-chip {
    width: 100%;
  }

  .product-row {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .product-row__left {
    grid-template-columns: auto auto 1fr;
  }

  .product-row__left .hint,
  .tooltip { display: none !important; }

  .product-row__icon-tip {
    left: 0;
    transform: none;
    top: calc(100% + 6px);
    max-width: none;
    white-space: nowrap;
  }

  .product-row__icon-tip::before {
    left: 10px;
    transform: none;
  }

  .product-row__right {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .product-row__qty,
  .product-row__price {
    min-width: 78px;
  }

  .product-row__link {
    width: 100%;
    max-width: 160px;
  }

  .products-table__header {
    padding: 10px 12px;
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .products-table__header h3,
  .products-table__header .h3 { font-size: 18px; }

  .referral {
    height: auto;
    min-height: 135px;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
  }

  .referral__content {
    height: auto;
    align-items: center;
    text-align: center;
  }

  .referral__kicker {
    font-size: 16px;
    padding-left: 0;
  }

  .referral__title {
    font-size: 30px;
    margin-top: 6px;
  }

  .referral__image { display: none; }
  .referral__vec { display: none; }

  .referral__btn {
    align-self: center;
  }

  .social__all {
    justify-self: start;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__actions {
    justify-items: start;
  }

  .catalog-modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    padding: 16px;
    overflow: hidden;
    overflow-y: auto;
  }

  .catalog-modal__sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
  }

  .catalog-modal__subtitle {
    margin-top: 14px;
    font-size: 20px;
  }

  .catalog-modal__select-wrap {
    display: block;
    margin-bottom: 10px;
  }

  .catalog-modal__cats {
    display: none;
  }

  .catalog-modal__content {
    padding: 16px;
    min-height: 0;
    overflow: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-self: start;
  }

  .catalog-modal__title {
    font-size: 24px;
    margin: 0 0 10px;
  }

  .catalog-modal__grid {
    column-count: initial;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalog-item {
    margin: 0;
  }

  .accsmoll-link img {
    height: 20px;
  }
}

@media (max-width: 374px) {
  .section-title { font-size: 20px; }
  .hero__title { font-size: 26px; }
  .product-card__btn,
  .product-row__right button,
  .footer__btn,
  .referral__btn { font-size: 14px; }
}

@media (max-width: 767px) {
  .page--content .header__bg {
    height: 120px;
  }
}

/* Product page */
.product-page__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 30px;
  align-items: start;
}

.product-page__head,
.product-page__panel,
.product-buy {
  background: var(--surface);
  box-shadow: 0 4px 36px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
}

.product-page__head {
  padding: 20px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
}

.product-page__meta {
  min-width: 0;
}

.product-page__logo {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: contain;
}

.product-page__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  padding-right: 96px;
}
.product-page__title h1 {
  font-size: inherit;
  margin: 0;
  line-height: inherit;
}

.product-page__title-wrap {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  word-break: break-word;
}

.product-page__new-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-page__new-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.product-page__new-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  display: none;
  z-index: var(--z-tooltip);
}

.product-page__new-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.95) transparent;
}

.product-page__new-icon:hover .product-page__new-tip {
  display: block;
}

.product-page__chips {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-page__chip {
  height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  background: #f6f6f6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.product-page__chip img {
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.product-page__chip .product-page__chip-icon--cart {
  width: 14px;
  height: 14px;
}

.product-page__chip .product-page__chip-icon--calendar {
  width: 14px;
  height: 14px;
}

.product-page__chip--new {
  background: var(--accent);
  font-weight: 700;
}

.product-page__flags {
  display: flex;
  gap: 8px;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.product-page__flags > .product-page__flag {
  width: 34px;
  height: 26px;
  border-radius: 5px;
  background: #d5f0fa;
  border: 1px solid #70c1df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-page__flags > .product-page__flag + .product-page__flag {
  background: #dafdca;
  border-color: #6ad23a;
}

.product-page__flags > .product-page__flag > img {
  display: block;
}

.product-page__flag {
  position: relative;
}

.product-page__flag-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  display: none;
  z-index: var(--z-tooltip);
}

.product-page__flag-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.95) transparent;
}

.product-page__flag:hover .product-page__flag-tip {
  display: block;
}

.product-page__panel {
  margin-top: 20px;
  overflow: hidden;
}

.product-page__tabs {
  height: 60px;
  background: #e5ffd4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-page__tabs button {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.product-page__tabs .product-page__tab-btn--active {
  background: #d5f4c3;
}

.product-page__tabs .product-page__tab-btn--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translate(-50%, 100%);
  width: 20px;
  height: 10px;
  background: url(img/polygon.png) center / contain no-repeat;
  pointer-events: none;
}

.product-page__content {
  padding: 14px 20px 20px;
}

.product-page__tab-panel {
  display: none;
}

.product-page__tab-panel.product-page__tab-panel--active {
  display: block;
}

.product-page__content ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.4;
}

.product-page__content li {
  margin-bottom: 3px;
  position: relative;
  padding-left: 15px;
}

.product-page__content li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #79d945;
  position: absolute;
  left: 0;
  top: 8px;
}

.product-page__faq-note {
  margin-top: 14px;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 16px 20px;
}

.product-page__faq-note h3,
.product-page__faq-note .h3 {
  margin: 0 0 8px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
}

.product-page__faq-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.product-buy {
  padding: 20px;
}

.product-buy h2,
.product-buy .h2 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
}

.product-buy input {
  width: 100%;
  border: 0;
  height: 45px;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 0 18px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #111;
  margin-bottom: 10px;
}

.product-buy input::placeholder {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
}

.product-buy input:focus,
.product-buy input:focus-visible,
.product-buy input:active {
  outline: none;
  box-shadow: none;
  border: 0;
}

.product-buy__row {
  display: grid;
  grid-template-columns: 117px 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.product-buy__row input {
  margin-bottom: 0;
}

.product-buy__qty-group {
  display: grid;
  grid-template-columns: 70px 47px;
  gap: 0;
}

.product-buy__qty-input,
.product-buy__qty-unit {
  height: 45px;
  font-family: Montserrat, sans-serif;
  color: #111;
}

.product-buy .product-buy__qty-input {
  margin: 0;
  border-radius: 10px 0 0 10px;
  padding: 0 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  background: #f6f6f6;
  appearance: textfield;
}

.product-buy__qty-input::-webkit-outer-spin-button,
.product-buy__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-buy__qty-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  background: #ebebeb;
  font-size: 14px;
  font-weight: 600;
}

.product-buy__stock {
  margin: 10px 0 15px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}


.product-buy__method {
  width: 100%;
  border: 0;
  height: 58px;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 0 34px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  position: relative;
  justify-content: flex-start;
}

.product-buy__method > img {
  width: 38px;
  height: 38px;
}

.product-buy__method span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #111;
}

.product-buy__method b {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.product-buy__method small {
  width: fit-content;
  margin-top: 3px;
  padding: 2px 5px;
  border-radius: 10px;
  background: var(--accent);
  font-size: 12px;
}

.product-buy__method .product-buy__arrow {
  position: absolute;
  right: 12px;
  width: 6px;
  height: 9px;
  filter: brightness(0);
}

.product-buy__menu {
  width: 100%;
  margin-top: 8px;
}

.product-buy__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.product-buy__menu a img {
  width: 30px;
  height: 30px;
}

.product-buy__menu a span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.product-buy__menu a b {
  font-size: 14px;
  font-weight: 600;
}

.product-buy__menu a small {
  width: fit-content;
  margin-top: 3px;
  padding: 2px 5px;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 12px;
}

.product-buy__total {
  margin: 20px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.product-buy__total span {
  font-size: 12px;
  line-height: 1;
}

.product-buy__total b {
  font-size: 24px;
  line-height: 1;
}

.product-buy__actions {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
}

.product-buy__submit,
.product-card-mini-btn {
  height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.product-buy__submit:hover,
.product-card-mini-btn:hover {
  background-color: #e1ffce;
  border-color: #8ff451;
}

.product-buy__cart {
  border: 0;
  border-radius: 10px;
  background: #ebebeb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-buy__cart img {
  width: 22px;
  height: 22px;
}

.product-similar {
  margin-top: 50px;
}

.product-similar h2,
.product-similar .h2 {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}

.product-similar__wrap {
  position: relative;
}

.product-similar__viewport {
  overflow: hidden;
}

.product-similar__scrollbar {
  display: none;
}

.product-similar__grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.product-similar__grid::-webkit-scrollbar {
  display: none;
}

.product-card-mini {
  width: 160px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  word-break: break-word;
}

.product-card-mini img {
  width: 80px;
  height: 80px;
  align-self: center;
  margin-inline: auto;
  object-fit: contain;
}

.product-card-mini p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.25;
  min-height: calc(1.25em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-mini div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 15px;
}

.product-card-mini span,
.product-card-mini b {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.product-card-mini-btn {
  width: 100%;
  margin-top: auto;
}

.product-similar__prev,
.product-similar__next {
  position: absolute;
  right: 4px;
  top: 66px;
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-similar__prev {
  left: 4px;
  right: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.product-similar__next.product-similar__next--visible {
  opacity: 1;
  pointer-events: auto;
}

.product-similar__prev.product-similar__prev--visible {
  opacity: 1;
  pointer-events: auto;
}

.product-similar__prev img {
  transform: rotate(180deg);
}

.product-similar__prev img,
.product-similar__next img {
  width: 10px;
  height: 14px;
  filter: brightness(0);
}

.product-similar__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(270deg, var(--bg) 45%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-similar__wrap.product-similar__wrap--has-right::after {
  opacity: 1;
}

.product-similar__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 45%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 220ms ease;
}

.product-similar__wrap.product-similar__wrap--has-left::before {
  opacity: 1;
}

[data-theme="dark"] .product-page__head,
[data-theme="dark"] .product-page__panel,
[data-theme="dark"] .product-buy {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .product-page__tabs {
  background: #324527;
}

[data-theme="dark"] .product-page__faq-note,
[data-theme="dark"] .product-buy input,
[data-theme="dark"] .product-buy__row span,
[data-theme="dark"] .product-buy__row small,
[data-theme="dark"] .product-buy__method {
  background: #333333;
}

[data-theme="dark"] .product-page__tabs button,
[data-theme="dark"] .product-buy h2,
[data-theme="dark"] .product-buy .h2,
[data-theme="dark"] .product-buy__total b,
[data-theme="dark"] .product-buy__method b,
[data-theme="dark"] .product-buy__qty-unit,
[data-theme="dark"] .product-page__faq-note h3,
[data-theme="dark"] .product-page__faq-note .h3 {
  color: #fff;
}

[data-theme="dark"] .product-page__tabs .product-page__tab-btn--active {
  background: #405235;
}

[data-theme="dark"] .product-page__chip,
[data-theme="dark"] .product-buy__qty-unit,
[data-theme="dark"] .product-buy__cart {
  background: #313131;
  color: #fff;
}

[data-theme="dark"] .product-buy__qty-unit {
  background: #454545;
}

[data-theme="dark"] .product-buy__cart {
  background: #ebebeb;
}

[data-theme="dark"] .product-buy input {
  color: #fff;
}

[data-theme="dark"] .product-buy__stock,
[data-theme="dark"] .product-buy__total span,
[data-theme="dark"] .product-page__faq-note p,
[data-theme="dark"] .product-page__tab-panel li {
  color: rgba(255, 255, 255, 0.72);
}

[data-theme="dark"] .product-buy input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .product-page__chip .product-page__chip-icon--cart,
[data-theme="dark"] .product-page__chip .product-page__chip-icon--calendar {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .product-buy__cart img {
  filter: none;
}

[data-theme="dark"] .product-buy__arrow {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .product-buy__menu {
  background: rgb(62 62 62 / 99%);
}

[data-theme="dark"] .product-similar__wrap::after {
  background: linear-gradient(270deg, var(--bg) 45%, rgba(32, 32, 32, 0) 100%);
}

[data-theme="dark"] .product-similar__wrap::before {
  background: linear-gradient(90deg, var(--bg) 45%, rgba(32, 32, 32, 0) 100%);
}

@media (max-width: 1279px) {
  .product-page__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-page__title,
  .product-buy h2,
  .product-buy .h2 {
    font-size: 18px;
  }

  .product-similar__prev,
  .product-similar__next {
    display: none;
  }

  .product-similar__wrap::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-page {
    margin-top: 18px;
    margin-bottom: 40px;
  }

  .product-page__head {
    display: block;
    padding: 15px;
    position: relative;
    --product-icons-center-y: 32px;
  }

  .product-page__top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .product-page__summary {
    display: contents;
  }

  .product-page__head {
    order: 1;
  }

  .product-buy {
    order: 2;
  }

  .product-page__panel {
    order: 3;
  }

  .product-page__logo {
    position: absolute;
    top: calc(var(--product-icons-center-y) - 20px);
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .product-page__meta {
    min-width: 0;
  }

  .product-page__title {
    font-size: 20px;
    padding-right: 0;
    padding-top: 58px;
  }

  .product-page__title-wrap {
    display: block;
  }

  .product-page__new-icon {
    position: absolute;
    top: calc(var(--product-icons-center-y) - 10px);
    left: 58px;
    z-index: 2;
  }

  .product-page__chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .product-page__chip {
    height: 26px;
    padding: 0 10px;
    font-size: 12px;
  }

  .product-page__flags {
    position: absolute;
    top: calc(var(--product-icons-center-y) - 13px);
    right: 15px;
    z-index: 2;
  }

  .product-page__chip .product-page__chip-icon--cart,
  .product-page__chip .product-page__chip-icon--calendar {
    display: none;
  }

  .product-page__flag-tip {
    left: auto;
    right: 0;
    transform: none;
  }

  .product-page__flag-tip::before {
    left: auto;
    right: 10px;
    transform: none;
  }

  .product-page__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .product-page__tabs button {
    min-height: 40px;
    font-size: 14px;
    padding: 8px;
  }

  .product-page__content {
    padding: 15px;
  }

  .product-page__content ul,
  .product-page__faq-note,
  .product-page__faq-note p {
    font-size: 13px;
  }

  .product-buy {
    padding: 15px;
  }

  .product-buy input {
    padding: 0 12px;
  }

  .product-buy__row {
    grid-template-columns: 98px 1fr;
  }

  .product-buy__qty-group {
    grid-template-columns: 56px 42px;
  }

  .product-buy__qty-input {
    padding-left: 12px;
  }

  .product-buy__actions {
    grid-template-columns: 1fr;
  }

  .product-buy__cart {
    height: 44px;
  }

  .product-similar {
    margin-top: 36px;
  }

  .product-similar h2,
  .product-similar .h2 {
    font-size: 20px;
  }

  .product-similar__wrap::after,
  .product-similar__wrap::before {
    display: none;
  }

  .product-similar__scrollbar {
    display: block;
    margin-top: 10px;
    height: 8px;
    border-radius: 999px;
    background: #f6f6f6;
    overflow: hidden;
  }

  .product-similar__scrollbar-thumb {
    display: block;
    width: 40px;
    height: 100%;
    border-radius: 999px;
    background: #8ff451;
    transform: translateX(0);
    transition: transform 120ms linear, width 120ms linear;
  }

  .product-similar__grid {
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .product-similar__grid::-webkit-scrollbar {
    display: none;
  }
}

/* Final forpartners overrides (keep at end to win cascade) */
.page--content .forpartners-page__supplier-badge span {
  display: block;
  white-space: nowrap;
}

[data-theme="dark"] .page--content .forpartners-page__adv-circle {
  background: #0f1115;
}

[data-theme="dark"] .page--content .forpartners-page__adv-number {
  color: var(--accent);
}

[data-theme="dark"] .page--content .forpartners-page__adv p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
  .page--content .forpartners-page__supplier-info h3 {
    font-size: 16px;
  }

  .page--content .forpartners-page__supplier-visual {
    display: none;
  }

  .page--content .forpartners-page__supplier-box-main {
    width: 226px;
    left: 18px;
    bottom: 14px;
  }

  .page--content .forpartners-page__supplier-box-float {
    width: 62px;
    right: 46px;
    top: 8px;
  }

  .page--content .forpartners-page__supplier-badge {
    width: auto;
    right: 18px;
    top: 48px;
    border-radius: 14px;
    padding: 10px 14px 12px;
    font-size: 19px;
    line-height: 1.1;
  }

  .page--content .forpartners-page__supplier-note {
    width: 248px;
    right: 6px;
    top: 156px;
    min-height: 56px;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.25;
  }

  .page--content .forpartners-page__supplier-vector--left {
    width: 102px;
    left: 0;
    top: 38px;
  }

  .page--content .forpartners-page__supplier-vector--right {
    width: 82px;
    right: -8px;
    top: 186px;
  }
}
.referral-page {
  color: #0c0c0c;
}

.referral-page__hero {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a3129 url("img/bg_hero_ref.png") right center / cover no-repeat;
}

.referral-page__hero::before {
  display: none;
}

.referral-page__hero-content {
  max-width: 444px;
  align-self: center;
}

.referral-page__hero-content h2 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
}

.referral-page__hero-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #fff;
}

.referral-page__hero-btn {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 167px;
  height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.referral-page__hero-btn:hover {
  background: var(--accent-soft);
}

.referral-page__section-title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #0c0c0c;
}

.referral-page__program,
.referral-page__calculator-section,
.referral-page__income,
.referral-page__faq {
  margin-top: 50px;
}

.referral-page__program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.referral-page__program-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f6f6f6;
  text-align: center;
}

.referral-page__program-card h3 {
  margin: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--accent);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: #000;
}

.referral-page__program-card p {
  margin: 0;
  min-height: 74px;
  padding: 18px 20px 12px;
  font-size: 14px;
  line-height: 1.25;
  color: #111;
}

.referral-page__calculator {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 36.9px rgba(0, 0, 0, 0.07);
  padding: 16px 20px 10px;
}

.referral-page__calculator-head,
.referral-page__calculator-values {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.referral-page__calculator-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #0c0c0c;
}

.referral-page__calculator-values {
  margin-top: 6px;
}

.referral-page__calculator-referrals,
.referral-page__calculator-amount {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  color: #0c0c0c;
}

.referral-page__calculator-track {
  margin-top: 14px;
}

.referral-page__range {
  width: 100%;
  height: 8px;
  border-radius: 20px;
  appearance: none;
  outline: none;
  background: linear-gradient(to right, #e4ffd4 0%, #e4ffd4 var(--progress, 0%), #f6f6f6 var(--progress, 0%), #f6f6f6 100%);
}

.referral-page__range::-webkit-slider-thumb {
  appearance: none;
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.referral-page__range::-moz-range-thumb {
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.referral-page__ticks {
  margin-top: 11px;
  display: flex;
  gap: 0;
  padding: 0 38px 0 40px;
  justify-content: space-around;
  box-sizing: border-box;
}

.referral-page__ticks span {
  justify-self: center;
  width: 1px;
  height: 9px;
  background: #111;
  opacity: 0.45;
}
.referral-page__ticks span:first-child,
.referral-page__ticks span:last-child {
  display: none;
}

.referral-page__calculator-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #0c0c0c;
}

.referral-page__income-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.referral-page__income-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 36.9px rgba(0, 0, 0, 0.07);
}

.referral-page__income-icon-wrap {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}

.referral-page__income-icon-wrap img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.referral-page__income-card p {
  margin: 0;
  padding: 20px;
  font-size: 14px;
  line-height: 1.25;
  color: #111;
}

.referral-page__faq-list {
  display: grid;
  gap: 8px;
}

.referral-page__faq-list .faq-item__toggle {
  min-height: 55px;
}

[data-theme="dark"] .referral-page__section-title,
[data-theme="dark"] .referral-page__calculator-head p,
[data-theme="dark"] .referral-page__calculator-referrals,
[data-theme="dark"] .referral-page__calculator-amount,
[data-theme="dark"] .referral-page__calculator-note {
  color: #fff;
}

[data-theme="dark"] .referral-page__program-card,
[data-theme="dark"] .referral-page__calculator,
[data-theme="dark"] .referral-page__income-card {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .referral-page__program-card p,
[data-theme="dark"] .referral-page__income-card p {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="dark"] .referral-page__range {
  background: linear-gradient(to right, #54743d 0%, #54743d var(--progress, 0%), #3a3a3a var(--progress, 0%), #3a3a3a 100%);
}

[data-theme="dark"] .referral-page__ticks span {
  background: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .referral-page__faq-list .faq-item {
  background: #282828;
  box-shadow: none;
}

[data-theme="dark"] .referral-page__faq-list .faq-item.is-open {
  background: #333333;
}

[data-theme="dark"] .referral-page__faq-list .faq-item__toggle {
  color: #fff;
}

[data-theme="dark"] .referral-page__faq-list .faq-item__content p {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1279px) {
  .referral-page__hero {
    min-height: 0;
    background-position: center right 30%;
  }

  .referral-page__hero-content {
    max-width: 100%;
  }

  .referral-page__hero-content h2 {
    font-size: 32px;
  }

  .referral-page__program-grid,
  .referral-page__income-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .referral-page__calculator-referrals,
  .referral-page__calculator-amount {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .referral-page__section-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .referral-page__program,
  .referral-page__calculator-section,
  .referral-page__income,
  .referral-page__faq {
    margin-top: 30px;
  }

  .referral-page__hero {
    padding: 15px;
    background-position: center;
  }

  .referral-page__hero-content h2 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .referral-page__hero-content p {
    font-size: 13px;
    line-height: 1.35;
  }

  .referral-page__hero-btn {
    margin-top: 14px;
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .referral-page__program-grid,
  .referral-page__income-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .referral-page__program-card h3 {
    min-height: 64px;
    font-size: 30px;
  }

  .referral-page__program-card p,
  .referral-page__income-card p {
    min-height: 0;
    padding: 10px 14px 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .referral-page__income-icon-wrap {
    height: 118px;
  }

  .referral-page__income-icon-wrap img {
    width: 76px;
    height: 76px;
  }

  .referral-page__calculator {
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
  }

  .referral-page__calculator-head,
  .referral-page__calculator-values {
    display: contents;
  }

  .referral-page__calculator-head p:first-child {
    order: 1;
  }

  .referral-page__calculator-referrals {
    order: 2;
    margin-top: 2px;
  }

  .referral-page__calculator-head p:last-child {
    order: 3;
    margin-top: 6px;
  }

  .referral-page__calculator-amount {
    order: 4;
    margin-top: 2px;
  }

  .referral-page__calculator-track {
    order: 5;
    margin-top: 12px;
  }

  .referral-page__calculator-note {
    order: 6;
  }

  .referral-page__calculator-referrals,
  .referral-page__calculator-amount {
    font-size: 30px;
  }

  .referral-page__ticks {
    margin-top: 8px;
  }

  .referral-page__calculator-note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.25;
  }
}

.windows-page__lead {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.35;
}

.windows-page__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
}

.windows-page__open-btn {
  min-height: 51px;
  border: 1px solid #8ff451;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.windows-page__open-btn:hover {
  background: var(--accent-soft);
  border-color: #8ff451;
}

.windows-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.windows-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.windows-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.windows-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.985);
  width: 476px;
  max-width: calc(100% - 24px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 36.9px rgba(0, 0, 0, 0.07);
  padding: 20px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.windows-modal.is-open .windows-modal__panel {
  transform: translate(-50%, -50%) scale(1);
}

.windows-modal__panel--check {
  min-height: 308px;
}

.windows-modal__panel--cart-checkout {
  min-height: 338px;
}

.windows-modal__panel--product-pay {
  min-height: 509px;
}

.windows-modal__panel--cart-list {
  min-height: 531px;
  display: flex;
  flex-direction: column;
}

.windows-modal__panel--cart-list .windows-modal__list-wrap {
  flex: 1 1 auto;
  min-height: 0;
}

.windows-modal__panel--cart-list .windows-modal__total-btn {
  margin-top: auto;
}

.windows-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.windows-modal__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111;
}

.windows-modal__logo-img {
  width: 143px;
  height: 22px;
  object-fit: contain;
}

.windows-modal__logo-mark {
  font-family: "Archivo Black", sans-serif;
  font-size: 40px;
  line-height: 30px;
  color: var(--accent);
}

.windows-modal__logo-text {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.windows-modal__close {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.windows-modal__text {
  margin: 16px 0 14px;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 500;
  color: #020714;
}

.windows-modal__input-wrap,
.windows-modal__select-wrap {
  position: relative;
  display: block;
}

.windows-modal__input {
  width: 100%;
  height: 45px;
  border: 0;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 0 20px;
  color: #111;
  font: 400 14px/1.2 Montserrat, sans-serif;
}

.windows-modal__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.windows-modal__icon-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.windows-modal__icon-btn img {
  width: 14px;
  height: 14px;
}

.windows-modal__submit {
  width: 100%;
  min-height: 51px;
  margin-top: 20px;
  border: 1px solid #8ff451;
  border-radius: 10px;
  background: var(--accent);
  color: #111;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.windows-modal__submit:hover {
  background: var(--accent-soft);
  border-color: #8ff451;
}

.windows-modal__subtitle {
  margin: 14px 0 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}

.windows-modal__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}


.windows-modal__check {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.windows-modal__check input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.windows-modal__check span {
  font-size: 12px;
  line-height: 1.25;
}

.windows-modal__check a {
  color: inherit;
  text-decoration: underline;
}

.windows-modal__total {
  height: 51px;
  margin-top: 20px;
  border-radius: 10px;
  background: var(--accent);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.windows-modal__total p {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #111;
}

.windows-modal__total .windows-modal__submit {
  width: auto;
  min-height: 0;
  margin-top: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 16px;
}

.windows-modal__total-btn {
  width: 100%;
  min-height: 51px;
  margin-top: 20px;
  border: 1px solid #8ff451;
  border-radius: 10px;
  background: var(--accent);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.windows-modal__total-btn:hover {
  background: var(--accent-soft);
  border-color: #8ff451;
}

.windows-modal__link {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  color: #0a51f5;
  text-decoration: underline;
}

.windows-modal__product-name {
  margin: 18px 0 16px;
  font-size: 14px;
  line-height: 1.2;
}

.windows-modal__meta-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.windows-modal__meta-head span {
  font-size: 12px;
  line-height: 1.2;
}

.windows-modal__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.windows-modal__meta-grid div {
  height: 45px;
  border-radius: 10px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.windows-modal__meta-grid b {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.windows-modal__copy-row {
  margin-top: 20px;
  height: 45px;
  border-radius: 10px;
  border: 1px dashed #afa88f;
  background: #ffeeb8;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px 0 20px;
}

.windows-modal__copy-row b,
.windows-modal__copy-row span {
  font-size: 14px;
  line-height: 1.2;
}

.windows-modal__copy-btn {
  border: 0;
  background: transparent;
  width: 18px;
  height: 18px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.windows-modal__copy-btn img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0);
}

.windows-modal__warning {
  margin: 20px 0 0;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 14px 20px;
  font-size: 12px;
  line-height: 1.3;
}

.windows-modal__list-wrap {
  margin-top: 18px;
  max-height: 371px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #8ff451 #f6f6f6;
}

.windows-modal__list-wrap::-webkit-scrollbar {
  width: 3px;
}

.windows-modal__list-wrap::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 10px;
}

.windows-modal__list-wrap::-webkit-scrollbar-thumb {
  background: #8ff451;
  border-radius: 10px;
}

.windows-modal__list {
  display: grid;
  gap: 10px;
}

.windows-modal__list-item {
  position: relative;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 14px 34px 16px 20px;
}

.windows-modal__item-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.windows-modal__item-remove:hover {
  background: rgba(0, 0, 0, 0.08);
}

.windows-modal__list-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.38;
}

.windows-modal__list-item div {
  margin-top: 10px;
  display: flex;
  gap: 24px;
}

.windows-modal__list-item span {
  font-size: 12px;
  line-height: 1.2;
}

[data-theme="dark"] .windows-page__lead {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .windows-modal__panel {
  background: #282828;
}

[data-theme="dark"] .windows-modal__logo,
[data-theme="dark"] .windows-modal__close,
[data-theme="dark"] .windows-modal__subtitle,
[data-theme="dark"] .windows-modal__text,
[data-theme="dark"] .windows-modal__product-name,
[data-theme="dark"] .windows-modal__meta-head span,
[data-theme="dark"] .windows-modal__warning,
[data-theme="dark"] .windows-modal__list-item p,
[data-theme="dark"] .windows-modal__list-item span,
[data-theme="dark"] .windows-modal__check span {
  color: #fff;
}

[data-theme="dark"] .windows-modal__logo-img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .windows-modal__input,
[data-theme="dark"] .windows-modal__method,
[data-theme="dark"] .windows-modal__meta-grid div,
[data-theme="dark"] .windows-modal__warning,
[data-theme="dark"] .windows-modal__list-item {
  background: #333;
  color: #fff;
}

[data-theme="dark"] .windows-modal__item-remove {
  color: #fff;
}

[data-theme="dark"] .windows-modal__item-remove:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .windows-modal__pay-select .product-buy__method,
[data-theme="dark"] .windows-modal__pay-select .product-buy__menu,
[data-theme="dark"] .windows-modal__pay-select .product-buy__menu a {
  background: #333;
}

[data-theme="dark"] .windows-modal__pay-select .product-buy__menu a:hover {
  background: #3b3b3b;
}

[data-theme="dark"] .windows-modal__pay-select .product-buy__method b,
[data-theme="dark"] .windows-modal__pay-select .product-buy__menu a b {
  color: #fff;
}

[data-theme="dark"] .windows-modal__pay-select .product-buy__method .product-buy__arrow {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .windows-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .windows-modal__copy-row {
  border-color: #5f5a47;
  background: #4b4532;
}

[data-theme="dark"] .windows-modal__copy-row b,
[data-theme="dark"] .windows-modal__copy-row span {
  color: #fff;
}

[data-theme="dark"] .windows-modal__icon-btn img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .windows-modal__copy-btn img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .windows-modal__list-wrap {
  scrollbar-color: #8ff451 #3c3c3c;
}

[data-theme="dark"] .windows-modal__list-wrap::-webkit-scrollbar-track {
  background: #3c3c3c;
}


@media (max-width: 767px) {
  .windows-modal__panel {
    width: calc(100% - 16px);
    padding: 14px;
    border-radius: 16px;
    max-height: calc(100vh - 16px);
    overflow: auto;
  }

  .windows-modal__logo-mark {
    font-size: 32px;
    line-height: 24px;
  }

  .windows-modal__logo-text {
    font-size: 18px;
  }

  .windows-modal__header {
    gap: 8px;
  }

  .windows-modal__row--split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .windows-modal__method {
    margin-top: 10px;
  }

  .windows-modal__total {
    height: auto;
    min-height: 51px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .windows-modal__meta-head,
  .windows-modal__meta-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .windows-modal__copy-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    height: auto;
    min-height: 45px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .windows-modal__copy-row b {
    grid-column: 1 / 2;
  }

  .windows-modal__copy-row span {
    grid-column: 1 / 2;
  }

  .windows-modal__copy-row .windows-modal__copy-btn {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    justify-self: end;
  }

  .windows-modal__list-item div {
    flex-direction: column;
    gap: 6px;
  }

  .windows-modal__total-btn {
    min-height: 48px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.windows-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10002;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  border-radius: 10px;
  background: #0f1115;
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.2;
  transition: opacity 180ms ease, transform 180ms ease;
}

.windows-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}











/* Select options */
.select-option {
  position: relative;
}
.select-option-button {
  flex: none;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 7;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  color: #111;
  text-align: left;
  border-radius: 10px;
  background: #f6f6f6;
  padding: 6px 34px 6px 10px;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.select-option__button-badge {
  float: right;
}
.select-option__button-badge span {
  min-height: 20px;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-size: 12px;
  color: #000;
  background: #8FF451;
  border-radius: 10px;
}

.product-buy .select-option__button-badge {
  display: block;
  margin: 2px 0 0 0;
  float: none;
}

.select-option-button span {
  pointer-events: none;
}
.select-option-button:hover {
  border-color: #d0eaff;
}
.select-option-button__bgs {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(143, 244, 81, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.select-option__button-label {
  flex: 1 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}
@media all and (max-width: 524px){
  .select-option__button-label {
    max-width: none;
  }
}
.select-option-button input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  border: 0;
  background: 0;
  opacity: 0;
}
.select-option-drop input:checked + .select-option-button__bgs {
  opacity: 1;
}
.select-option > .select-option-button {
  padding-right: 30px;
}
.select-option > .select-option-button::before {
  width: 6px;
  height: 9px;
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 50%;
  font-weight: 900;
  font-size: 18px;
  margin: -4px 0 0 0 !important;
  background: no-repeat 0 0 url(img/icon-arrow-right.svg);
  background-size: 100% 100%;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  filter: brightness(0);
}
.select-option > .select-option-button.drop--open::after {
  transform: rotate(-90deg);
}
.focus-enable .select-option:focus-within > .select-option-button,
.select-option-button.drop--open {
  border-color: #afc3ff;
  border-bottom-color: transparent;
}
.select-option-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}
.select-option-button-placeholder {
  font-size: 14px;
  color: #4f4f56;
}
.select-option-drop {
  width: auto;
  max-height: 200px;
  padding: 8px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  top: 100%;
  margin: 10px 0 0 0;
  border: 0;
  background: #f6f6f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.focus-enable .select-option:focus-within .select-option-drop,
.select-option-button.drop--open + .select-option-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.focus-enable .select-option:focus-within .select-option-drop:focus-within {
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.select-option-drop .select-option-button {
  width: 100%;
  height: auto;
  min-height: 30px;
  padding: 6px 10px;
  border: 0;
  background: 0;
  border-radius: 8px;
}
.select-option-drop .select-option-button.current::after {
  width: 8px;
  height: 8px;
  content: ' ';
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  margin: -4px 0 0 0;
  background: #8ff451;
  border-radius: 50%;
}
.select-option-drop .select-option-button:hover {
  background: #e9e9e9;
}



[data-theme="dark"] .select-option-button {
  color: #fff;
  background: #333;
}
[data-theme="dark"] .select-option-button-placeholder {
  color: #eee;
}
[data-theme="dark"] .select-option-drop {
  background: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .select-option-drop .select-option-button:hover {
  background: #555;
}
[data-theme="dark"] .select-option > .select-option-button::before {
  filter: brightness(1);
}





