:root {
  color-scheme: light dark;
  --main-background: white;
  --main-text: black;
  --main-blue: #00AEEF;
  --form-bg: rgba(240, 239, 256, .2);
  --secondary-text: #B0B0B0;
  --blue-text: #42BBFF;
  --red-text: #F52D20;
  --green-text: #00DE73;
  --bg-blue: #315d88;
  --main-gray: rgb(219, 219, 219);
  --secondary-active: #364460;
  --secondary-active-transparent: rgba(54, 68, 96, .5);
  --green-member: #01FF69;
  --button-box-shadow: 0 0 10px 0 #01FE0180;
  --button-border: 1px solid #26DC38;
  --green-box-border: .5px solid #01FF6999;
  --green-box-background: linear-gradient(0deg, rgba(1, 255, 105, 0.03), rgba(1, 255, 105, 0.03));
  --green-button-primary: #8d5d35;
  --green-button-secondary: #8d4635;
  --pink-primary: #F635E0;
  --pink-secondary: #B401D4;
  --lef-color: #7a53e3;
}

* {
  box-sizing: border-box;
  font-family: 'Golos', 'Atlas Grotesk Web Regular', Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--main-background);
  color: var(--main-text);
  font-size: 12px;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.row.desktop-only,
.ItemPage__desktop.desktop-only {
  display: flex;
  flex-wrap: wrap;
}

.mobile-only {
  display: none;
}

@media (max-width: 767.98px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

.opened-header {
  padding-top: 0;
}

.Header--relative {
  position: relative;
  pointer-events: none;
}

.Header--relative .Header__body {
  pointer-events: none;
}

.App {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.container-2 {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xs {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container {
  max-width: 100vw;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 544px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 724px;
  }
}

@media (min-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1064px;
  }
}

@media (min-width: 1368px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1358px;
  }
}

.Header {
  background-color: var(--main-background);
  z-index: 1000;
  overflow: visible;
}

.Header--relative {
  position: relative;
}

.Header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.Header__top {
  height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.Header__top > .Header__logo-link {
  display: block;
  overflow: hidden;
  width: 150px;
  height: 70px;
  flex-shrink: 0;
}

.Header__logo {
  display: block;
  width: 150px;
  height: 70px;
  object-fit: cover;
  object-position: center;
}

.Header__desktop {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.Header__burger {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent center / contain no-repeat url('/img/burger.svg');
  cursor: pointer;
  flex-shrink: 0;
}

.Header__burger--opened {
  background-image: url('/img/cross.svg');
}

.Header__mobile {
  display: none;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  background-color: var(--main-background);
  padding-bottom: 16px;
}

@media (max-width: 767.98px) {
  .Header__mobile:not([hidden]) {
    display: flex;
  }
}

.Header__mobile--inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.Header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.Header__mobile-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.Header__mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.Header__mobile-cart {
  margin-top: 12px;
}

.Header--relative .Header__burger,
.Header--relative .Header__mobile {
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .Header--relative {
    margin-bottom: 10px;
  }

  .Header__mobile-actions {
    flex-shrink: 0;
  }

  .Header__mobile-actions .Header__section {
    width: auto;
  }

  .Header__section.d-flex {
    flex-direction: column !important;
    align-items: flex-end;
    gap: 8px;
  }

  .Header__mobile-actions .Header__section.d-flex .me-2 {
    margin-right: 0 !important;
    margin-bottom: 0;
  }
}

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

.Header__section {
  width: 120px;
}

.Header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 768px) {
  .Header__nav {
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
  }
}

.Header__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.Header__body {
  position: relative;
  overflow: visible;
}

.Header__categories--filter {
  flex-direction: column;
  align-items: stretch;
}

.Header__categories-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.Header__categories-spacer {
  flex: 1;
  min-width: 0;
}

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

.Header__categories-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.Header__categories-search {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.Header__search {
  width: 120px;
  max-width: 100%;
}

.Header__extended-filter {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--main-text);
  background-color: var(--main-background);
  padding: 0 15px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .Header__extended-filter {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    width: calc(100% - 30px);
    max-width: 960px;
  }
}

.Input__input {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--main-text);
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--main-text);
}

.Input__input::placeholder {
  color: var(--secondary-text);
}

.Input__input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.Input__input[type='number']::-webkit-outer-spin-button,
.Input__input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ColorSelector__swatch {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: 1px solid var(--main-text);
  cursor: pointer;
  padding: 0;
  margin: 2px;
}

.ColorSelector__swatch--selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  border: 2px solid var(--main-text);
  pointer-events: none;
}

.SizeSelector__size,
.catalog-filter-size,
.catalog-filter-sort {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
}

.SizeSelector__size--disabled {
  opacity: 0.35;
  cursor: default;
}

.text-underline {
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

.catalog-item[hidden] {
  display: none !important;
}

.Button {
  cursor: pointer;
  display: inline-block;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0 10px;
  height: 20px;
  line-height: 20px;
  color: var(--main-text);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.Button:hover {
  opacity: 0.4;
}

.Button--gray {
  background-color: var(--main-gray);
}

.Button--black {
  color: var(--main-background);
  background-color: var(--main-text);
}

.Button--black:hover {
  opacity: 0.85;
}

.Button:disabled,
.Button--black:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.Button--black:disabled:hover {
  opacity: 0.4;
}

.DropdownLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-right: 12px;
}

.DropdownLinks--hover {
  position: relative;
}

.DropdownLinks__popup {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 1002;
}

.DropdownLinks__area {
  display: none;
  flex-direction: column;
  background-color: var(--main-background, #fff);
  border: 1px solid var(--main-text, #0e0e0e);
}

.DropdownLinks--hover:hover .DropdownLinks__area {
  display: flex;
}

.Footer {
  margin-top: auto;
  border-top: 1px solid var(--main-text);
}

.Footer a:hover {
  opacity: 0.6;
}

.catalog-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -4px;
  margin-right: -4px;
}

.catalog-item,
.catalog-grid > .ItemCard {
  width: 15.5%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 15px;
}

.catalog-item .ItemCard {
  width: 100%;
  margin-bottom: 0;
}

.Img {
  width: 100%;
  transition: opacity 0.25s ease;
}

.Img--hidden {
  opacity: 0;
}

.Img__img {
  display: block;
  width: 100%;
}

.ItemCard {
  display: inline-block;
  cursor: pointer;
  margin-bottom: 15px;
  color: var(--main-text);
  vertical-align: top;
}

.ItemCard--empty {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1399.98px) {
  .catalog-item,
  .catalog-grid > .ItemCard {
    width: 24%;
  }
}

@media (max-width: 991.98px) {
  .catalog-item,
  .catalog-grid > .ItemCard {
    width: 31%;
  }
}

@media (max-width: 767.98px) {
  .catalog-item,
  .catalog-grid > .ItemCard {
    width: 49%;
    padding: 0 4px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }
}

@media (max-width: 700px) {
  .Header__categories-search {
    position: absolute;
    top: 20px;
    right: 80px;
    flex: none;
    z-index: 1002;
    justify-content: flex-end;
  }

  .Header__categories-row .Header__categories-spacer {
    display: none;
  }

  .catalog-item,
  .catalog-grid > .ItemCard {
    width: 50% !important;
    min-width: 0 !important;
    padding: 0 4px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }

  .catalog-item .ItemCard {
    width: 100% !important;
    padding: 0;
    margin-bottom: 0;
  }
}

.ItemCard:hover .ItemData__price__name {
  text-decoration: underline;
}

.ItemCard__Img-container {
  position: relative;
  width: 100%;
  padding-top: 150%;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.ItemCard__Img-container__Img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ItemCard__Img-container__Img .Img__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ItemData {
  font-size: 12px;
  line-height: 1.4;
}

.ItemData__price__name {
  font-size: 12px;
  margin-bottom: 8px;
}

.Color {
  width: 12px;
  height: 12px;
  border: 1px solid black;
  display: inline-block;
  margin: 2px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.Color--selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  border: 2px solid black;
}

.ColorSizes {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ColorSizes__size {
  margin-right: 12px;
  font-size: 12px;
}

.text-disabled {
  opacity: 0.35;
}

.d-none-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.Breadcrumbs {
  font-size: 12px;
  color: var(--main-text);
}

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

.Breadcrumbs a:hover {
  text-decoration: underline;
}

.Breadcrumbs__sep {
  margin: 0 6px;
  opacity: 0.5;
}

.ItemPage {
  padding-bottom: 40px;
}

body.product-page {
  overflow: hidden;
}

body.product-page .App {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

body.product-page .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.product-page [data-product-page].ItemPage {
  flex: 1 1 auto;
  min-height: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: auto;
  overflow: hidden;
  padding-bottom: 0;
}

body.product-page [data-product-page] .container-2 {
  height: 100%;
}

.ItemPage__desktop {
  align-items: stretch;
  height: 100%;
}

.ItemPage__info-col,
.ItemPage__tooltips-col {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.ItemPage__info-sticky {
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.ItemPage__info-sticky::-webkit-scrollbar {
  width: 6px;
}

.ItemPage__info-sticky::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}

.ItemPage__tooltips-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ItemPage__tooltips-sticky {
  height: auto;
  max-height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  scrollbar-width: none;
}

.ItemPage__tooltips-sticky::-webkit-scrollbar {
  display: none;
}

.ItemPage__gallery-col {
  flex: 0 0 auto;
  /*min-width: 350px;*/
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ItemPage__gallery-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ItemPage__gallery-scroll::-webkit-scrollbar {
  display: none;
}

.ItemPage--zoomed .ItemPage__gallery-col {
  width: 66.5% !important;
}

.ItemPage__Img,
.ItemPage__Img-mobile {
  width: 100%;
  height: auto;
  display: block;
}

.ItemPage__Img .Img__img,
.ItemPage__Img-mobile .Img__img {
  width: 100%;
  height: auto;
  display: block;
}

.ItemPage__Img-mobile {
  width: 90vw;
  max-width: 420px;
  flex-shrink: 0;
}

.ItemPage__scroll-mobile {
  -webkit-overflow-scrolling: touch;
}

.ImgTooltipDesktop,
.ItemPage__tooltip {
  display: block;
  width: auto;
  max-width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.6;
  cursor: default;
}

.ItemPage__tooltip--active,
.ImgTooltipDesktop.text-underline {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ItemPage__dot {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  padding: 0;
  border: none;
  background: #dadada;
  cursor: pointer;
  position: relative;
}

.ItemPage__dot--active::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
}

.ItemPage__title {
  font-size: 24px;
  font-weight: 600;
}

.ItemPage__price-old {
  text-decoration: line-through;
  opacity: 0.6;
}

.ItemPage__color,
.ItemPage__size {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.ItemPage__color {
  cursor: pointer;
  margin-bottom: 8px;
}

.ItemPage__color .Color {
  margin-right: 12px;
}

.ItemPage__size {
  display: inline;
  margin-right: 12px;
  cursor: pointer;
}

.ItemPage__color--disabled,
.ItemPage__size--disabled {
  opacity: 0.35;
  cursor: default;
}

.ItemPage__color--disabled .Color {
  cursor: default;
}

.ItemPage__size--selected {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ItemPage__description {
  font-size: 13px;
  line-height: 1.5;
}

.ItemPage__actions-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.ItemPage__actions-split {
  align-items: center;
}

.ItemPage__split-note {
  font-size: 12px;
  white-space: nowrap;
}

.ItemPage__yandex-split {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ItemPage__yandex-split-icon {
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCwwLDI1NiwyNTYiPgo8ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0iYnV0dCIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyB0cmFuc2Zvcm09InNjYWxlKDgsOCkiPjxwYXRoIGQ9Ik0xOS42NjMsNGgtMy40OTNjLTMuNDMyLDAgLTYuMTcsMi43MiAtNi4xNyw4YzAsMy4xNjggMS4yMzcsNS41MDQgMy43NDksNi42NTZsLTQuNjg4LDguODMyYy0wLjE1MywwLjI4OSAwLDAuNTEyIDAuMjQ1LDAuNTEyaDIuMTc1YzAuMTg0LDAgMC4zMDcsLTAuMDY0IDAuMzY4LC0wLjIyM2w0LjQwMSwtOC43NzhoMS4yNWwtMC4wMDgsOC43NzdjMCwwLjA5NiAwLjA5MiwwLjIyMyAwLjIxNCwwLjIyM2gyLjA0OWMwLjE4NCwwIDAuMjQ1LC0wLjA5NiAwLjI0NSwtMC4yNTV2LTIzLjQyNWMwLC0wLjIyNCAtMC4xMjMsLTAuMzIgLTAuMzM3LC0wLjMyek0xNy41LDE3aC0xLjVjLTEuNSwwIC0zLjUsLTEuMTYgLTMuNSwtNWMwLC00LjAwMSAxLjYzMSwtNiAzLjUsLTZoMS41eiI+PC9wYXRoPjwvZz48L2c+Cjwvc3ZnPgo=") no-repeat center;
  background-size: contain;
}

.ItemPage__sizes-grid {
  font-size: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-left: 0;
  margin-right: 0;
}

.ItemPage__sizes-grid-col {
  flex: 0 0 auto;
  width: auto;
  min-width: min-content;
  max-width: none;
  padding-left: 6px;
  padding-right: 6px;
}

.ItemPage__sizes-grid-col:first-child {
  padding-left: 0;
}

.ItemPage__sizes-grid-col:first-child .ItemPage__sizes-grid-cell {
  white-space: normal;
  padding-right: 8px;
}

.ItemPage__sizes-grid-cell {
  padding: 5px 0;
  border-bottom: 1px solid var(--main-gray, #dbdbdb);
}

.ItemPage__sizes-grid-col .ItemPage__sizes-grid-cell:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ItemPage__sizes-grid-col .ItemPage__sizes-grid-cell:first-child {
  padding-top: 0;
}

.ItemPage__table {
  font-size: 12px;
}

.ItemPage__sizes-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.ItemPage__sizes-dropdown summary::-webkit-details-marker {
  display: none;
}

.cursor-zoom-in {
  cursor: zoom-in;
}

.cursor-zoom-out {
  cursor: zoom-out;
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.CmsPage {
  padding-bottom: 40px;
}

.CmsPage__body {
  font-size: 16px;
  line-height: 1.5;
}

.CmsPage__image {
  display: block;
}

body.auth-page .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.auth-layout {
  display: flex;
  flex: 1;
  min-height: calc(100vh - 70px);
  align-items: stretch;
  overflow-x: hidden;
}

.auth-layout__form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-layout__form-inner {
  max-width: 800px;
  width: 100%;
}

.auth-layout__image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  display: none;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  padding: 1rem 2rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.auth-tab:hover {
  color: #000;
  background-color: #f8f9fa;
}

.auth-tab--active {
  color: #000;
  border-bottom-color: #000;
  background-color: #f8f9fa;
}

.auth-form .form-control {
  border-radius: 0;
  border: 1px solid var(--main-text, #0e0e0e);
  box-shadow: none;
}

.auth-form .form-control:focus {
  border-color: var(--main-text, #0e0e0e);
  box-shadow: none;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
}

.auth-password-field {
  position: relative;
}

.auth-password-field .form-control {
  padding-right: 2.75rem;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.auth-password-toggle:focus {
  outline: none;
  box-shadow: none;
}

.auth-form .form-check-label a {
  color: inherit;
}

.auth-success {
  max-width: 100%;
}

.auth-success__text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.auth-success__hint {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.auth-notice {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.auth-notice--success {
  background: #eef9f0;
  color: #1f5f2e;
}

.auth-notice--error {
  background: #fdeeee;
  color: #8a1f1f;
}

@media (min-width: 768px) {
  .auth-layout__image {
    display: block;
  }
}

@media (max-width: 991.98px) {
  body.product-page {
    overflow: auto;
  }

  body.product-page .App {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  body.product-page .content {
    height: auto;
    overflow: visible;
  }

  body.product-page [data-product-page].ItemPage {
    flex: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    overflow: visible;
  }

  .ItemPage__gallery-col {
    width: 100%;
  }
}

.h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

@media (max-width: 767.98px) {
  .h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

.link-underline-black {
  text-decoration: underline !important;
}

body.account-page .content {
  flex: 1;
}

body.cart-page .content {
  flex: 1;
}

.Cart {
  flex-grow: 1;
}

.QuantitySelector .Button {
  min-width: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .Account__layout {
    flex-wrap: nowrap !important;
    align-items: flex-start;
  }

  .Account__orders,
  .Account__sidebar {
    flex: 1 1 0;
    width: 50%;
    max-width: 50%;
    min-width: 0;
  }
}

.Account__sidebar .table-responsive {
  max-width: 100%;
  overflow-x: visible;
}

.Account .accordion {
  --bs-accordion-color: var(--main-text);
  --bs-accordion-bg: var(--main-background);
  --bs-accordion-border-color: var(--main-text);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--main-text);
  --bs-accordion-btn-bg: var(--main-background);
  --bs-accordion-active-color: var(--main-text);
  --bs-accordion-active-bg: #e7e7e7;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
}

.Account .accordion-button {
  font: inherit;
  box-shadow: none;
}

.Account .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.Account .accordion-button:focus {
  box-shadow: none;
  border-color: var(--main-text);
}

.Account .accordion-button .h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .Account .accordion-button .h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

.account-field--readonly,
.account-profile-form .form-control:disabled {
  opacity: 0.6;
  background: #f8f9fa;
}

.account-field:not(:disabled) {
  opacity: 1;
  background: #fff;
}

.account-bonus-table {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-modal[hidden] {
  display: none !important;
}

.account-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.account-modal__dialog {
  position: relative;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
}

.Cart__items {
  display: flex;
  flex-direction: column;
}

.Cart__header {
  display: none;
}

@media (min-width: 768px) {
  .Cart__header {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

.Cart__header,
.Cart__items__item {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--main-text);
}

@media (min-width: 768px) {
  .Cart__items__item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

.Cart__header__IMG,
.Cart__items__item__IMG {
  flex: 0 0 170px;
  width: 170px;
  max-width: 170px;
}

.Cart__header__DETAILS,
.Cart__items__item__DETAILS {
  flex: 0 0 150px;
  width: 150px;
  max-width: 150px;
}

.Cart__header__NAME,
.Cart__items__item__NAME {
  flex: 0 0 170px;
  width: 170px;
  max-width: 170px;
}

.Cart__header__PRICE,
.Cart__items__item__PRICE {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  text-align: right;
}

.Cart__items__item__SUBTOTAL {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  text-align: right;
}

.Cart__item-img {
  display: block;
  width: 70%;
  max-width: 120px;
  height: auto;
}

.Cart__item-placeholder {
  width: 70%;
  max-width: 120px;
  aspect-ratio: 3 / 4;
  background: var(--main-gray);
}

.Cart__items__item__NAME-DETAILS-PRICE {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 768px) {
  .Cart__items__item__NAME-DETAILS-PRICE {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .Cart__items__item__NAME-DETAILS {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
  }

  .Cart__items__item__PRICE {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin-left: 0;
  }
}

.Cart__items__item__NAME-DETAILS {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.Cart__items__item__NAME-DETAILS .d-flex.flex-row {
  flex-wrap: nowrap;
}

@media (max-width: 767.98px) {
  .Cart__items__item {
    display: flex;
    flex-wrap: wrap;
  }

  .Cart__items__item__IMG {
    flex: 0 0 49%;
    width: 49%;
    max-width: 49%;
  }

  .Cart__items__item__NAME-DETAILS-PRICE {
    width: 50%;
    flex-direction: column;
  }

  .Cart__items__item__DETAILS {
    display: none !important;
  }

  .Cart__items__item__NAME-DETAILS {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
  }

  .Cart__items__item__NAME,
  .Cart__items__item__PRICE {
    flex: 0 0 49%;
    width: 49%;
    max-width: 49%;
  }

  .Cart__items__item__SUBTOTAL {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: right;
  }
}

.Cart [hidden] {
  display: none !important;
}

.Cart__summary {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  padding-top: 16px;
}

.Cart__summary-total {
  font-weight: 600;
}

.Cart__summary-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.no-select {
  user-select: none;
}

.account-sidebar-link {
  cursor: pointer;
  text-decoration: underline !important;
}

/* Checkout */
.Checkout [hidden] {
  display: none !important;
}

.CheckoutField__label {
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 0.25rem;
  display: block;
}

.CheckoutField__input {
  width: 100%;
  background-color: var(--bs-body-bg, #fff);
  border-radius: 0;
  padding: 0 10px;
  color: inherit;
  line-height: 36px;
  outline: none;
  border: 0;
  box-shadow: inset 0 0 0 1px #000;
}

.CheckoutField__input::-webkit-outer-spin-button,
.CheckoutField__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.CheckoutField__input[type=number] {
  -moz-appearance: textfield;
}

.CheckoutPvzMap {
  min-height: 500px;
  height: 500px;
}

.CheckoutPvzSelected {
  font-size: 14px;
  line-height: 1.5;
}

.Button--sm {
  height: 30px;
  line-height: 30px;
  padding: 0 0.75rem;
  font-size: 12px;
  white-space: nowrap;
  box-sizing: border-box;
}

.CheckoutField--suggest {
  position: relative;
}

.CheckoutField__input--readonly {
  background-color: var(--main-gray, #f2f2f2);
  color: #666;
  cursor: default;
}

.CheckoutField__input--readonly:focus {
  outline: none;
}

.CheckoutSuggest {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--bs-body-bg, #fff);
  border: 1px solid var(--main-text, #111);
  border-top: none;
  max-height: 240px;
  overflow-y: auto;
}

.CheckoutSuggest__item {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--main-text, #111);
  cursor: pointer;
}

.CheckoutSuggest__item:hover,
.CheckoutSuggest__item--active {
  background: var(--main-gray, #f2f2f2);
}

.Checkout__pay-button,
.Checkout__pay-button-wrap {
  width: 290px;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  box-sizing: border-box;
}

.Checkout__pay-button {
  line-height: 60px;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.Checkout__pay-button-wrap {
  overflow: hidden;
}

.Checkout__pay-button-wrap iframe,
.Checkout__pay-button-wrap button {
  max-width: 100%;
}

.Radio {
  display: flex;
  flex-direction: column;
}

.Radio__option {
  padding-left: 12px;
  position: relative;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.35rem;
}

.Radio__option::before,
.Radio__option::after {
  content: '';
  position: absolute;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.Radio__option::before {
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
}

.Radio__option--selected {
  cursor: default;
}

.Radio__option--selected::after {
  left: 2px;
  width: 6px;
  height: 6px;
  background-color: #000;
}

.Checkbox {
  padding-left: 16px;
  position: relative;
  cursor: pointer;
}

.Checkbox::before,
.Checkbox::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.Checkbox::before {
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
}

.Checkbox--checked::after {
  left: 6px;
  width: 10px;
  height: 16px;
  border-bottom: 2px solid var(--lef-color, #7a53e3);
  border-right: 2px solid var(--lef-color, #7a53e3);
  transform: translate(-45%, -85%) rotate(45deg);
}

.Checkout__bonuses-row {
  display: none;
  flex-direction: row;
  font-weight: 500;
}

.Checkout__bonuses-row--visible {
  display: flex;
}

/* Homepage hero cover */
.HomeHero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HomeHero--hidden {
  display: none !important;
}

.HomeHero--hiding {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.HomeHero__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.HomeHero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.HomeHero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: auto;
}

.HomeHero__start {
  font-size: 30px;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  color: var(--main-background);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.HomeHero__start:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.HomeHero__hint {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0.9;
  animation: homeHeroPulse 2s ease-in-out infinite;
  z-index: 5;
}

.flicker {
  animation: homeHeroFlicker 2s infinite;
}

@keyframes homeHeroFlicker {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

@keyframes homeHeroPulse {
  0%, 100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

@media (max-width: 768px) {
  .HomeHero {
    height: 50vh;
    min-height: 300px;
    max-height: 400px;
  }

  .HomeHero__start {
    font-size: 16px;
    padding: 12px 24px;
    height: auto;
    line-height: 1.2;
  }

  .HomeHero__content {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .HomeHero__hint {
    font-size: 16px;
    bottom: 8%;
  }
}

/* Registration bonus banner */
.RegistrationBanner {
  position: relative;
  overflow: hidden;
  margin: 32px 0;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.RegistrationBanner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) blur(1px);
}

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

.RegistrationBanner__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.RegistrationBanner__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 8px #000;
}

.RegistrationBanner__form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  justify-content: center;
  margin-bottom: 8px;
}

.RegistrationBanner__input {
  flex: 2;
  min-width: 0;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 28px;
  font-weight: 400;
  font-family: inherit;
  box-shadow: inset 0 0 0 1px #fff;
  padding: 0 18px;
  height: 48px;
  line-height: 48px;
  outline: none;
}

.RegistrationBanner__input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.RegistrationBanner__submit {
  min-width: 120px;
  border-radius: 0;
  height: 48px;
  font-weight: 400;
  font-size: 28px;
  font-family: inherit;
  padding: 0 18px;
  box-shadow: none;
}

.RegistrationBanner__error {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.RegistrationBanner__note {
  margin: 8px 0 0;
  font-size: 15px;
  color: #fff;
  text-align: center;
  opacity: 0.85;
}

.RegistrationBanner__link {
  color: #fff;
  text-decoration: underline !important;
  margin-left: 4px;
}

.RegistrationBanner__link:hover {
  opacity: 0.85;
}

@media (max-width: 767.98px) {
  .RegistrationBanner__form {
    flex-direction: column;
  }

  .RegistrationBanner__title {
    font-size: 22px;
  }

  .RegistrationBanner__input,
  .RegistrationBanner__submit {
    font-size: 18px;
    width: 100%;
  }
}

body.error-page .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ErrorPage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 140px);
  padding: 48px 15px 64px;
}

.ErrorPage__inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.ErrorPage__code {
  margin: 0 0 12px;
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--secondary-text);
}

.ErrorPage__title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ErrorPage__text {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary-text);
}

.ErrorPage__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.ErrorPage__actions .Button {
  min-width: 180px;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
}

@media (max-width: 767.98px) {
  .ErrorPage__code {
    font-size: 56px;
  }

  .ErrorPage__title {
    font-size: 18px;
  }
}

