﻿@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope/Manrope-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope/Manrope-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope/Manrope-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope/Manrope-ExtraBold.ttf") format("truetype");
}

:root {
  --black: #000;
  --white: #ffffff;
  --brand: #341a45;
  --soft: #f7f7f7;
  --line: #e9e9e9;
  --muted: #8c8c8c;
  --green: #5baa52;
  --violet: #b387db;
  --sale: #c74242;
  --olive: #a1953d;
  --plum: #b08bcc;
  --grey: #F8F8F8;
  --container: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: var(--top-stack-visible-height, 110px);
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.top-stack {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/*
.top-stack.has-info-bar {
  top: -40px;
}
  */

.info-bar {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: #A7B302;
  color: var(--white);
}

.info-bar.is-visible {
  display: flex;
}

.info-bar-marquee {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 30px;
}

.info-bar-marquee span {
  min-width: max-content;
  padding-left: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  animation: info-marquee 18s linear infinite;
}

.info-bar-close {
  position: absolute;
  top: 12px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  transform: translateY(-50%);
}

.info-bar-close svg {
  width: 24px;
  height: 24px;
  max-width: none;
  flex: 0 0 24px;
}

@keyframes info-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.site-header {
  background: var(--white);
  transition: box-shadow 0.35s ease;
}

.site-header.is-compact {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
position: relative;
    max-width: 1440px;
    height: 115px;
    margin: 0px auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 10px;
    transition: height 0.35s ease, padding 0.35s ease, max-width 0.35s ease;
}

.header-actions {
    display: flex;
}

.header-center {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
     z-index: 1;
    transition: gap 0.35s ease;
}

.logo {
  max-height: 54px;
  overflow: hidden;
  transform-origin: center top;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease, visibility 0s linear 0s;
}

nav.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 30px;
}

nav.main-nav a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}
nav.main-nav a:hover {
  color: var(--plum)
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 890;
  width: 100vw;
  min-height: 200px;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-panel {
  display: none;
  min-height: 200px;
}

.mega-menu-panel.is-active {
  display: block;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 110px 190px;
  gap: 55px;
  width: 355px;
  margin-left: var(--mega-left, calc(50vw - 177px));
      padding-top: 14px;
    padding-bottom: 14px;
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.mega-menu-column a {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.mega-menu-column a:hover {
  color: var(--plum);
}

.header-actions-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
}

.header-actions-right > .icon-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.header-inner .icon-button svg{
    stroke: var(--black);
}

.header-inner .icon-button:hover svg{
  stroke: var(--plum);
}

.header-actions-left {
    z-index: 2;
    display: flex;
    align-items: flex-start;
}


.header-actions-left > button {
    width: 55px;
    height: auto;
}

.mobile-search-button {
  display: none;
}

.cart-button span {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--plum);
    color: var(--white);
    font-size: 8px;
    line-height: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -7px;
    margin-top: -7px;
}

.site-header.is-compact .header-inner {
  max-width: 1380px;
  height: 40px;
  align-items: center;
  padding: 0 30px;
}

.site-header.is-compact .header-center {
  top: 50%;
  gap: 0;
  transform: translate(-50%, -50%);
}

.site-header.is-compact .logo {
  max-height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.94);
  transition: opacity 0.25s ease, transform 0.3s ease, max-height 0.35s ease, margin 0.35s ease, visibility 0s linear 0.35s;
}

.site-header.is-compact nav.main-nav {
  height: auto;
  gap: clamp(18px, 2.15vw, 30px);
}

.site-header.is-compact nav.main-nav a {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header.is-compact .header-actions-left,
.site-header.is-compact .header-actions-right {
  align-self: center;
}

.site-header.is-compact .header-actions-left > button,
.site-header.is-compact .header-actions-right > .icon-button {
  width: 40px;
  height: 40px;
}

.site-header.is-compact .cart-button span {
  top: 7px;
  right: 1px;
  width: 18px;
  height: 18px;
  margin: 0;
  font-size: 10px;
  line-height: 18px;
  transform: none;
}

body.menu-open,
body.login-modal-open,
body.search-panel-open,
body.quick-cart-open,
body.account-modal-open,
body.cart-delete-open,
body.filter-open {
  overflow: hidden;
}

.side-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.side-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  width: min(336px, 100vw);
  height: 100dvh;
  padding: 92px 30px 54px 35px;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  padding: 0;
}

.side-menu-close svg {
  width: 24px;
  height: 24px;
  max-width: none;
}

.side-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 266px;
  gap: 11px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.side-menu-mobile-nav {
  display: none;
}

.side-menu-nav a:hover,
.side-menu-contacts a:hover,
.side-menu-note a:hover {
  color: var(--plum);
}

.side-menu-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 266px;
  gap: 12px;
  margin-top: 47px;
}

.side-menu-contact-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.side-menu-contact-group p,
.side-menu-socials p {
  margin: 0;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.side-menu-contact-group a {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.side-menu-contact-meta {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.side-menu-note {
  max-width: 266px;
  margin: 0;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.side-menu-note a {
  color: #5f6fc8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.side-menu-socials {
  width: 266px;
  margin-top: auto;
  padding-top: 0;
}

.side-menu-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.side-menu-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #919191;
  transition: background-color 0.2s ease;
}

.side-menu-social-links a:hover {
  background: var(--plum);
}

.side-menu-social-links img {
  width: auto;
  height: auto;
  max-width: 27px;
  max-height: 27px;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.login-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 508px minmax(0, 532px);
  width: min(1040px, calc(100vw - 48px));
  min-height: 709px;
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.login-modal-close {
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
}

.login-modal-close svg {
  width: 24px;
  height: 24px;
  max-width: none;
}

.login-modal-media {
  min-height: 709px;
  overflow: hidden;
}

.login-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-content-page {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 48px 16px 80px;
}

.auth-content-page .login-content-dialog {
  width: min(1040px, 100%);
  max-height: none;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.auth-content-page .login-modal-content {
  min-height: auto;
  overflow: visible;
}

.auth-content-page .login-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 414px;
  max-width: 100%;
}

.auth-content-page .login-auth-tabs > button {
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
}

.login-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 76px 40px 22px;
  overflow-y: auto;
}

.login-step-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
}

.login-auth-tabs {
  width: 414px;
  max-width: 100%;
  margin-bottom: 36px;
}

.login-step-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.login-auth-tabs button {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: none;
  white-space: nowrap;
}

.login-modal .login-auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 414px;
  max-width: 100%;
}

.login-modal .login-auth-tabs > button {
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
}

.login-step-tabs button.is-active,
.login-step-tabs button:hover,
.login-step-tabs button:focus-visible {
  background: var(--black);
  color: var(--white);
}

.login-form {
  width: 414px;
  max-width: 100%;
}

.login-step {
  display: none;
  flex-direction: column;
  gap: 18px;
  min-height: 526px;
}

.login-step.is-active {
  display: flex;
}

.login-step h1,
.login-step h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.login-step p {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.login-step .login-test-mode-note {
  margin-top: -8px;
  color: #919191;
  font-size: 13px;
  font-weight: 600;
}

.login-field {
  display: block;
  width: 100%;
}

.login-field span {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.login-field input {
  width: 100%;
  height: 39px;
  padding: 0 28px 12px;
  border: 0;
  border-bottom: 1px solid #919191;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: 400 16px/1.2 "Manrope", Arial, sans-serif;
  outline: none;
}

.login-field input:focus {
  border-color: var(--black);
}

.login-primary-button,
.login-secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: auto;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.login-primary-button {
  background: var(--black);
  color: var(--white);
}

.login-primary-button.is-disabled,
.login-primary-button:disabled {
  background: #919191;
  color: var(--white);
  cursor: default;
}

.login-primary-button:not(.is-disabled):not(:disabled):hover,
.login-primary-button:not(.is-disabled):not(:disabled):focus-visible {
  background: #222222;
}

.login-link-button {
  align-self: center;
  margin-top: 0;
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.login-link-button:hover,
.login-link-button:focus-visible {
  color: var(--black);
}

.login-status {
  min-height: 18px;
  margin-top: 2px;
  color: #666666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.login-status.is-error {
  color: #aa2e2e;
}

.login-status.is-success {
  color: #2d7d46;
}

.login-secondary-button {
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.login-secondary-button.is-disabled,
.login-secondary-button:disabled {
  border-color: #919191;
  color: #919191;
  cursor: default;
}

.login-secondary-button:not(.is-disabled):not(:disabled):hover,
.login-secondary-button:not(.is-disabled):not(:disabled):focus-visible {
  background: var(--black);
  color: var(--white);
}

[data-mobile-id-resend] + .login-primary-button {
  margin-top: 0;
}

.login-consents,
.login-radio-group {
  display: grid;
  gap: 11px;
  margin-top: 58px;
}

.login-check,
.login-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.login-check input,
.login-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.login-check span,
.login-radio span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid var(--black);
  background: var(--white);
}

.login-check span {
  border-radius: 3px;
}

.login-check input:checked + span {
  background: var(--black);
}

.login-check input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 7px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(40deg);
}

.login-radio span {
  width: 20px;
  height: 20px;
  border: 2px solid #919191;
  border-radius: 50%;
}

.login-radio input:checked + span {
  border-color: var(--black);
}

.login-radio input:checked + span::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--black);
}

.login-code {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.login-code input {
  width: clamp(42px, 13vw, 50px);
  height: 46px;
  border: 0;
  background: #f8f8f8;
  color: var(--black);
  font: 600 18px/1.2 "Manrope", Arial, sans-serif;
  text-align: center;
  outline: none;
}

.login-code input:focus {
  box-shadow: inset 0 0 0 1px var(--black);
}

.login-code.is-error input {
  color: #aa2e2e;
}

.login-code-note,
.login-error {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.login-code-note {
  color: #919191;
}

.login-code-note.is-error {
  color: #aa2e2e;
}

.login-error {
  color: #aa2e2e;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 1180;
  overflow-y: auto;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-panel-inner {
  width: min(1283px, calc(100% - 48px));
  margin: 46px auto 72px;
}

.search-panel-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 71px;
  align-items: center;
  gap: 21px;
}

.search-panel-field {
  position: relative;
  display: block;
}

.search-panel-field svg {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 21px;
  height: 21px;
  max-width: none;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-panel-field input {
  width: 100%;
  height: 48px;
  padding: 0 24px 0 62px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font: 500 16px/1.3 "Manrope", Arial, sans-serif;
  outline: none;
}

.search-panel-field input:focus {
  border-color: #919191;
}

.search-panel-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 48px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.search-panel-submit:hover,
.search-panel-submit:focus-visible {
  background: #222222;
}

.search-panel-close {
  justify-self: start;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.search-panel-close:hover,
.search-panel-close:focus-visible {
  color: #919191;
}

.search-panel-body {
  display: grid;
  grid-template-columns: 326px minmax(0, 1fr);
  gap: 65px;
  margin-top: 30px;
}

.search-suggestions h2,
.search-products h2 {
  margin: 0 0 24px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.search-products h2 {
  color: var(--black);
}

.search-products-status {
  margin: -12px 0 20px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.search-products-grid.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.search-products-empty {
  grid-column: 1 / -1;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(145, 145, 145, 1);
}
.search-suggestions button
.search-suggestions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.search-suggestions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  padding: 0;
  width: 100%;
}

.search-suggestions button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml,<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.5 20.5L14.7857 14.7857M9.07143 0.5C11.3447 0.5 13.5249 1.40306 15.1323 3.01051C16.7398 4.61797 17.6429 6.79814 17.6429 9.07143C17.6429 11.3447 16.7398 13.5249 15.1323 15.1323C13.5249 16.7398 11.3447 17.6429 9.07143 17.6429C6.79814 17.6429 4.61797 16.7398 3.01051 15.1323C1.40306 13.5249 0.5 11.3447 0.5 9.07143C0.5 6.79814 1.40306 4.61797 3.01051 3.01051C4.61797 1.40306 6.79814 0.5 9.07143 0.5Z" stroke="%23919191"/></svg>');
}


.search-suggestions button:hover,
.search-suggestions button:focus-visible {
  color: #919191;
}

.search-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 8px;
}

.quick-cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.quick-cart-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quick-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.quick-cart-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 192px minmax(0, 1fr);
  gap: 8px;
  width: min(603px, calc(100vw - 40px));
  min-height: 286px;
  padding: 15px 19px;
  border-radius: 4px;
  background: var(--white);
}

.quick-cart-close {
  position: absolute;
  top: 10px;
  right: 9px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
}

.quick-cart-close svg {
  width: 24px;
  height: 24px;
  max-width: none;
}

.quick-cart-image {
  align-self: center;
  width: 192px;
  height: 256px;
  background: var(--grey);
}

.quick-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.quick-cart-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 10px;
}

.quick-cart-content h2 {
  margin: 0 28px 19px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.quick-cart-content p {
  margin: 0 0 4px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.quick-cart-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.quick-cart-price s {
  text-decoration-thickness: 1px;
}

.quick-cart-price strong {
  color: var(--black);
  font-weight: 400;
}

.quick-cart-price.has-compare-price strong {
  color: #aa2e2e;
  font-weight: 400;
}

.quick-cart-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

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

.quick-cart-colors button {
  position: relative;
  width: 24px;
  height: 24px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--swatch, var(--grey));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.quick-cart-colors button.is-selected,
.quick-cart-colors button:hover,
.quick-cart-colors button:focus-visible {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--black);
  transform: translateY(-1px);
}

.quick-cart-colors button.is-white {
  box-shadow: inset 0 0 0 1px #919191;
}

.quick-cart-colors button.is-white.is-selected,
.quick-cart-colors button.is-white:hover,
.quick-cart-colors button.is-white:focus-visible {
  box-shadow: inset 0 0 0 1px #919191, 0 0 0 2px var(--white), 0 0 0 3px var(--black);
}

.quick-cart-colors button::after {
  content: attr(data-color-name);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 5;
  min-width: max-content;
  max-width: 150px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.quick-cart-colors button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 5;
  width: 8px;
  height: 8px;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.quick-cart-colors button:hover::before,
.quick-cart-colors button:focus-visible::before,
.quick-cart-colors button:hover::after,
.quick-cart-colors button:focus-visible::after {
  opacity: 1;
}

.quick-cart-colors button:hover::before,
.quick-cart-colors button:focus-visible::before {
  transform: translate(-50%, 0) rotate(45deg);
}

.quick-cart-colors button:hover::after,
.quick-cart-colors button:focus-visible::after {
  transform: translate(-50%, 0);
}

.quick-cart-sizes {
  display: grid;
  grid-template-columns: repeat(6, 50px);
  gap: 6px;
  margin-bottom: 8px;
}

.quick-cart-sizes button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  /*border: 1px solid #e5e5e5;*/
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 2.55px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.quick-cart-sizes button.is-selected,
.quick-cart-sizes button:hover:not(:disabled),
.quick-cart-sizes button:focus-visible:not(:disabled) {
  background: var(--plum);
  color: var(--white);
}

.quick-cart-sizes button.is-disabled,
.quick-cart-sizes button:disabled {
  background: #e5e5e5;
  color: #919191;
  box-shadow: none;
  cursor: default;
}

.quick-cart-size-link {
  margin-bottom: 15px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.quick-cart-size-link:hover {
  color: var(--black);
}

.quick-cart-add {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: rgba(145, 145, 145, 1);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid rgba(145, 145, 145, 1);
}





.quick-cart-add.is-ready {
  background: var(--black);
  border-color: var(--black);
}

.quick-cart-add.is-ready:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.cart-toast {
  position: fixed;
  right: 20px;
  top: 40px;
  z-index: 1220;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 23px;
  width: min(439px, calc(100vw - 40px));
  min-height: 130px;
  padding: 10px 12px 10px 12px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.cart-toast > img {
  width: 90px;
  height: 109px;
  object-fit: contain;
  background: var(--grey);
}

.cart-toast-content p {
  margin: 0 0 20px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-toast-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-toast-content svg {
  width: 22px;
  height: 9px;
  max-width: none;
}

.waitlist-toast {
  position: fixed;
  right: 20px;
  top: 40px;
  z-index: 1220;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: min(439px, calc(100vw - 40px));
  min-height: 130px;
  padding: 14px 24px 14px 16px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.waitlist-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.waitlist-toast img {
  width: 108px;
  height: 98px;
  object-fit: contain;
  background: var(--grey);
}

.waitlist-toast p {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.waitlist-modal,
.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.waitlist-modal.is-open,
.product-image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-backdrop,
.product-image-backdrop {
  position: absolute;
  inset: 0;
}

.waitlist-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 192px 346px;
  gap: 19px;
  width: min(603px, calc(100vw - 32px));
  min-height: 286px;
  padding: 15px 19px 15px;
  border-radius: 4px;
  background: var(--white);
}

.waitlist-close,
.product-image-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
}

.waitlist-close svg,
.product-image-close svg {
  width: 24px;
  height: 24px;
}

.waitlist-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 256px;
  background: var(--grey);
}

.waitlist-image img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.waitlist-content {
  min-width: 0;
  padding-top: 21px;
}

.waitlist-content h2 {
  margin: 0 0 24px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.waitlist-content > p {
  margin: 0 0 47px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.waitlist-sizes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 4px;
}

.waitlist-sizes button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  background: #e5e5e5;
  color: #919191;
  font-size: 11.46px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.waitlist-sizes button.is-selected::before,
.product-size-list button.is-waitlisted::before,
.quick-cart-sizes button.is-waitlisted::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 23px;
  height: 23px;
  background: url("data:image/svg+xml,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.08074 6.65167C6.35914 3.86766 8.70182 1.74756 11.4997 1.74756C14.2976 1.74756 16.6403 3.86766 16.9187 6.65167L17.2012 9.47687C17.3409 10.8741 17.8213 12.2157 18.6002 13.384L19.449 14.6572C20.0233 15.5186 20.3104 15.9493 20.3146 16.305C20.3194 16.7161 20.1133 17.1011 19.7686 17.3252C19.4703 17.519 18.9527 17.519 17.9175 17.519H5.08196C4.04673 17.519 3.52911 17.519 3.23088 17.3252C2.88611 17.1011 2.68007 16.7161 2.68488 16.305C2.68904 15.9493 2.97616 15.5186 3.5504 14.6572L4.39924 13.384C5.17813 12.2157 5.6585 10.8741 5.79822 9.47687L6.08074 6.65167Z' fill='white' stroke='black'/%3E%3Cpath d='M9.59697 17.9519C9.7093 18.3711 9.9568 18.7415 10.3011 19.0057C10.6454 19.2699 11.0672 19.4131 11.5012 19.4131C11.9352 19.4131 12.3571 19.2699 12.7014 19.0057C13.0457 18.7415 13.2932 18.3711 13.4055 17.9519' stroke='black' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.waitlist-sizes button.is-selected::before {
  top: -13px;
  left: 50%;
  transform: none;
}

.product-size-list button.is-waitlisted::before,
.quick-cart-sizes button.is-waitlisted::before {
  top: -14px;
  right: -3px;
}

.product-size-list button.is-waitlisted::before {
  top: -12px;
  right: -8px;
}

.waitlist-size-table {
  display: inline-block;
  margin-bottom: 17px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.waitlist-add {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.waitlist-status,
.size-subscribe-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.waitlist-status.is-error,
.size-subscribe-status.is-error {
  color: #b00020;
}

.product-image-dialog {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 50px 70px 42px;
  background: var(--white);
}

.product-image-dialog h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.product-image-dialog p {
  max-width: 491px;
  margin: 0 auto 18px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.product-image-dialog p:empty {
  display: none;
}

.product-image-dialog img {
  display: block;
  width: min(100%, 520px);
  margin: 0 auto;
}

body.waitlist-open,
body.product-image-open {
  overflow: hidden;
}

.size-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.size-subscribe-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.size-subscribe-open {
  overflow: hidden;
}

.size-subscribe-backdrop {
  position: absolute;
  inset: 0;
}

.size-subscribe-dialog {
  position: relative;
  z-index: 1;
  width: min(671px, calc(100vw - 32px));
  min-height: 353px;
  margin: 0;
  padding: 42px 38px 29px;
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.size-subscribe-close {
  position: absolute;
  top: 14px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

.size-subscribe-close svg {
  width: 24px;
  height: 24px;
}

.size-subscribe-dialog h2 {
  margin: 0 0 24px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.size-subscribe-options {
  display: grid;
  gap: 13px;
  margin-bottom: 49px;
}

.size-subscribe-check,
.size-subscribe-consent {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  cursor: pointer;
}

.size-subscribe-check input,
.size-subscribe-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-subscribe-check > span:first-of-type,
.size-subscribe-consent > span:first-of-type {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1px solid #222222;
  border-radius: 3px;
  background: var(--white);
}

.size-subscribe-check input:checked + span,
.size-subscribe-consent input:checked + span {
  border-color: var(--plum);
  background: var(--plum);
}

.size-subscribe-check input:checked + span::after,
.size-subscribe-consent input:checked + span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.size-subscribe-note {
  margin: 0 0 27px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.size-subscribe-consent {
  gap: 8px;
  margin-bottom: 16px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.size-subscribe-consent > span:first-of-type {
  flex-basis: 14px;
  width: 14px;
  height: 14px;
  border-color: #cfcfcf;
  border-radius: 0;
}

.size-subscribe-consent input:checked + span::after {
  top: 1px;
  left: 4px;
  width: 5px;
  height: 8px;
}

.size-subscribe-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.size-subscribe-actions {
  display: grid;
  grid-template-columns: minmax(0, 410px) 168px;
  gap: 17px;
  align-items: stretch;
}

.size-subscribe-actions input {
  width: 100%;
  min-height: 48px;
  padding: 12px 10px;
  border: 1px solid #919191;
  border-radius: 0;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  outline: none;
}

.size-subscribe-actions input::placeholder {
  color: #919191;
  opacity: 1;
}

.size-subscribe-actions input:focus {
  border-color: var(--black);
}

.size-subscribe-actions button {
  min-height: 48px;
  border: 1px solid var(--black);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.size-subscribe-actions button:hover,
.size-subscribe-actions button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.catalog-filter-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  width: min(400px, 100vw);
  height: 100dvh;
  padding: 45px 18px 18px 32px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.catalog-filter-menu.is-open {
  transform: translateX(0);
}

.catalog-filter-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  gap: 20px;
  padding-right: 8px;
}

.catalog-filter-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
}

.catalog-filter-close svg {
  width: 24px;
  height: 24px;
  max-width: none;
}

.catalog-filter-scroll {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  overflow-y: auto;
  scrollbar-color: #e5e5e5 transparent;
  scrollbar-width: thin;
}

.catalog-filter-scroll::-webkit-scrollbar {
  width: 4px;
}

.catalog-filter-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-filter-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #e5e5e5;
}

.filter-group {
  margin: 0 0 22px;
}

.filter-accordion,
.filter-size-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.filter-accordion {
  min-height: 22px;
  padding: 0;
}

.filter-accordion-static {
  cursor: default;
}

.filter-accordion span,
.filter-row span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: rotate(45deg) translateY(-2px);
  transform-origin: 60% 60%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.filter-accordion[aria-expanded="false"] span,
.filter-row[aria-expanded="false"] span {
  transform: rotate(-45deg) translate(-1px, -1px);
}

.filter-panel[hidden],
.filter-sublist[hidden] {
  display: none;
}

.filter-panel,
.filter-sublist {
  transition: height 0.24s ease, opacity 0.18s ease, margin-top 0.24s ease, padding-top 0.24s ease, padding-bottom 0.24s ease;
}

.filter-group-category {
  margin-bottom: 15px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 26px;
  padding: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.filter-row:hover,
.filter-row:focus-visible,
.filter-accordion:hover,
.filter-accordion:focus-visible,
.catalog-filter-toggle:hover,
.catalog-filter-toggle:focus-visible,
.catalog-sort-toggle:hover,
.catalog-sort-toggle:focus-visible {
  color: var(--plum);
}

.filter-accordion-static:hover,
.filter-accordion-static:focus-visible {
  color: var(--black);
}

.filter-row:hover span,
.filter-row:focus-visible span,
.filter-accordion:hover span,
.filter-accordion:focus-visible span,
.catalog-sort-toggle:hover path,
.catalog-sort-toggle:focus-visible path,
.catalog-filter-toggle:hover svg path,
.catalog-filter-toggle:hover svg circle,
.catalog-filter-toggle:focus-visible svg path,
.catalog-filter-toggle:focus-visible svg circle {
  stroke: var(--plum);
  border-color: var(--plum);
}

.filter-sublist {
  /*display: grid;
  gap: 9px;*/
  padding: 8px 0 7px 0px;
}

.filter-check,
.filter-color {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 31px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
}

.filter-category-item {
    min-height: 31px;
}

.filter-check input,
.filter-color input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.filter-check span {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 0.9px solid var(--black);
  border-radius: 3.15px;
  background: var(--white);
}

.filter-check input:checked + span {
  background: var(--black);
}

.filter-check.is-selected span {
  background: var(--black);
}

.filter-check input:checked + span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 10px;
  height: 7px;
  border-left: 1.8px solid var(--white);
  border-bottom: 1.8px solid var(--white);
  transform: rotate(-45deg);
}

.filter-check.is-selected span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 7px;
  border-left: 1.8px solid var(--white);
  border-bottom: 1.8px solid var(--white);
  transform: rotate(-45deg);
}

.filter-check.is-disabled,
.filter-color.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.filter-color span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--swatch);
}

.filter-color span.is-white {
  border: 1px solid #919191;
  box-shadow: inset 0 0 0 3px var(--white);
}

.filter-color input:checked + span {
  flex-basis: 22px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--black);
  background: var(--white);
}

.filter-color input:checked + span::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--swatch);
}

.filter-color input:checked + span.is-white::after {
  border: 1px solid #919191;
  background: var(--white);
}

.filter-size-title {
  margin-bottom: 7px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
}

.filter-size-grid {
  display: grid;
  grid-template-columns: repeat(6, 43px);
  gap: 5px;
  padding-left: 1px;
}

.filter-size-grid button,
.filter-size-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 5px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  box-shadow: 0 0 2.18px rgba(0, 0, 0, 0.25);
}

.filter-size-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.filter-size-option.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.filter-size-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.filter-size-grid button:hover,
.filter-size-grid button:focus-visible,
.filter-size-grid button.is-selected,
.filter-size-option:not(.is-disabled):hover span,
.filter-size-option:not(.is-disabled):focus-within span,
.filter-size-option input:checked + span {
  background: var(--black);
  color: var(--white);
}

.filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.filter-price label {
  display: grid;
  gap: 5px;
  color: #919191;
  font-size: 13px;
  font-weight: 500;
}

.filter-price input {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
}

.catalog-filter-actions {
  /*position: absolute;
  right: 31px;
  bottom: 14px;
  left: 31px;*/
  display: grid;
  gap: 6px;
  background: var(--white);
}

.catalog-filter-submit,
.catalog-filter-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 35px;
  border: 1px solid var(--black);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.catalog-filter-submit {
  background: var(--black);
  color: var(--white);
}

.catalog-filter-reset {
  background: var(--white);
  color: var(--black);
}

.catalog-page {
  padding: 0 0 96px;
}

.catalog-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.catalog-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 19px;
  margin: 4px 0 32px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.catalog-breadcrumbs a:hover {
  color: var(--plum);
}

.catalog-topline {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.catalog-topline h1 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.catalog-filter-toggle,
.catalog-sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 20px;
  padding: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.catalog-filter-toggle svg {
  width: 20px;
  height: 20px;
  max-width: none;
}

.catalog-sort {
  position: relative;
  justify-self: end;
}

.catalog-sort-toggle svg {
  width: 11px;
  height: 7px;
  max-width: none;
  transition: transform 0.2s ease;
}

.catalog-sort.is-open .catalog-sort-toggle svg {
  transform: rotate(180deg);
}

.catalog-sort-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  width: 200px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.catalog-sort.is-open .catalog-sort-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-sort-menu button {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 20px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.catalog-sort-menu button:hover,
.catalog-sort-menu button:focus-visible {
  background: #f8f8f8;
}

.catalog-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 36px 0 39px;
}

.catalog-chips button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px 9px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 56px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.catalog-chips button:hover,
.catalog-chips button:focus-visible {
  border-color: var(--plum);
}

.catalog-chips span {
  font-size: 28px;
  font-weight: 300;
  line-height: 0.75;
}

.catalog-products-grid {
  gap: 33px 24px;
}

.catalog-products-grid .product-card {
  margin-bottom: 28px;
}

.catalog-products-grid .product-visual {
  aspect-ratio: 300 / 400;
}

.catalog-page.is-loading .catalog-products-grid {
  opacity: 0.45;
  pointer-events: none;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 72px 0;
  color: #919191;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.product-heart-notify {
  background-image: none;
}

.product-heart-notify::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 16px;
  height: 18px;
  border: 1.4px solid var(--black);
  border-bottom: 0;
  border-radius: 10px 10px 4px 4px;
}

.product-heart-notify::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 23px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: -6px -2px 0 -1px var(--black), 6px -2px 0 -1px var(--black);
}

.product-unavailable-note {
  margin: 24px 0 0;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.catalog-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  margin: 4px auto 0;
}

.catalog-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  min-height: 48px;
  border: 1px solid var(--black);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.catalog-more-button:hover,
.catalog-more-button:focus-visible {
  background: var(--black);
  color: var(--white);
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.catalog-pagination a,
.catalog-pagination span {
  min-width: 10px;
  text-align: center;
}

.catalog-pagination a:hover,
.catalog-pagination a:focus-visible,
.catalog-pagination a.is-active {
  color: var(--plum);
}

.catalog-copy {
  margin: 14px 0 0;
  color: var(--black);
}

.catalog-copy h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.catalog-copy h3 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.catalog-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(750px, calc(100vh - 40px));
  min-height: 520px;
  overflow: hidden;
  background: #111;
}

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

.hero-slide::after {
  /*content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62) 100%);
  */
}

.hero-slide a,
.hero-slide-picture,
.hero-slide-video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img,
.hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mobile-categories {
  display: none;
}

.hero-slide-content {
  position: absolute;
  left: clamp(32px, 3.28vw, 47px);
  bottom: clamp(86px, 9.46vw, 136px);
  max-width: 520px;
  color: var(--white);
  z-index: 2;
}

.hero-slide-content h1,
.hero-slide-content p {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(34px, 3.33vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-slider-pagination {
  position: absolute;
  left: clamp(32px, 2.36vw, 34px);
  right: clamp(32px, 2.36vw, 34px);
  bottom: 0px;
  z-index: 5;
  display: flex;
  /*grid-template-columns: repeat(5, minmax(0, 1fr));*/
  gap: clamp(16px, 2.22vw, 32px);
}

.hero-slider-pagination button {
  position: relative;
  width: 100%;
  height: 41px;
  padding: 19px 0;
}

.hero-slider-pagination button::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-slider-pagination span {
  position: absolute;
  left: 0;
  top: 19px;
  width: 0;
  height: 3px;
  border-radius: 8px;
  background: #B08BCC;
}

.hero-slider-pagination button.is-active span {
  background: var(--white);
  animation: hero-progress var(--hero-slider-delay, 5000ms) linear forwards;
}

@keyframes hero-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.section-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.products-section {
  padding-top: 30px;
}

.products-section-compact {
  padding-top: 26px;
}

.products-section h2 {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 300px));
  justify-content: space-between;
  gap: 24px;
}

.products-section-action {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}

.products-section-link, .cart-checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 300px;
  min-height: 48px;
  padding: 10px 24px;
  border: 1px solid var(--black);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cart-checkout-button{
  width: 100%;
}

.products-section-link:hover,
.products-section-link:focus-visible,
.cart-checkout-button:hover,
.cart-checkout-button:focus-visible
{
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
  transform: translateY(-1px);
}

.products-section-link svg,
.cart-checkout-button svg {
  flex: 0 0 auto;
}

.product-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 1px;
  pointer-events: none;
}

.product-card-link:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 4px;
}

.product-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--grey);
}


.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.product-visual .product-photo {
  height: calc(100% + 34px);
  transform: translateY(-34px);
}

.product-label {
  position: absolute;
  top: 17px;
  left: 19px;
  z-index: 2;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: lowercase;
}

.product-label-new {
  color: #529d24;
}

.product-label-hit {
  color: #c880ff;
}

.product-label-sale,
.product-price-sale {
  color: #aa2e2e;
}

.product-heart,
.product-bag {
  position: absolute;
  right: 18px;
  z-index: 4;
  padding: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.product-heart {
  top: 21px;
  width: 23.33px;
  height: 21.41px;
  background-image: url("../images/product/heart-empty.svg");
}
.product-heart.black {
  background-image: url("../images/product/heart-empty-black.svg");
}
.product-heart.is-active {
  background-image: url("../images/product/heart-active.svg");
}

.product-heart:hover,
.product-heart:focus-visible {
  filter: invert(25%) sepia(72%) saturate(1293%) hue-rotate(333deg) brightness(82%) contrast(88%);
}

.product-heart.is-active:hover,
.product-heart.is-active:focus-visible {
  filter: none;
}

.product-bag {
  top: 65px;
  right: 19.3px;
  width: 20px;
  height: 25.65px;
  background-image: url("../images/product/bag.svg");
}

.product-bag:hover,
.product-bag:focus-visible {
  filter: invert(67%) sepia(16%) saturate(914%) hue-rotate(222deg) brightness(86%) contrast(88%);
  transform: translateY(-1px);
}

.photo-lines {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(var(--photo-lines-count, 5), minmax(0, 1fr));
  gap: 6px;
}

.photo-lines span {
  height: 3px;
  border-radius: 7px;
  background: #e5e5e5;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

.photo-lines span.is-active {
  background: var(--plum);
}

.photo-lines span:hover,
.photo-lines span:focus-visible {
  background: var(--plum);
  outline: none;
  transform: scaleY(1.35);
}

.product-card h3 {
  position: relative;
  z-index: 2;
  min-height: 26px;
  margin: 7px 0 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-price {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-height: 28px;
  margin: 0;
  color: var(--black);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-price s {
  font-weight: 400;
  text-decoration-thickness: 1px;
}

.product-price strong {
  font-weight: 600;
}

.product-page {
  padding-bottom: 70px;
}

.product-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 30px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.product-breadcrumbs a:hover,
.product-breadcrumbs a:focus-visible {
  color: var(--black);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 346px;
  gap: 30px;
  align-items: start;
}

.product-gallery {
  position: relative;
  display: grid;
  gap: 20px;
  min-width: 0;
}

.product-page-heart {
  top: 18px;
  right: 18px;
}

.product-video-button {
  position: absolute;
  top: 74px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-video-button:hover,
.product-video-button:focus-visible {
  background: var(--white);
  transform: scale(1.04);
}

.product-video-button svg {
  margin-left: 3px;
}

.product-video-modal {
  display: none;
  width: min(92vw, 960px);
}

.product-video-modal video {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #111;
}

.fancybox__content .product-video-modal,
.fancybox__content.product-video-modal {
  display: block;
  padding: 0;
  background: #111;
}

.product-gallery-main,
.product-gallery-more {
  display: grid;
  gap: 20px;
}

.product-gallery-main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-gallery-main.swiper {
  overflow: visible;
}

.product-gallery-mobile-wrapper {
  display: contents;
}

.product-gallery-main .product-gallery-mobile-wrapper .product-gallery-item:nth-child(n+3) {
  display: none;
}

.product-gallery-pagination {
  display: none;
}

.product-gallery-more {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gallery-item,
.product-gallery-slot {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--grey);
}

.product-gallery-item {
  aspect-ratio: 280 / 374;
}

.product-gallery-main .product-gallery-item {
  aspect-ratio: 426 / 568;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.product-gallery-item-cover img {
  object-fit: contain;
  padding: 16px;
}

.product-gallery-item:hover img,
.product-gallery-item:focus-visible img {
  transform: scale(1.025);
}

.product-gallery-slot .product-gallery-item {
  width: 100%;
  height: 100%;
}

.product-gallery-extra {
  display: none;
}

.product-gallery.is-expanded .product-gallery-extra {
  display: block;
}

.product-gallery.is-expanded .product-gallery-trigger-card .product-gallery-toggle {
  display: none;
}

.product-gallery-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  min-width: 180px;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid #e5e5e5;
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.82);
  color: #202020;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  backdrop-filter: blur(6px);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-gallery-toggle:hover,
.product-gallery-toggle:focus-visible {
  border-color: #cfcfcf;
  background: var(--white);
}

body.is-fancybox-open .jv-copyright {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.fancybox__toolbar [data-fancybox-toggle-slideshow],
.fancybox__toolbar [data-fancybox-toggle-fullscreen],
.fancybox__toolbar [data-fancybox-toggle-thumbs] {
  display: none !important;
}

.fancybox__thumbs {
  --f-thumb-width: 100px;
  --f-thumb-height: 100px;
  --f-thumb-clip-width: 100px;
  --f-thumb-extra-gap: 8px;
}

.fancybox__thumbs .f-thumbs__slide,
.fancybox__thumbs .f-thumbs__slide.is-nav-selected {
  width: 100px !important;
  height: 100px !important;
  transform: none !important;
}

.fancybox__thumbs .f-thumbs__slide__button {
  width: 100px !important;
  height: 100px !important;
  margin: 0 !important;
  clip-path: none !important;
}

.fancybox__thumbs .f-thumbs__slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary-column {
  position: relative;
  z-index: 5;
  align-self: start;
  overflow: visible;
  background: var(--white);
}

.product-summary {
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.product-summary h1 {
  order: 1;
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-summary-price {
  order: 2;
  margin: 0 0 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.product-summary-price s {
  margin-right: 8px;
  color: #919191;
  font-weight: 400;
}

.product-summary-price strong {
  font-weight: 600;
}

.product-summary-code {
  order: 3;
  margin: 0 0 24px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.product-summary-copy {
  order: 4;
  margin: 0 0 24px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.product-choice {
  margin-bottom: 24px;
}

.product-color-choice {
  order: 6;
}

.product-size-choice {
  order: 5;
}

.product-choice p {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.product-size-list {
  display: grid;
  grid-template-columns: repeat(6, 50px);
  gap: 6px;
}

.product-size-list button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 2.55px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.product-size-list button.is-selected,
.product-size-list button:hover:not(:disabled),
.product-size-list button:focus-visible:not(:disabled) {
  background: var(--plum);
  color: var(--white);
}

.product-size-list button.is-disabled,
.product-size-list button:disabled {
  background: #e5e5e5;
  color: #919191;
  box-shadow: none;
  cursor: default;
}

.product-size-list button[data-size-subscribe] {
  cursor: pointer;
}

.product-size-table {
  display: inline-block;
  margin-top: 9px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.product-size-table:hover,
.product-size-table:focus-visible {
  color: var(--black);
}

.product-color-select {
  position: relative;
  z-index: 8;
}
.product-color-current {
  min-height: 74px;
  padding: 8px 13px;
  border: 1px solid #919191;
  border-radius: 10px;
  background: var(--white);
  font-size: 14px;
}
.product-color-current,
.product-color-menu button {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.is-single-color .product-color-current {
    cursor: default;
}



.product-color-current img,
.product-color-menu img,
.product-color-swatch,
.product-color-image-placeholder {
  width: 60px;
  height: 60px;
  background: var(--grey);
  object-fit: contain;
}

.product-color-swatch {
  display: block;
  border-radius: 50%;
  background: var(--swatch, #f8f8f8);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.product-color-swatch.is-white {
  border: 1px solid #919191;
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--white);
}

.product-color-image-placeholder {
  display: block;
}

.product-color-image-placeholder[hidden] {
  display: none;
}

.product-color-menu .product-color-swatch {
  display: none;
}

.product-color-current span,
.product-color-menu span {
  min-width: 0;
}

.product-color-current span,
.product-color-name {
  white-space: nowrap;
}

.product-color-current svg {
  transition: transform 0.2s ease;
}

.product-color-select.is-single-color .product-color-current svg {
  display: none;
}

.product-color-select.is-open .product-color-current svg {
  transform: rotate(180deg);
}

.product-color-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-color-select.is-open .product-color-menu {
  display: block;
}

.product-color-menu button {
  min-height: 84px;
  padding: 10px 13px;
  grid-template-columns: 60px minmax(0, 1fr);
}

.product-color-menu button svg {
  display: none;
}

.product-color-menu button:hover,
.product-color-menu button:focus-visible,
.product-color-menu button.is-selected {
  background: var(--grey);
}

.product-add-button {
  order: 7;
  width: 100%;
  height: 48px;
  margin-bottom: 31px;
  border-radius: 8px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.product-add-button:hover,
.product-add-button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.product-add-button:disabled {
  border-color: rgba(145, 145, 145, 1);
  background: rgba(145, 145, 145, 1);
  color: var(--white);
  cursor: not-allowed;
}

.product-accordion-list {
  order: 8;
}

.product-comments-list {
  display: grid;
  gap: 12px;
}

.product-comment {
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.product-comment h3,
.product-comment p {
  margin: 0;
}

.product-comment h3 {
  font-size: 16px;
  font-weight: 600;
}

.product-comment time {
  display: block;
  margin: 4px 0 10px;
  color: #919191;
  font-size: 14px;
}

.product-accordion-list {
  display: grid;
  gap: 18px;
}

.product-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

.product-accordion-toggle svg {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.product-accordion.is-open .product-accordion-toggle svg {
  transform: rotate(180deg);
}

.product-accordion-panel {
  padding: 6px 0 10px;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  transition: height 0.24s ease, opacity 0.18s ease, padding-top 0.24s ease, padding-bottom 0.24s ease;
}

.product-accordion-panel[hidden] {
  display: none;
}

.product-accordion-panel p {
  margin: 0;
}

.product-info-image {
  display: block;
  width: min(100%, 420px);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: var(--white);
}

.product-info-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-params {
  padding: 0 0 26px;
}

.product-params dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.product-params div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 40px;
  align-items: start;
}

.product-params dt,
.product-params dd {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-params dd {
  text-align: left;
}

.product-related {
  padding-top: 86px;
}

.product-related h2 {
  text-align: left;
}

.promo-banner {
  display: flex;
  width: min(1280px, calc(100% - 48px));
  height: 518px;
  margin: 26px auto 0;
  overflow: hidden;
}

.promo-banner-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.promo-banner-media {
  flex: 0 0 44.14%;
  min-width: 0;
  overflow: hidden;
}

.promo-banner-media picture,
.promo-banner-media video {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-banner-media img,
.promo-banner-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 55.86%;
  min-width: 0;
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.promo-banner-copy h2 {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-banner-copy p {
  max-width: 640px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-banner-style .promo-banner-copy {
  background: #a3983f;
}

.promo-banner-weather {
  flex-direction: row;
   background: #783d54;
}

.promo-banner-weather .promo-banner-copy {
  flex-basis: 55.86%;
  background: #783d54;
}

.promo-banner-weather .promo-banner-media {
  flex-basis: 44.14%;
}

.promo-banner-weather .promo-banner-copy p {
  max-width: 760px;
  text-transform: none;
}

.social-carousel-section {
  margin: 72px 0 200px;
}

.social-carousel-section + .site-footer {
  margin-top: 0;
}

.social-carousel-copy {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 51px;
  color: var(--black);
  text-align: center;
}

.social-carousel-copy h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-carousel-copy p {
  max-width: 546px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
}

.social-carousel-wrap {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.social-carousel {
  width: 100%;
  cursor: grab;
  overflow: hidden;
}

.social-carousel .swiper-wrapper {
  align-items: stretch;
}

.social-carousel.swiper-grabbing {
  cursor: grabbing;
}

.social-carousel-item {
  position: relative;
  width: 288px;
  height: 360px;
  overflow: hidden;
}

.social-carousel-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.social-carousel-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.social-product-info {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-product-info:hover,
.social-product-info:focus-visible {
  background: var(--white);
  transform: translateY(-1px);
}

.social-product-info img {
  flex: 0 0 48px;
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.social-product-info span {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.social-product-info b {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-product-info strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.social-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0.78);
  box-shadow: 0 0 7.8px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
}

.social-carousel-button:hover,
.social-carousel-button:focus-visible {
  background: var(--white);
}

.social-carousel-button svg {
  width: 9px;
  height: 15px;
  max-width: none;
}

.social-carousel-prev {
  left: 16px;
}

.social-carousel-prev svg {
  transform: rotate(180deg);
}

.social-carousel-next {
  right: 16px;
}

.cart-page {
  padding: 0 0 210px;
}

.cart-container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.cart-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 7px 0 31px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.cart-breadcrumbs a:hover,
.cart-breadcrumbs a:focus-visible {
  color: var(--black);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 714px) minmax(360px, 512px);
  align-items: start;
  gap: 50px;
}

.cart-products h1 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-products h1 span {
  color: #919191;
  text-transform: none;
}

.cart-alert {
  max-width: 714px;
  margin: 0 0 30px;
  color: #529d24;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-alert a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-promo-100 {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid #d7eadf;
  border-radius: 8px;
  background: #f3fbf6;
  color: #17432a;
}

.cart-promo-100 strong {
  font-size: 16px;
  line-height: 1.25;
}

.cart-promo-100 span {
  font-size: 14px;
  line-height: 1.35;
}

.cart-promo-100.is-applied {
  border-color: #9fd1b4;
  background: #eaf7ef;
}

.cart-promo-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #eaf7ef;
  color: #17432a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.cart-item.is-promo,
.checkout-order-item.is-promo {
  background: #fbfefc;
}

.cart-item.is-promo [data-cart-amount-action] {
  pointer-events: none;
  opacity: 0.45;
}

.cart-list {
  display: grid;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 159px auto;
  column-gap: 18px;
  min-height: 232px;
  padding: 0 0 21px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-item + .cart-item {
  padding-top: 21px;
}

.cart-item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 159px;
  height: 211px;
  overflow: hidden;
  background: #f8f8f8;
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-body {
  min-width: 0;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cart-item-info-top {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
}
.cart-item-info-bottom {
  display: flex;
 justify-content: space-between;
 align-items: flex-end;
}
.cart-item-title {
  display: block;
  max-width: 374px;
  margin: 0 0 15px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-item-title:hover,
.cart-item-title:focus-visible {
  color: var(--plum);
}

.cart-item-meta {
  margin: 0 0 17px;
  color: #919191;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.cart-item-controls {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.cart-size-field,
.cart-quantity {
  position: relative;
  display: grid;
  gap: 9px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-size-select {
  position: relative;
  z-index: 8;
  width: 98px;
}

.cart-size-select summary,
.cart-size-disabled,
.cart-quantity-stepper {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #919191;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cart-size-select summary {
  justify-content: space-between;
  width: 98px;
  padding: 8px 13px 8px 10px;
  list-style: none;
  cursor: pointer;
}

.cart-size-select summary::-webkit-details-marker {
  display: none;
}

.cart-size-select summary svg {
  width: 15px;
  height: 9px;
  max-width: none;
  transition: transform 0.18s ease;
}

.cart-size-select[open] {
  z-index: 12;
}

.cart-size-select[open] summary {
  position: relative;
  z-index: 2;
  border-bottom-color: transparent;
  border-radius: 10px 10px 0 0;
}

.cart-size-select[open] summary svg {
  transform: rotate(180deg);
}

.cart-size-options {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 1;
  display: grid;
  width: 98px;
  max-height: 266px;
  padding: 0;
  overflow-y: auto;
  border: 1px solid #919191;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.cart-size-options button {
  width: 100%;
  min-height: 44px;
  padding: 0 13px 0 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.cart-size-options button:hover,
.cart-size-options button:focus-visible {
  background: #f8f8f8;
}

.cart-size-disabled {
  width: 98px;
  padding: 8px 13px 8px 10px;
  color: #919191;
  cursor: not-allowed;
}

.cart-quantity-stepper {
  justify-content: space-between;
  width: 98px;
  padding: 0 9px;
}

.cart-quantity-stepper button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 34px;
  padding: 0;
  color: var(--black);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.cart-quantity-stepper button:disabled {
  color: #919191;
  cursor: not-allowed;
}

.cart-quantity-stepper output {
  min-width: 24px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.cart-item-price {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  justify-self: end;
  gap: 15px;
  padding-top: 2px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cart-item-price s {
  text-decoration-thickness: 1px;
}
.cart-item-price strong {
  color: #000;
    font-weight: 500;
}
.cart-item-price s+strong {
  color: #aa2e2e;

}



.cart-item-actions {
  position: static;
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.cart-icon-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  color: var(--black);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.cart-icon-action svg {
  width: 100%;
  height: 100%;
  max-width: none;
}

.cart-heart.product-heart {
  position: static;
  inset: auto;
  display: flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: 24px 24px;
}

.cart-icon-action:hover,
.cart-icon-action:focus-visible {
  color: var(--plum);
}

.cart-delete::before,
.cart-delete::after,
.cart-notify::before,
.cart-notify::after {
  content: none;
}

.cart-delete::before,
.cart-delete::after {
  content: "";
  position: absolute;
  border: 1px solid #222;
}

.cart-delete::before {
  top: 6px;
  left: 5px;
  width: 14px;
  height: 15px;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.cart-delete::after {
  top: 2px;
  left: 3px;
  width: 18px;
  height: 5px;
  border-right: 0;
  border-left: 0;
}

.cart-notify::before {
  content: "";
  width: 16px;
  height: 18px;
  border: 1px solid var(--black);
  border-radius: 10px 10px 6px 6px;
}

.cart-notify::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: translateX(-50%) rotate(45deg);
}

.cart-delete::before,
.cart-delete::after,
.cart-notify::before,
.cart-notify::after {
  content: none;
}

.cart-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.cart-delete-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-delete-dialog {
  width: min(199px, calc(100vw - 52px));
  min-height: 86px;
  padding: 14px 10px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  text-align: center;
}

.cart-delete-dialog h2 {
  margin: 0 0 12px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.cart-delete-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cart-delete-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: lowercase;
}

.cart-delete-confirm {
  background: #fff;
  color: #000;
}

.cart-delete-cancel {
  background: #000;
  color: #fff;
}

.cart-delete-actions button:hover,
.cart-delete-actions button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
}

.cart-item.is-unavailable {
  grid-template-columns: 159px minmax(0, 374px) minmax(112px, 1fr) auto;
  opacity: 0.46;
}

.cart-item.is-unavailable .cart-item-actions {
  gap: 21px;
}

.cart-item.is-unavailable .cart-notify {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
}

.cart-unavailable-note {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 1;
}

.cart-empty-block {
  display: none;
  min-height: 300px;
  padding: 0 40px 42px;
  color: #919191;
  text-align: center;
}

.cart-products.is-empty .cart-list {
  display: none;
}

.cart-products.is-empty .cart-empty-block {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 42px;
}

.cart-empty-block h2 {
  margin: 0;
  color: #919191;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart-empty-block p {
  max-width: 900px;
  margin: 0;
  color: #919191;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
}

.cart-empty-block a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cart-empty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1188px, 100%);
  min-height: 90px;
  border-radius: 15px;
  background: var(--white);
  color: var(--black);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.cart-summary {
  position: sticky;
  top: calc(var(--top-stack-visible-height, 110px) + 30px);
  min-width: 0;
}

.cart-summary-inner {
  position: relative;
  width: 100%;
  padding: 54px 47px 48px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 2.55px rgba(0, 0, 0, 0.25);
}

.cart-summary-steps {
  position: absolute;
  top: 16px;
  right: 18px;
  display: flex;
  gap: 6px;
}

.cart-summary-steps button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #919191;
  border-radius: 50%;
  background: var(--white);
  color: #919191;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.cart-summary-steps button.is-active,
.cart-summary-steps button:hover,
.cart-summary-steps button:focus-visible {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.cart-summary h2 {
  margin: 0 0 30px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-promo {
  display: grid;
  margin-bottom: 43px;
}

.cart-promo label {
  margin-bottom: 20px;
  color: #919191;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.cart-promo input {
  width: 100%;
  min-height: 34px;
  margin-bottom: 4px;
  padding: 0 6px 8px;
  border: 0;
  border-bottom: 1px solid #919191;
  outline: 0;
  color: #919191;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.cart-promo-error {
  display: block;
  min-height: 18px;
  margin-bottom: 21px;
  color: #aa2e2e;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
  visibility: hidden;
}

.cart-summary-inner[data-cart-summary-state="3"] .cart-promo-error,
.cart-promo-error.is-error,
.cart-promo-error.is-success {
  visibility: visible;
}

.cart-promo input:focus {
  border-bottom-color: var(--black);
}

.cart-promo button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #000;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.cart-promo button:hover,
.cart-promo button:focus-visible {
  background: #f8f8f8;
}

.cart-promo button.is-activated {
  border-color: #b08bcc;
  background: #b08bcc;
  color: var(--white);
}

.cart-promo button.is-activated:hover,
.cart-promo button.is-activated:focus-visible {
  background: #9f79bd;
}

.cart-total-list {
  display: grid;
  gap: 17px;
  margin: 0;
}

.cart-total-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.cart-total-list dt,
.cart-total-list dd {
  margin: 0;
}

.cart-total-list dd {
  white-space: nowrap;
}

.cart-total-list .cart-discount {
  color: #aa2e2e;
}

.cart-total-list .cart-total {
  align-items: baseline;
  color: var(--black);
  text-transform: uppercase;
}

.cart-total dd {
  font-size: 24px;
  font-weight: 600;
}

.cart-delivery-note {
  margin: 14px 0 28px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
}

.cart-checkout-button-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.cart-checkout-button-1:hover,
.cart-checkout-button-1:focus-visible {
  background: #222;
}

.cart-checkout-button:disabled {
  background: #919191;
  color: var(--white);
  cursor: default;
}

.cart-checkout-button-1 span {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.checkout-page {
  padding: 0 0 80px;
}

.checkout-container {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.checkout-back {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-back svg {
  width: 34px;
  height: 10px;
  max-width: none;
}

.checkout-back:hover,
.checkout-back:focus-visible {
  color: var(--plum);
}

.checkout-back:hover path,
.checkout-back:focus-visible path {
  fill: var(--plum);
}

.checkout-title {
  margin: 0 0 22px;
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 593px);
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}

.checkout-form-column {
  min-width: 0;
}

.checkout-section-title {
  margin: 4px 0 8px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-alert {
  margin: 0 0 26px;
  color: #529d24;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.checkout-block {
  margin: 0;
}

.checkout-block + .checkout-block {
  margin-top: 36px;
}

.checkout-block h3 {
  margin: 0 0 25px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.checkout-block > p,
.checkout-delivery > p,
.checkout-payment p {
  margin: 0 0 17px;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 10px;
}

.checkout-field {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-field input,
.checkout-search-field input,
.checkout-textarea {
  width: 100%;
  border: 1px solid #919191;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  outline: none;
}

.checkout-field input {
  height: 42px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-field input::placeholder,
.checkout-search-field input::placeholder,
.checkout-textarea::placeholder {
  color: #919191;
  opacity: 1;
}

.checkout-field input:focus,
.checkout-search-field input:focus,
.checkout-textarea:focus {
  border-color: var(--black);
}

.checkout-contacts {
  margin-bottom: 37px;
}

.checkout-delivery h3 {
  margin-bottom: 14px;
}

.checkout-sdek {
  display: grid;
  gap: 14px;
  margin: 24px 0 30px;
  padding: 0;
  border: 0;
  background: transparent;
}

.checkout-sdek[hidden] {
  display: none;
}

.checkout-sdek-status,
.checkout-sdek-empty {
  margin: 0;
  color: #919191;
  font-size: 14px;
  line-height: 1.35;
}

.checkout-sdek-search {
  position: relative;
}

.checkout-sdek-pickup input {
  width: 100%;
  height: 42px;
  padding: 0 22px;
  border: 1px solid #919191;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-sdek-suggestions {
  position: absolute;
  z-index: 24;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.checkout-sdek-suggestions[hidden],
.checkout-sdek-pickup[hidden],
.checkout-sdek-selected[hidden] {
  display: none;
}

.checkout-sdek-suggestions button,
.checkout-sdek-office {
  width: 100%;
  padding: 10px 12px;
  color: var(--black);
  text-align: left;
}

.checkout-sdek-suggestions button:hover,
.checkout-sdek-suggestions button:focus-visible,
.checkout-sdek-office:hover,
.checkout-sdek-office:focus-visible {
  background: #f3f3f3;
}

.checkout-sdek-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  margin-top: 10px;
  overflow-y: auto;
}

.checkout-sdek-tabs {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border: 1px solid #919191;
}

.checkout-sdek-tabs button {
  flex: 1 1 0;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-sdek-tabs button + button {
  border-left: 1px solid #919191;
}

.checkout-sdek-tabs button.is-active {
  background: var(--black);
  color: var(--white);
}

.checkout-sdek-panel {
  margin-top: 10px;
}

.checkout-sdek-panel[hidden] {
  display: none;
}

.checkout-sdek-map {
  width: 100%;
  height: 420px;
  border: 1px solid #e5e5e5;
  background: #f8f8f8;
}

.checkout-sdek-map ymaps,
.checkout-sdek-map [class*="ymaps-"] {
  max-width: none !important;
}

.checkout-sdek-map img,
.checkout-sdek-map canvas,
.checkout-sdek-map svg,
.checkout-sdek-map [class*="ymaps-"] img,
.checkout-sdek-map [class*="ymaps-"] canvas,
.checkout-sdek-map [class*="ymaps-"] svg {
  max-width: none !important;
}

.checkout-sdek-office {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background: var(--white);
}

.checkout-sdek-office.is-selected {
  border-color: var(--black);
  background: #f8f8f8;
}

.checkout-sdek-office b,
.checkout-sdek-office span,
.checkout-sdek-selected {
  font-size: 14px;
  line-height: 1.35;
}

.checkout-sdek-office b,
.checkout-sdek-office span:not(.checkout-sdek-office-period) {
  grid-column: 1;
  min-width: 0;
}

.checkout-sdek-office-period {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  color: #529d24;
  white-space: nowrap;
}

.checkout-sdek-selected {
  display: none;
  padding: 10px 12px;
  border-radius: 0;
  background: #edf7e8;
  color: #529d24;
}

.checkout-label {
  display: block;
  margin: 0px 0 9px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-search-field {
  position: relative;
  display: block;
  width: 100%;
}

.checkout-search-field input {
  height: 42px;
  padding: 0 54px 0 22px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-search-field svg {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 21px;
  height: 21px;
  max-width: none;
  transform: translateY(-50%);
  pointer-events: none;
}

.checkout-city-note,
.checkout-muted {
  display: block;
  margin: 9px 0 0;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.checkout-radio-list {
  display: grid;
  gap: 11px;
  margin: 23px 0 34px;
}

.checkout-radio,
.checkout-point-row,
.checkout-consents label {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: var(--black);
  cursor: pointer;
}

.checkout-radio {
  gap: 11px;
  min-height: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.checkout-radio.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.checkout-radio input,
.checkout-point-row input,
.checkout-consents input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.checkout-radio span,
.checkout-point-row span {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid #919191;
  border-radius: 50%;
  background: var(--white);
}

.checkout-radio input:checked + span,
.checkout-point-row input:checked + span {
  border-color: var(--black);
}

.checkout-radio.is-disabled input + span {
  border-color: #cfcfcf;
}

.checkout-radio input:checked + span::after,
.checkout-point-row input:checked + span::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--black);
}

.checkout-radio b {
  font-weight: 600;
}

.checkout-radio em {
  color: #919191;
  font-style: normal;
}

.checkout-payment-option {
  flex-wrap: wrap;
}

.checkout-payment-description {
  flex-basis: 100%;
  margin: 5px 0 0 31px;
  color: #686868;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.checkout-payment-single-description {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.checkout-radio small {
  display: block;
  flex-basis: 100%;
  margin: 5px 0 0 31px;
  color: #686868;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.checkout-payment-empty {
  margin: 0;
}

.checkout-pickup-block h4 {
  margin: 0 0 7px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.checkout-door-block h4 {
  margin: 0 0 17px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-tabs {
  display: flex;
  gap: 24px;
  margin: 18px 0 14px;
}

.checkout-tabs button {
  padding: 0 0 2px;
  border-bottom: 1px solid transparent;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-tabs button.is-active {
  border-color: var(--black);
}

.checkout-point-search {
  margin-bottom: 16px;
}

.checkout-point-search input,
.checkout-list-picker .checkout-search-field input {
  text-transform: uppercase;
  font-size: 12px;
}

.checkout-map {
  width: 100%;
  height: auto;
  min-height: 344px;
  object-fit: cover;
  border: 0;
}

.checkout-list-picker {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.checkout-point-list {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 20;
  width: 100%;
  max-height: 310px;
  overflow-y: auto;
  border: 1px solid #919191;
  background: var(--white);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.checkout-point-list[hidden] {
  display: none;
}

.checkout-point-row {
  gap: 16px;
  min-height: 36px;
  padding: 8px 16px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-point-row:hover {
  background: #f8f8f8;
}

.checkout-point-row em {
  color: #919191;
  font-style: normal;
}

.checkout-point-row span {
  width: 18px;
  height: 18px;
  margin-top: -2px;
  border-width: 2px;
}

.checkout-selected-address {
  margin: 19px 0 0;
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.checkout-selected-address b {
  color: var(--black);
  font-weight: 600;
}

.checkout-selected-address button {
  margin-left: 22px;
  padding: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-door-block {
  margin-top: 20px;
}

.checkout-address-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 178px));
  gap: 20px 13px;
  width: 100%;
}

.checkout-address-grid .checkout-field:nth-child(5) {
  grid-column: 1;
}

.checkout-address-grid .checkout-field span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-address-grid .checkout-field input {
  height: 42px;
  text-transform: none;
  padding-inline: 12px;
}

.checkout-extra-label {
  margin-top: 38px;
}

.checkout-textarea {
  display: block;
  min-height: 96px;
  padding: 13px 15px;
  resize: vertical;
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.checkout-payment h3 {
  margin-bottom: 16px;
}

.checkout-payment p {
  margin-bottom: 11px;
  color: var(--black);
  font-weight: 500;
}

.checkout-payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}

.checkout-payment-logos img {
  width: auto;
  height: auto;
  max-height: 26px;
}

.checkout-order {
  position: sticky;
  top: calc(var(--top-stack-visible-height, 110px) + 20px);
  min-width: 0;
}

.checkout-order-card {
  width: 100%;
  padding: 55px 55px 49px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 2.55px rgba(0, 0, 0, 0.25);
}

.checkout-order-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-order h2 {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.checkout-order h2 span {
  color: #919191;
}

.checkout-order-head a {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-order-items {
  display: grid;
  gap: 10px;
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.checkout-order-media {
  width: 90px;
  height: 119px;
  overflow: hidden;
  background: #f8f8f8;
}

.checkout-order-media img,
.checkout-order-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.checkout-order-item h3 {
  margin: 0 0 4px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.checkout-order-item p {
  margin: 0;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.checkout-order-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.checkout-order-price s {
  color: var(--black);
  text-decoration-thickness: 1px;
}

.checkout-order-price strong {
  color: #000;
  font-weight: 500;
}

.checkout-order-price s+strong  {
  color: #aa2e2e;
}

.checkout-order-warning {
  margin: 16px 0 19px;
  color: #529d24;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.checkout-order-totals {
  display: grid;
  gap: 9px;
  margin: 0 0 31px;
}

.checkout-order-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.checkout-order-totals dt,
.checkout-order-totals dd {
  margin: 0;
}

.checkout-order-totals dd {
  white-space: nowrap;
}

.checkout-delivery-office {
  display: block;
  max-width: 260px;
  margin: -5px 0 3px;
  color: #919191;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
}

.checkout-delivery-office[hidden] {
  display: none;
}

.checkout-order-totals > p {
  max-width: 300px;
  margin: -5px 0 3px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.checkout-order-totals > .checkout-delivery-separate-note {
  max-width: none;
  margin: 2px 0 8px;
  padding: 10px 12px;
  border: 1px solid #d5e7c9;
  background: #f4fbf0;
  color: #3f7e20;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
}

.checkout-order-totals .checkout-order-total {
  margin-top: 4px;
}

.checkout-order-total dt {
  text-transform: uppercase;
}

.checkout-order-total dd {
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
}

.checkout-consents {
  display: grid;
  gap: 8px;
  margin-bottom: 21px;
}

.checkout-consents label {
  gap: 10px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.checkout-consents span {
  position: relative;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  margin-top: 1px;
  border: 1px solid #bcbcbc;
  background: var(--white);
}

.checkout-consents input:checked + span {
  border-color: #919191;
  background: #919191;
}

.checkout-consents input:checked + span::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(40deg);
}

.checkout-pay-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.checkout-pay-button:hover,
.checkout-pay-button:focus-visible {
  background: #222;
}

.checkout-pay-button:disabled {
  background: #919191;
  color: var(--white);
  cursor: default;
}

.cart-checkout-status {
  min-height: 20px;
  color: #666666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.cart-checkout-status.is-error,
.cart-promo-error.is-error {
  color: #aa2e2e;
}

.cart-checkout-status.is-success,
.cart-promo-error.is-success {
  color: #2d7d46;
}

.cart-empty-block button,
.checkout-order-head button {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-page {
  padding: 0 0 201px;
}

.account-container {
  width: min(1284px, calc(100% - 48px));
  margin: 0 auto;
}

.account-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 7px 0 31px;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.account-breadcrumbs a:hover,
.account-breadcrumbs a:focus-visible {
  color: var(--black);
}

.account-layout {
  display: grid;
  grid-template-columns: 315px minmax(0, 900px);
  align-items: start;
  gap: 55px;
}

.account-sidebar h1,
.account-details h2 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-profile {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 29px;
}

.account-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 10px;
  background: #ffbfbf;
  color: var(--white);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.account-profile-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.account-profile-text strong {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-profile-text a {
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-menu {
  display: grid;
  gap: 30px;
  width: 315px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.account-menu a,
.account-menu button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 32px;
  padding: 0;
  text-align: left;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-menu img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.account-menu span {
  min-width: 0;
}

.account-menu em {
  color: #919191;
  font: inherit;
}

.account-menu i {
  justify-self: end;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.account-menu .account-arrow-down {
  transform: rotate(135deg);
}

.account-accordion.is-open > .account-accordion-toggle .account-arrow-down {
  transform: rotate(-45deg);
}

.account-menu a:hover,
.account-menu button:hover,
.account-menu a:focus-visible,
.account-menu button:focus-visible {
  color: var(--plum);
}

.account-menu .is-active a {
  color: #919191;
}

.account-menu .is-active img {
  opacity: 0.4;
}

.account-submenu {
  display: grid;
  gap: 9px;
  width: calc(100% - 42px);
  margin: 12px 0 0 42px;
  padding: 0;
  list-style: none;
  transition: height 0.24s ease, opacity 0.18s ease, margin-top 0.24s ease;
}

.account-submenu[hidden] {
  display: none;
}

.account-submenu a {
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 10px;
  min-height: 26px;
  font-size: 20px;
}

.account-submenu i {
  width: 10px;
  height: 10px;
}

.account-details h2 {
  margin-bottom: 27px;
}

.account-form {
  width: min(900px, 100%);
}

.account-name-grid {
  display: grid;
  grid-template-columns: 274px 274px;
  gap: 16px 12px;
  width: 560px;
}

.account-field {
  display: block;
  min-width: 0;
}

.account-field-wide {
  grid-column: 1 / -1;
}

.account-field input,
.account-field-stacked input {
  display: block;
  width: 100%;
  height: 42px;
  padding: 9px 12px 10px;
  border: 1px solid #919191;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: 500 16px/1.2 "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  outline: none;
}

.account-field input::placeholder,
.account-field-stacked input::placeholder {
  color: #919191;
  opacity: 1;
}

.account-field input:focus,
.account-field-stacked input:focus {
  border-color: var(--black);
}

.account-field [data-birthdate-value] {
  display: none;
}

.account-field [data-birthdate-display] {
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
}

.account-message {
  width: min(560px, 100%);
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.account-message-error {
  border-color: #c74242;
  color: #9f2f2f;
}

.account-message-success {
  border-color: #529d24;
  color: #367313;
}

.account-field-stacked {
  display: grid;
  gap: 5px;
  width: 274px;
}

.account-field-stacked span {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.account-contact-fields {
  display: grid;
  gap: 21px;
  margin-top: 39px;
}

.account-radio-group,
.account-notifications {
  margin: 36px 0 0;
  padding: 0;
  border: 0;
}

.account-radio-group legend,
.account-notifications legend {
  margin: 0 0 17px;
  padding: 0;
  color: var(--black);
  float: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.account-radio-group label,
.account-notifications label {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: fit-content;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.account-radio-group label + label {
  margin-top: 18px;
}

.account-radio-group input,
.account-notifications input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-radio-group label > span,
.account-notifications label > span {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 0;
  border: 1px solid #919191;
  background: var(--white);
}

.account-radio-group label > span {
  border-radius: 50%;
}

.account-radio-group label > span::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0;
}

.account-radio-group input:checked + span {
  border-color: var(--black);
}

.account-radio-group input:checked + span::after {
  opacity: 1;
}

.account-notifications {
  margin-top: 40px;
}

.account-notifications legend {
  margin-bottom: 20px;
}

.account-notifications label {
  width: 534px;
}

.account-notifications label > span {
  border-radius: 2px;
}

.account-notifications label > span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  opacity: 0;
  transform: rotate(45deg);
}

.account-notifications input:checked + span::after {
  opacity: 1;
}

.account-actions {
  display: grid;
  gap: 16px;
  width: 334px;
  margin-top: 39px;
}

.account-primary-button,
.account-secondary-button,
.account-modal-primary,
.account-modal-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-primary-button,
.account-modal-primary {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.account-secondary-button,
.account-modal-secondary {
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.account-primary-button:hover,
.account-primary-button:focus-visible,
.account-modal-primary:hover,
.account-modal-primary:focus-visible {
  background: #222;
}

.account-secondary-button:hover,
.account-secondary-button:focus-visible,
.account-modal-secondary:hover,
.account-modal-secondary:focus-visible {
  border-color: var(--plum);
  color: var(--plum);
}

.account-mobile-back {
  display: none;
}

.account-waitlist-page {
  padding-bottom: 555px;
}

.account-waitlist-page .account-layout {
  grid-template-columns: 315px minmax(0, 917px);
}

.account-waitlist h2 {
  margin: 0 0 29px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-waitlist h2 span {
  color: #919191;
}

.waitlist-section h3 {
  margin: 0 0 26px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.waitlist-section-available h3 {
  color: #529d24;
}

.waitlist-section + .waitlist-section {
  margin-top: 31px;
}

.waitlist-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 12px;
}

.waitlist-card {
  cursor: pointer;
}

.waitlist-card .product-visual {
  aspect-ratio: 219 / 291;
}

.waitlist-card .waitlist-photo-rose {
  filter: hue-rotate(135deg) saturate(0.75) brightness(1.05);
}



.waitlist-card .photo-lines {
  right: 5px;
  bottom: 6px;
  left: 5px;
  gap: 4px;
}

.waitlist-card .photo-lines span {
  height: 2px;
}

.waitlist-card h3 {
  min-height: 0;
  margin: 7px 0 0;
  color: var(--black);
  font-size: 14.58px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.waitlist-price,
.waitlist-size {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 0;
  color: var(--black);
  font-size: 14.58px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.waitlist-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.waitlist-price s {
  font-weight: 400;
  text-decoration-thickness: 1px;
}

.waitlist-price strong {
  font-weight: 600;
}

.waitlist-remove {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-top: 5px;
  padding: 0;
  color: var(--black);
  font-size: 14.58px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-remove:hover,
.waitlist-remove:focus-visible {
  color: var(--plum);
}

.waitlist-card-unavailable .product-visual {
  background: #eeeeee;
}

.waitlist-card-unavailable .product-visual::before,
.waitlist-card-unavailable .photo-lines {
  display: none;
}

.waitlist-card-unavailable .product-visual img,
.waitlist-card-unavailable h3,
.waitlist-card-unavailable .waitlist-price,
.waitlist-card-unavailable .waitlist-size {
  opacity: 0.48;
}

.account-faq-page .account-layout {
  grid-template-columns: 315px minmax(0, 905px);
}

.account-faq h2 {
  margin: 0 0 37px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-list {
  width: min(905px, 100%);
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 78px;
  padding: 0;
  color: var(--black);
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.faq-question svg {
  justify-self: end;
  width: 16px;
  height: 9px;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  width: min(843px, calc(100% - 62px));
  padding: 0 0 32px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: height 0.24s ease, opacity 0.18s ease, padding-bottom 0.24s ease;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 0;
}

.faq-answer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .account-submenu,
  .faq-answer {
    transition: none;
  }
}

.account-contact-page {
  padding-bottom: 425px;
}

.account-contact-page .account-layout {
  grid-template-columns: 315px minmax(0, 607px);
}

.account-contact {
  width: min(607px, 100%);
}

.account-contact h2 {
  margin: 0 0 27px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-contact-lead {
  margin: 0 0 23px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.account-contact-info {
  display: grid;
  gap: 14px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.account-contact-block {
  display: grid;
  gap: 7px;
}

.account-contact-block span,
.account-contact-note {
  color: #919191;
}

.account-contact-block p,
.account-contact-block a,
.account-contact-note {
  margin: 0;
}

.account-contact-block a,
.account-contact-note a {
  color: var(--black);
}

.account-contact-block a:hover,
.account-contact-block a:focus-visible,
.account-contact-note a:hover,
.account-contact-note a:focus-visible {
  color: var(--plum);
}

.account-contact-note {
  margin-top: 2px;
}

.account-contact-note a {
  color: #5269c3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-orders-page {
  padding-bottom: 505px;
}

.account-orders-page .account-layout {
  grid-template-columns: 315px minmax(0, 900px);
  gap: 55px;
}

.account-orders {
  width: min(900px, 100%);
}

.account-orders h2, .account-wishlist h2, .return-heading h2{
  margin: 0 0 30px;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-orders h2 span, .account-wishlist h2 span, .return-heading h2 span {
  color: #919191;
}

.orders-list {
  display: grid;
  gap: 20px;
}

.account-orders-page.is-loading .orders-list {
  opacity: 0.45;
  pointer-events: none;
}

.order-card {
  min-width: 0;
  min-height: 224px;
  padding: 18px 26px 23px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
}

.order-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 18px;
  min-width: 0;
  margin-bottom: 12px;
}

.order-card-header p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  min-width: 0;
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-status {
  min-width: 0;
  color: #919191;
  font: inherit;
}

.order-status-active {
  color: #529d24;
}

.order-details-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.order-details-link svg {
  width: 9px;
  height: 16px;
}

.order-details-link:hover,
.order-details-link:focus-visible {
  color: var(--plum);
}

.order-details-link:hover path,
.order-details-link:focus-visible path {
  stroke: currentColor;
}

.order-products {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.order-product-thumb,
.order-more-products {
  flex: 0 0 114px;
  width: 114px;
  height: 152px;
  background: #f8f8f8;
}

.order-product-thumb {
  display: block;
  overflow: hidden;
}

.order-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.2s ease;
}

a.order-product-thumb:hover img,
a.order-product-thumb:focus-visible img {
  transform: scale(1.03);
}

.order-more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-order-detail-page .account-layout {
  grid-template-columns: 315px minmax(0, 790px);
  gap: 63px;
}

.account-public-layout {
  display: flex;
  justify-content: center;
}

.account-order-detail {
  width: min(790px, 100%);
}

.order-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 28px;
}

.order-detail-back,
.order-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  color: var(--black);
}

.order-detail-back {
  width: 34px;
  height: 24px;
}

.order-copy-button {
  width: 24px;
  height: 24px;
}

.order-detail-back:hover,
.order-detail-back:focus-visible,
.order-copy-button:hover,
.order-copy-button:focus-visible {
  color: var(--plum);
}

.order-detail-back:hover path,
.order-detail-back:focus-visible path,
.order-copy-button:hover path,
.order-copy-button:focus-visible path {
  fill: currentColor;
  stroke: currentColor;
}

.order-detail-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-detail-date,
.order-detail-status {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-date {
  color: var(--black);
}

.order-detail-status {
  margin-top: 30px;
  color: #919191;
}

.order-detail-products {
  display: grid;
  margin-top: 30px;
}

.order-detail-product {
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr) 334px;
  grid-template-rows: auto;
  column-gap: 20px;
  min-width: 0;
  padding: 0 0 48px;
  border-bottom: 1px solid #e5e5e5;
}

.order-detail-product + .order-detail-product {
  padding-top: 20px;
}

.order-detail-product-image {
  grid-row: 1 / 3;
  width: 146px;
  height: 194px;
  background: #f8f8f8;
}

.order-detail-product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.order-detail-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.2s ease;
}

.order-detail-product-image a:hover img,
.order-detail-product-image a:focus-visible img {
  transform: scale(1.03);
}

.order-detail-product-info {
  min-width: 0;
}

.order-detail-product-info h3 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-product-info h3 a {
  color: inherit;
}

.order-detail-product-info h3 a:hover,
.order-detail-product-info h3 a:focus-visible {
  color: var(--plum);
}

.order-detail-product-info p {
  margin: 0 0 19px;
  color: #919191;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-product-info span {
  color: #529d24;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-price {
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.order-return-button {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  width: 334px;
  min-height: 48px;
  transform: translateY(28px);
  border: 1px solid var(--black);
  border-radius: 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
      display: flex;
    justify-content: center;
    align-items: center;
}

.order-return-button:hover,
.order-return-button:focus-visible {
  background: var(--black);
  color: var(--white);
}

.order-detail-summary,
.order-detail-delivery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid #e5e5e5;
}

.order-detail-summary h3,
.order-detail-delivery h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-summary dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.order-detail-summary dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: baseline;
  gap: 20px;
}

.order-detail-summary dt,
.order-detail-summary dd,
.order-detail-delivery p {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.order-detail-summary dd {
  text-align: right;
}

.order-detail-summary .is-discount dt,
.order-detail-summary .is-discount dd {
  color: #aa2e2e;
}

.order-detail-summary .is-total {
  margin-top: 2px;
}

.order-detail-summary .is-total dt {
  text-transform: uppercase;
}

.order-detail-summary .is-total dd {
  font-size: 24px;
  font-weight: 600;
}

.order-detail-summary .is-payment {
  display: block;
  margin-top: -2px;
}

.order-detail-summary .is-payment dt,
.order-detail-delivery p span:nth-child(n + 3) {
  color: #919191;
}

.order-detail-payment-action {
  grid-column: 2;
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.order-detail-payment-action form {
  margin: 0;
}

.order-detail-payment-action .account-message {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #686868;
  font-size: 16px;
  line-height: 1.35;
}

.order-detail-payment-action .checkout_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.order-detail-payment-action .checkout_button:hover,
.order-detail-payment-action .checkout_button:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: none;
}

.order-detail-delivery {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-detail-delivery p {
  display: grid;
  gap: 0;
}

.account-returns-page {
  padding-bottom: 260px;
}

.account-returns-page .account-layout {
  grid-template-columns: 315px minmax(0, 922px);
  gap: 60px;
}

.account-returns {
  width: min(922px, 100%);
}

.account-returns h2,
.return-detail-header h2 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-returns h2 {
  margin-bottom: 30px;
}

.account-returns h2 span,
.return-detail-header h2 span {
  color: #919191;
}

.returns-list {
  display: grid;
  gap: 20px;
}

.return-history-card {
  min-width: 0;
  min-height: 224px;
  padding: 26px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
}

.return-history-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 18px;
  min-width: 0;
  margin-bottom: 12px;
}

.return-history-header p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 16px;
  min-width: 0;
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-history-status {
  color: #919191;
  font: inherit;
}

.return-history-status-active,
.return-history-status-approved {
  color: #529d24;
}

.return-history-status-done {
  color: #919191;
}

.return-history-status-rejected {
  color: #aa2e2e;
}

.return-history-products {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.return-history-products img {
  flex: 0 0 110px;
  width: 110px;
  height: 146px;
  background: #f8f8f8;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.return-photo-blue {
  filter: hue-rotate(45deg) saturate(0.65) brightness(1.18);
}

.return-photo-rose {
  filter: hue-rotate(135deg) saturate(0.75) brightness(1.08);
}

.account-return-detail-page {
  padding-bottom: 560px;
}

.account-return-detail-page .account-layout {
  grid-template-columns: 315px minmax(0, 790px);
  gap: 50px;
}

.account-return-detail {
  width: min(790px, 100%);
}

.return-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 26px;
}

.return-detail-meta {
  display: grid;
  gap: 14px;
  width: min(640px, 100%);
  margin-bottom: 16px;
}

.return-detail-meta p {
  margin: 0;
}

.return-detail-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 16px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-detail-note,
.return-detail-order,
.return-detail-label {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-detail-customer-note {
  width: min(635px, 100%);
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.return-detail-items {
  display: grid;
  gap: 26px;
  width: min(442px, 100%);
}

.return-detail-product-card {
  cursor: default;
}

.return-detail-product-card:hover,
.return-detail-product-card:focus-within {
  background: var(--white);
}

.return-detail-reason {
  margin: 10px 0 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-detail-files {
  margin-top: 14px;
}

.return-detail-files p {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-detail-file-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.return-detail-file {
  position: relative;
  display: block;
  width: 100px;
  height: 127px;
  border-radius: 4px;
  background: #f8f8f8;
  color: var(--white);
  overflow: hidden;
}

.return-detail-file img,
.return-detail-file > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.return-detail-file strong {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 20px 8px 7px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.return-detail-file-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  transform: translate(-50%, -50%);
}

.return-detail-file-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.return-detail-file:hover,
.return-detail-file:focus-visible {
  box-shadow: 0 0 0 1px var(--black);
}

.return-detail-video-modal {
  display: none;
  width: min(920px, 86vw);
  max-width: 100%;
}

.fancybox__content.return-detail-video-modal,
.fancybox__content .return-detail-video-modal {
  display: block;
}

.return-detail-video-modal video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #000;
}

.return-detail-summary {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 18px;
}

.return-detail-summary p {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-detail-summary p strong {
  font-weight: 500;
}

.return-detail-summary span {
  display: block;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.account-return-page {
  padding-bottom: 358px;
}

.account-return-page .account-layout {
  grid-template-columns: 315px minmax(0, 908px);
  gap: 60px;
}

.account-return {
  width: min(908px, 100%);
}

.return-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 30px;
}

.return-heading h2,
.return-step h3 {
  margin: 0;
  color: var(--black);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}


.return-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 24px;
  padding: 0;
  color: var(--black);
}

.return-back:hover path,
.return-back:focus-visible path {
  fill: var(--plum);
}

.return-step[hidden] {
  display: none;
}

.return-step h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.return-orders {
  display: grid;
  gap: 20px;
}

.return-order-card {
  display: block;
  width: 100%;
  min-height: 224px;
  padding: 18px 26px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
  text-align: left;
}

.return-order-card:hover,
.return-order-card:focus-visible {
  border-color: var(--black);
}

.return-order-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 10px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-order-title span {
  color: inherit;
}

.return-order-title em {
  color: #919191;
  font-style: normal;
}

.return-order-products {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.return-order-products img,
.return-order-products > span {
  flex: 0 0 114px;
  width: 114px;
  height: 152px;
}

.return-order-products img {
  background: #f8f8f8;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.return-order-products > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 442px));
  gap: 20px 24px;
}

.return-select-card {
  position: relative;
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-height: 260px;
  padding: 22px 24px 21px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.return-select-card:hover,
.return-select-card:focus-within,
.return-select-card.is-selected {
  background: #efefef;
}

.return-select-check {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.return-select-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--black);
}

.return-select-image {
  width: 162px;
  height: 217px;
  background: #f8f8f8;
}

.return-select-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.return-select-info {
  display: grid;
  min-width: 0;
  align-content: start;
}

.return-select-info h4 {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-select-info p {
  margin: 0;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-select-info strong {
  align-self: end;
  margin-top: 28px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.return-select-info span {
  display: none;
  margin-top: 12px;
  color: #aa2e2e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-select-card.is-selected .return-select-info span:not(:empty) {
  display: block;
}

.return-field-inline {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: #919191;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.return-field-inline input,
.return-field-inline select {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font: 500 14px/1.2 "Manrope", Arial, sans-serif;
}

.return-select-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
}

.return-select-remove::before,
.return-select-remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--black);
}

.return-select-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.return-select-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.return-select-card.is-selected .return-select-remove {
  display: block;
}

.return-selection-summary,
.return-final-summary {
  width: min(420px, 100%);
  margin: 30px 0 0 auto;
}

.return-selection-summary[hidden] {
  display: none;
}

.return-selection-summary p,
.return-final-summary p {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-selection-summary p strong,
.return-final-summary p strong {
  margin-left: 6px;
  font-weight: 500;
}

.return-selection-summary span,
.return-final-summary span {
  display: block;
  margin: 0 0 16px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-primary-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--black);
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.return-primary-button:hover,
.return-primary-button:focus-visible {
  background: var(--white);
  color: var(--black);
}

.return-claim {
  width: min(571px, 100%);
}

.return-claim-item + .return-claim-item {
  margin-top: 50px;
}

.return-claim-caption,
.return-reason {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-claim-card {
  width: min(442px, 100%);
  margin-bottom: 10px;
  cursor: default;
}

.return-claim-card:hover,
.return-claim-card:focus-within {
  background: var(--white);
}

.return-upload-group {
  margin-top: 20px;
}

.return-upload-group h4 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-upload-group p {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.return-upload-status {
  margin: 0 0 12px;
  color: #686868;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.return-upload-status[hidden] {
  display: none;
}

.return-upload-status.is-error {
  color: #aa2e2e;
}

.return-upload-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.return-upload-previews {
  display: contents;
}

.return-upload-preview {
  position: relative;
  width: 100px;
  height: 127px;
  border-radius: 4px;
  background: #f8f8f8;
  color: var(--black);
  overflow: hidden;
}

.return-upload-preview-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.return-upload-preview-photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 8px 7px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.return-upload-preview-video {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 14px 10px;
  text-align: center;
}

.return-upload-video-icon {
  position: relative;
  display: block;
  width: 33px;
  height: 33px;
  margin-bottom: 10px;
  border: 1px solid #919191;
  border-radius: 50%;
}

.return-upload-video-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #919191;
  transform: translate(-50%, -50%);
}

.return-upload-preview-video strong,
.return-upload-preview-video small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0;
}

.return-upload-preview-video strong {
  color: var(--black);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.return-upload-preview-video small {
  margin-top: 5px;
  color: #919191;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.return-upload-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
}

.return-upload-remove::before,
.return-upload-remove::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--white);
}

.return-upload-remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.return-upload-remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.return-upload-button {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 100px;
  height: 127px;
  padding: 12px;
  border-radius: 4px;
  background: #f8f8f8;
  color: var(--black);
  text-align: center;
  cursor: pointer;
}

.return-upload-button[hidden] {
  display: none;
}

.return-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.return-upload-button svg {
  margin-bottom: 12px;
}

.return-upload-button span,
.return-upload-button small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.return-upload-button small {
  margin-top: 6px;
  color: #919191;
}

.return-reason-field {
  display: block;
  width: 100%;
  height: 127px;
  margin: 20px 0;
  padding: 20px;
  border: 0;
  border-radius: 4px;
  background: #f8f8f8;
  color: var(--black);
  resize: none;
  font: 500 14px/1.3 "Manrope", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.return-reason-field::placeholder {
  color: #919191;
}

.return-final-summary {
  margin: 50px 0 0;
}

.return-final-summary p:nth-of-type(3) {
  margin-top: 20px;
}

.account-modal-dialog.account-modal-dialog-return-reason {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  align-items: end;
  gap: 20px;
  min-height: 249px;
  padding: 35px 44px 26px;
  text-align: left;
}

.return-reason-options {
  display: grid;
  gap: 18px;
  align-self: start;
}

.return-reason-options label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
}

.return-reason-options input {
  appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 2px solid #919191;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 4px var(--white);
}

.return-reason-options input:checked {
  border-color: var(--black);
  background: var(--black);
}

.return-reason-submit {
  align-self: end;
  width: 168px;
  min-height: 48px;
}

.account-modal-dialog.account-modal-dialog-return-success {
  min-height: 249px;
  padding: 42px 36px 26px;
}

.account-modal .account-modal-dialog-return-success h2 {
  width: min(429px, 100%);
  font-size: 24px;
  line-height: 1.3;
}

.account-modal .account-modal-dialog-return-success p {
  width: min(441px, 100%);
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

.account-modal-dialog-return-success a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.return-success-button {
  width: min(488px, 100%);
  min-height: 48px;
  margin-top: 30px;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.account-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.account-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(543px, calc(100vw - 48px));
  min-height: 225px;
  margin: 0;
  padding: 68px 36px 22px;
  border-radius: 4px;
  background: var(--white);
  text-align: center;
}

.account-modal-dialog-error {
  width: min(543px, calc(100vw - 48px));
  min-height: 225px;
  margin: 0;
  padding: 57px 36px 22px;
}

.account-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 24px;
  height: 24px;
  padding: 0;
}

.account-modal-close img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.account-modal h2 {
  width: min(409px, 100%);
  margin: 0 auto;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-modal-dialog-error h2 {
  font-size: 24px;
}

.account-modal p {
  margin: 16px 0 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.account-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, 222px);
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.account-modal-dialog-error .account-modal-actions {
  margin-top: 36px;
}

.account-modal-dialog-error .account-modal-primary,
.account-modal-dialog-error .account-modal-secondary {
  min-height: 48px;
  font-size: 16px;
}

.account-modal-primary,
.account-modal-secondary {
  font-size: 16px;
}

@media (max-width: 1200px) {
  .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }

  .account-menu {
    width: 280px;
  }

  .account-waitlist-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .account-faq-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .account-contact-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .account-orders-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }

  .account-order-detail-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }

  .account-returns-page .account-layout,
  .account-return-detail-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }

  .account-return-page .account-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }

  .return-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .account-page {
    padding: 24px 0 80px;
  }

  .account-page .account-breadcrumbs,
  .account-page .product-breadcrumbs {
    display: none;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .account-page:not(.account-home-page) .account-layout {
    position: relative;
    gap: 0;
  }

  .account-home-page .account-layout {
    gap: 0;
  }

  .account-home-page .account-orders {
    display: none;
  }

  .account-page:not(.account-home-page) .account-sidebar {
    display: none;
  }

  .account-page:not(.account-home-page) .account-mobile-back {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: inline-block;
    width: fit-content;
    max-width: min(249px, 54vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: right;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }

  .account-page:not(.account-home-page) .account-mobile-back:hover,
  .account-page:not(.account-home-page) .account-mobile-back:focus-visible {
    color: var(--plum);
  }


  .account-waitlist-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-faq-page {
    padding-bottom: 100px;
  }

  .account-faq-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-contact-page {
    padding-bottom: 100px;
  }

  .account-contact-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-orders-page {
    padding-bottom: 100px;
  }

  .account-orders-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-order-detail-page {
    padding-bottom: 100px;
  }

  .account-order-detail-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-returns-page,
  .account-return-detail-page {
    padding-bottom: 100px;
  }

  .account-returns-page .account-layout,
  .account-return-detail-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-return-page {
    padding-bottom: 100px;
  }

  .account-return-page .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar,
  .account-menu {
    width: 100%;
  }

  .account-menu {
    gap: 18px;
  }

  .account-details {
    max-width: 560px;
  }

  .account-waitlist-page {
    padding-bottom: 100px;
  }

  .waitlist-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-container {
    width: calc(100% - 32px);
  }

  .account-page:not(.account-home-page) .account-mobile-back {
    max-width: 226px;
    font-size: 18px;
  }


  .account-breadcrumbs {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .account-sidebar h1,
  .account-details h2,
  .account-waitlist h2,
  .account-faq h2,
  .account-contact h2,
  .account-orders h2,
  .account-returns h2,
  .return-detail-header h2,
  .return-heading h2 {
    font-size: 20px;
  }

  .return-step h3,
  .return-upload-group h4 {
    font-size: 18px;
  }

  .return-order-card {
    min-height: 0;
    padding: 16px;
  }

  .return-order-title {
    font-size: 16px;
  }

  .return-order-products {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .return-order-products img,
  .return-order-products > span {
    flex-basis: 96px;
    width: 96px;
    height: 128px;
  }

  .return-product-grid {
    grid-template-columns: 1fr;
  }

  .return-select-card {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 0;
    padding: 18px 16px;
  }

  .return-select-image {
    width: 128px;
    height: 170px;
  }

  .return-select-info h4,
  .return-select-info p,
  .return-select-info span {
    font-size: 14px;
  }

  .return-select-info h4 {
    margin-bottom: 16px;
  }

  .return-select-info strong,
  .return-selection-summary p,
  .return-final-summary p {
    font-size: 18px;
  }

  .return-selection-summary,
  .return-final-summary {
    margin-left: 0;
  }

  .return-claim-card {
    width: 100%;
  }

  .return-upload-group p {
    font-size: 12px;
  }

  .order-card {
    min-height: 0;
    padding: 16px;
  }

  .order-card-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-card-header p,
  .order-details-link {
    font-size: 16px;
  }

  .order-products {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .order-product-thumb,
  .order-more-products {
    flex-basis: 96px;
    width: 96px;
    height: 128px;
  }

  .return-history-card {
    min-height: 0;
    padding: 16px;
  }

  .return-history-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .return-history-header p,
  .return-detail-title-line,
  .return-detail-summary p {
    font-size: 18px;
  }

  .return-history-products {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .return-history-products img {
    flex-basis: 96px;
    width: 96px;
    height: 128px;
  }

  .return-detail-header {
    gap: 8px;
    margin-bottom: 22px;
  }

  .return-detail-meta {
    gap: 12px;
  }

  .return-detail-note,
  .return-detail-order,
  .return-detail-label,
  .return-detail-reason {
    font-size: 14px;
  }

  .return-detail-items {
    width: 100%;
  }

  .account-order-detail-page {
    padding-bottom: 100px;
  }

  .order-detail-header {
    gap: 8px;
    margin-bottom: 22px;
  }

  .order-detail-header h2 {
    font-size: 22px;
  }

  .order-detail-date,
  .order-detail-status {
    font-size: 16px;
  }

  .order-detail-status {
    margin-top: 22px;
  }

  .order-detail-products {
    margin-top: 22px;
  }

  .order-detail-product {
    grid-template-columns: 112px minmax(0, 1fr) max-content;
    column-gap: 12px;
    row-gap: 14px;
    padding-bottom: 18px;
  }

  .order-detail-product + .order-detail-product {
    padding-top: 18px;
  }

  .order-detail-product-image {
    width: 112px;
    height: 148px;
  }

  .order-detail-product-info h3,
  .order-detail-product-info p,
  .order-detail-price {
    font-size: 16px;
  }

  .order-detail-product-info h3 {
    margin-bottom: 14px;
  }

  .order-detail-product-info p {
    margin-bottom: 12px;
  }

  .order-return-button {
    grid-column: 1 / 4;
    grid-row: 2;
    align-self: auto;
    width: 100%;
    min-height: 44px;
    transform: none;
    font-size: 16px;
  }

  .order-detail-summary,
  .order-detail-delivery {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .order-detail-summary h3,
  .order-detail-delivery h3 {
    font-size: 22px;
  }

  .order-detail-summary dt,
  .order-detail-summary dd,
  .order-detail-delivery p {
    font-size: 16px;
  }

  .order-detail-summary .is-total dd {
    font-size: 22px;
  }

  .account-contact-lead {
    font-size: 16px;
  }

  .account-contact-info {
    font-size: 14px;
  }

  .account-faq h2 {
    margin-bottom: 22px;
  }

  .faq-question {
    min-height: 64px;
    gap: 16px;
    font-size: 16px;
  }

  .faq-answer {
    width: 100%;
    padding-bottom: 24px;
    font-size: 14px;
  }

  .waitlist-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-card h3,
  .waitlist-price,
  .waitlist-size,
  .waitlist-remove {
    font-size: 14px;
  }

  .account-profile {
    margin-top: 22px;
  }

  .account-profile-text strong,
  .account-menu a,
  .account-menu button,
  .account-primary-button,
  .account-secondary-button {
    font-size: 16px;
  }

  .account-name-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .account-name-grid .account-field {
    display: grid;
    gap: 5px;
  }

  .account-name-grid .account-field > .visually-hidden {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    border: 0 !important;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: normal !important;
  }

  .account-field-wide {
    grid-column: auto;
  }

  .account-field-stacked,
  .account-actions,
  .account-notifications label {
    width: 100%;
  }

  .account-modal {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .account-modal-dialog,
  .account-modal-dialog-error {
    width: min(543px, 100%);
    min-height: auto;
    margin: 0;
    padding: 58px 24px 28px;
    text-align: center;
  }

  .account-modal-dialog.account-modal-dialog-return-reason {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 28px 28px;
  }

  .return-reason-submit {
    width: 100%;
  }

  .account-modal-dialog.account-modal-dialog-return-success {
    padding: 52px 28px 28px;
  }

  .account-modal h2,
  .account-modal-dialog-error h2 {
    font-size: 24px;
  }

  .account-modal-actions,
  .account-modal-dialog-error .account-modal-actions {
    gap: 12px;
    margin-top: 36px;
  }
}

@media (max-width: 479px) {
  .account-page:not(.account-home-page) .account-mobile-back {
    max-width: 205px;
    font-size: 17px;
  }


  .account-menu a,
  .account-menu button {
    grid-template-columns: 28px minmax(0, 1fr) 14px;
    gap: 9px;
  }

  .account-menu img {
    width: 28px;
    height: 28px;
  }

  .account-submenu a {
    grid-template-columns: minmax(0, 1fr) 14px;
    font-size: 16px;
  }

  .waitlist-products-grid {
    gap: 24px 14px;
  }




  .account-modal-actions,
  .account-modal-dialog-error .account-modal-actions {
    grid-template-columns: 1fr;
  }
}


.site-footer {
  background: var(--grey);
  margin-top: 60px;
}

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

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 76px;
  min-height: 217px;
  padding: 27px 80px 30px;
}

.footer-logo {
  display: block;
  flex: 0 0 212px;
  width: 212px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 66px;
  width: 100%;
}

.footer-column {
  display: contents;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer-section h3 {
  margin: 0;
  color: var(--black);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: uppercase;
}

.footer-section a,
.footer-section p {
  margin: 0;
  color: rgba(0, 0, 0, 0.4);
}

.footer-section a:hover {
  color: var(--plum);
}

.footer-buyers {
  order: 2;
  max-width: 176px;
}

.footer-payment {
  order: 3;
}

.footer-contacts {
  order: 4;
  min-width: 150px;
}

.footer-socials {
  order: 5;
}

.payment-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.payment-list img {
  width: auto;
  height: auto;
  max-height: 18px;
}

.payment-list img[alt="Visa"] {
  width: 46px;
}

.payment-list img[alt="Мир"] {
  width: 54px;
}

.payment-list img[alt="Mastercard"] {
  width: 24px;
}

.payment-list img[alt="СБП"] {
  width: 72px;
  max-height: 26px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #919191;
  transition: background-color 0.2s ease;
}

.social-links a:hover {
  background: var(--plum);
}

.social-links img {
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 10px 130px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-bottom a:hover {
  color: var(--plum);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: min(559px, calc(100vw - 40px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner-card {
  width: 100%;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
}

.cookie-banner h2 {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.cookie-banner p {
  max-width: 519px;
  margin: 0 0 27px;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.cookie-banner p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.cookie-banner-button:hover {
  background: #222;
}

@media (max-width: 1200px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
  }

  .checkout-order-card {
    padding-inline: 34px;
  }

  .checkout-order-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
  }

  .checkout-order-price {
    grid-column: 2;
  }
}

@media (max-width: 1024px) {
  .checkout-back {
    position: static;
    margin-bottom: 18px;
  }

  .checkout-title {
    text-align: left;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order {
    position: static;
    max-width: 593px;
  }

  .checkout-order-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .checkout-page {
    padding-bottom: 56px;
  }

  .checkout-container {
    width: calc(100% - 32px);
  }

  .checkout-back {
    font-size: 14px;
  }

  .checkout-title {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .checkout-section-title,
  .checkout-block h3,
  .checkout-order h2,
  .checkout-order-totals div,
  .checkout-pay-button {
    font-size: 18px;
  }

  .checkout-alert,
  .checkout-block > p,
  .checkout-delivery > p,
  .checkout-payment p,
  .checkout-label,
  .checkout-city-note,
  .checkout-muted,
  .checkout-radio,
  .checkout-tabs button,
  .checkout-selected-address,
  .checkout-selected-address button {
    font-size: 14px;
  }

  .checkout-alert br,
  .checkout-block > p br,
  .checkout-delivery > p br,
  .checkout-order-warning br {
    display: none;
  }

  .checkout-field-grid,
  .checkout-address-grid,
  .checkout-list-picker {
    grid-template-columns: 1fr;
  }

  .checkout-field input,
  .checkout-search-field input {
    height: 40px;
    padding-inline: 16px 48px;
  }

  .checkout-field input {
    padding-inline: 16px;
  }

  .checkout-map {
    min-height: 240px;
  }

  .checkout-selected-address button {
    display: inline-block;
    margin: 8px 0 0;
  }

  .checkout-order-card {
    padding: 32px 20px 24px;
  }

  .checkout-order-item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
  }

  .checkout-order-item img {
    width: 90px;
    height: 119px;
  }

  .checkout-order-item h3,
  .checkout-order-item p,
  .checkout-order-warning,
  .checkout-order-totals > p {
    font-size: 14px;
  }

  .checkout-order-price {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .checkout-order-total dd {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 32px;
  }

  .cart-item {
    grid-template-columns: 148px minmax(0, 1fr) minmax(102px, 140px) auto;
    column-gap: 16px;
  }

  .cart-item-media {
    width: 148px;
    height: 197px;
  }

  .cart-item.is-unavailable {
    grid-template-columns: 148px minmax(0, 1fr) minmax(102px, 140px) auto;
  }

  .cart-summary-inner {
    padding-inline: 36px;
  }

  .footer-main {
    gap: 42px;
    padding-inline: 40px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: max-content minmax(150px, 176px) max-content minmax(150px, max-content) max-content;
    gap: 32px 20px;
  }

  .footer-bottom {
    padding-inline: 40px;
  }
}

@media (max-width: 1080px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

  .footer-logo {
    flex-basis: auto;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 28px 36px;
  }
}

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

  .cart-summary {
    position: static;
    max-width: 512px;
  }

  .mega-menu {
    display: none;
  }

  .search-panel-form {
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 16px;
  }

  .search-panel-submit {
    width: 150px;
  }

  .search-panel-inner {
    position: relative;
    padding-top: 42px;
  }

  .search-panel-close {
    position: absolute;
    top: 0;
    right: 0;
    justify-self: auto;
    width: 40px;
    height: 40px;
    min-height: 0;
    font-size: 0;
  }

  .search-panel-close::before,
  .search-panel-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: #919191;
    transform-origin: center;
  }

  .search-panel-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .search-panel-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .search-panel-body {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
  }

  .search-products-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }

  .login-modal-dialog {
    grid-template-columns: minmax(300px, 42%) minmax(0, 58%);
    width: min(900px, calc(100vw - 32px));
  }

  .login-modal-content {
    padding-inline: 28px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
  }

  .promo-banner,
  .promo-banner-weather {
    flex-direction: column;
  }

  .promo-banner-media,
  .promo-banner-copy,
  .promo-banner-weather .promo-banner-media,
  .promo-banner-weather .promo-banner-copy {
    flex-basis: auto;
  }

  .promo-banner-weather .promo-banner-copy {
    order: 2;
  }

  .promo-banner-weather .promo-banner-media {
    order: 1;
  }

  .hero-slider {
    height: 620px;
    min-height: 500px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .cart-page {
    padding-bottom: 64px;
  }

  .cart-container {
    width: calc(100% - 32px);
  }

  .cart-breadcrumbs {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .cart-products h1 {
    display: block;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .cart-products h1 span {
    margin-left: 8px;
  }

  .cart-alert {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .cart-item,
  .cart-item.is-unavailable {
    grid-template-columns: 118px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 14px;
    min-height: 0;
    padding-bottom: 20px;
  }

  .cart-item + .cart-item {
    padding-top: 20px;
  }

  .cart-item-media {
    width: 118px;
    height: 157px;
  }

  .cart-item-title {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .cart-item-meta {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .cart-item-info {
    justify-content: flex-start;
}

  .cart-item-controls {
    gap: 12px;
  }

  .cart-size-field,
  .cart-quantity {
    gap: 6px;
    font-size: 13px;
  }

  .cart-size-select,
  .cart-size-select summary,
  .cart-size-options,
  .cart-size-disabled,
  .cart-quantity-stepper {
    width: 76px;
  }

  .cart-size-select summary,
  .cart-size-disabled,
  .cart-quantity-stepper {
    min-height: 38px;
    border-radius: 8px;
    font-size: 16px;
  }

  .cart-size-select summary {
    padding-inline: 9px;
  }

  .cart-size-select summary svg {
    width: 12px;
    height: 8px;
  }

  .cart-size-options {
    top: 36px;
    max-height: 218px;
    border-radius: 0 0 8px 8px;
  }

  .cart-size-options button {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 16px;
  }

  .cart-quantity-stepper {
    padding-inline: 6px;
  }

  .cart-quantity-stepper button {
    width: 18px;
    height: 30px;
    font-size: 24px;
  }

  .cart-quantity-stepper output {
    min-width: 18px;
    font-size: 16px;
  }

  .cart-item-price {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    padding: 0;
    font-size: 16px;
  }

  .cart-item-actions,
  .cart-item.is-unavailable .cart-item-actions {
    position: static;
    grid-column: 1 / -1;
    justify-content: flex-end;
    align-self: center;
    padding: 0;
  }

  .cart-delete-modal {
    padding: 20px;
  }

  .cart-delete-dialog {
    width: 100%;
    max-width: 300px;
    min-height: 0;
    padding: 30px 20px;
  }

  .cart-delete-dialog h2 {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .cart-delete-actions button {
    min-height: 46px;
  }

  .cart-unavailable-note {
    grid-column: 1 / -1;
    margin-top: 0;
    font-size: 12px;
  }

  .cart-summary-inner {
    min-height: 0;
    padding: 32px 24px;
  }

  .cart-summary-steps {
    top: 12px;
    right: 12px;
  }

  .cart-summary h2 {
    margin-bottom: 24px;
    font-size: 22px;
  }

  .cart-promo {
    margin-bottom: 32px;
  }

  .cart-promo label,
  .cart-total-list div,
  .cart-delivery-note,
  .cart-checkout-button {
    font-size: 16px;
  }

  .cart-promo input {
    margin-bottom: 4px;
  }

  .cart-promo-error {
    margin-bottom: 18px;
  }

  .cart-total dd {
    font-size: 20px;
  }

  .cart-products.is-empty .cart-empty-block {
    gap: 28px;
  }

  .cart-empty-block {
    min-height: 240px;
    padding-inline: 0;
  }

  .cart-empty-block h2,
  .cart-empty-block p,
  .cart-empty-button {
    font-size: 24px;
  }

  .cart-empty-button {
    min-height: 64px;
    border-radius: 12px;
  }

  .hero-slider {
    height: 560px;
    min-height: 460px;
  }

  .hero-slide-content {
    left: 20px;
    right: 20px;
    bottom: 82px;
  }

  .hero-slide-content h1,
  .hero-slide-content p {
    font-size: 32px;
  }

  .hero-slider-pagination {
    left: 20px;
    right: 20px;
    gap: 10px;
    bottom: 0px;
  }

  .hero-slider-pagination button {
    height: 28px;
    padding: 14px 0;
  }

  .hero-slider-pagination span {
    top: 14px;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .products-section {
    padding-top: 24px;
  }

  .products-section h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .products-section-action {
    justify-content: center;
  }



  .products-section-link, .cart-checkout-button{

    font-size: 16px;

  }

  .cart-checkout-button,.products-section-link {
    width: 100%;
  }

  .cart-checkout-button svg{
    display: none;

  }

  .product-label {
    top: 13px;
    left: 14px;
    font-size: 16px;
  }

  .photo-lines {
    gap: 5px;
  }

  .product-card h3,
  .product-price {
    font-size: 16px;
  }

  .promo-banner {
    width: calc(100% - 32px);
    height: auto;
    min-height: 0;
    margin-top: 24px;
  }

  .promo-banner-media {
    min-height: 320px;
  }

  .promo-banner-copy {
    min-height: 280px;
    padding: 36px 20px;
  }

  .promo-banner-copy h2 {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .promo-banner-copy p {
    font-size: 16px;
  }

  .social-carousel-section {
    margin: 56px 0 120px;
  }

  .social-carousel-copy {
    width: calc(100% - 32px);
    margin-bottom: 32px;
  }

  .social-carousel-copy h2 {
    font-size: 22px;
  }

  .social-carousel-item {
    flex-basis: 60%;
    width: 60%;
    height: 320px;
  }

  .side-menu {
    width: min(336px, 100vw);
    padding: 92px 30px 54px 35px;
  }

  .side-menu-close {
    top: 14px;
    right: 14px;
  }

  .side-menu-nav {
    gap: 11px;
    font-size: 16px;
  }

  .side-menu-contacts {
    gap: 12px;
    margin-top: 47px;
  }

  .side-menu-contact-group {
    gap: 8px;
  }

  .side-menu-contact-group p,
  .side-menu-socials p {
    font-size: 14px;
  }

  .side-menu-contact-group a {
    font-size: 16px;
  }

  .side-menu-note {
    max-width: 266px;
    font-size: 12px;
  }

  .side-menu-socials {
    margin-top: auto;
    padding-top: 0;
  }

  .side-menu-social-links {
    gap: 12px;
    margin-top: 15px;
  }

  .side-menu-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .side-menu-social-links img {
    max-width: 27px;
    max-height: 27px;
  }

  .search-panel-inner {
    width: calc(100% - 32px);
    margin-top: 24px;
    padding-top: 50px;
  }

  .search-panel-form {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 8px;
  }

  .search-panel-submit {
    width: 104px;
  }

  .search-panel-close {
    top: 0;
    right: 0;
  }

  .search-panel-body {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .search-suggestions button {
    min-height: 42px;
  }

  .search-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .quick-cart-modal {
    padding: 16px;
  }

  .quick-cart-dialog {
    grid-template-columns: 137px minmax(0, 1fr);
    gap: 0 8px;
    width: min(393px, calc(100vw - 32px));
    min-height: 0;
    padding: 16px;
    border-radius: 8px;
    align-items: start;
  }

  .quick-cart-image {
    grid-row: 1 / span 5;
    align-self: center;
    width: 137px;
    height: 167px;
    background: transparent;
    margin-top: auto;
  }

  .quick-cart-content {
    display: contents;
  }

  .quick-cart-content h2 {
    grid-column: 2;
    margin: 0 14px 4px 0;
    font-size: 15px;
    line-height: 1.1;
    text-align: left;
  }

  .quick-cart-content p,
  .quick-cart-price,
  .quick-cart-colors,
  .quick-cart-sizes {
    grid-column: 2;
  }

  .quick-cart-content p {
    margin-bottom: 2px;
    color: #919191;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .quick-cart-price {
    margin-bottom: 0px;
    font-size: 18px;
  }

  .quick-cart-sizes {
    grid-template-columns: repeat(3, 35px);
    margin-bottom: 4px;
  }

  .quick-cart-sizes button {
    height: 35px;
    width: 35px;
  }

  .quick-cart-size-link {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 0px;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    text-decoration: underline;
  }

  .quick-cart-add {
    grid-column: 1 / -1;
    height: 49px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
  }

  .cart-toast, .waitlist-toast {
    right: 16px;
    bottom: 16px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    width: calc(100vw - 32px);
    height: 154px;
    padding: 14px;
  }

  .cart-toast > img, .waitlist-toast > img {
    width: 96px;
    height: auto;
  }

  .size-subscribe-modal {
    align-items: flex-start;
    padding: 24px 16px;
    overflow-y: auto;
  }

  .size-subscribe-dialog {
    min-height: 0;
    padding: 42px 28px 28px;
  }

  .size-subscribe-dialog h2 {
    font-size: 22px;
  }

  .size-subscribe-options {
    margin-bottom: 36px;
  }

  .size-subscribe-note {
    margin-bottom: 22px;
  }

  .size-subscribe-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .waitlist-modal,
  .product-image-modal {
    align-items: flex-start;
    padding: 24px 16px;
    overflow-y: auto;
  }

  .waitlist-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 46px 18px 22px;
  }

  .waitlist-image {
    min-height: 190px;
  }

  .waitlist-content {
    padding-top: 0;
  }

  .waitlist-content h2 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .waitlist-content > p {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .waitlist-sizes {
    gap: 6px;
  }

  .waitlist-sizes button {
    min-height: 48px;
    font-size: 14px;
  }

  .waitlist-size-table {
    font-size: 16px;
  }

  .waitlist-add {
    min-height: 52px;
    font-size: 16px;
  }

  .product-image-dialog {
    padding: 44px 20px 28px;
  }

  .product-image-dialog p {
    font-size: 16px;
  }

  .login-modal {
    padding: 16px;
  }

  .login-modal-dialog {
    display: block;
    width: min(520px, calc(100vw - 32px));
    min-height: auto;
    max-height: calc(100dvh - 32px);
  }

  .login-modal-media {
    display: none;
  }

  .login-modal-content {
    min-height: min(620px, calc(100dvh - 32px));
    padding: 54px 28px 22px;
  }

  .login-step-tabs {
    margin-bottom: 34px;
  }

  .login-step {
    min-height: 456px;
  }

  .login-step h1,
  .login-step h2 {
    margin-bottom: 26px;
    font-size: 22px;
  }

  .login-step p {
    font-size: 15px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .cookie-banner-card {
    padding: 18px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
  }

  .cookie-banner h2 {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .cookie-banner p {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .cookie-banner-button {
    min-height: 48px;
    font-size: 14px;
  }

  .site-footer {
    background: var(--white);
    margin-top: 40px;
  }

  .footer-main {
    display: block;
    min-height: auto;
    padding: 24px 16px 0;
  }

  .footer-logo {
    width: clamp(178px, 36vw, 212px);
    margin-bottom: 24px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    justify-content: start;
    width: 100%;
  }

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

  .footer-column-left {
    gap: 16px;
  }

  .footer-column-right {
    gap: 20px;
  }

  .footer-section {
    gap: 6px;
    font-size: 14px;
    line-height: 1.3;
  }

  .footer-buyers {
    max-width: none;
  }

  .footer-payment {
    order: 3;
  }

  .footer-contacts {
    order: 1;
    min-width: 0;
  }

  .footer-socials {
    order: 2;
  }

  .payment-list img[alt="СБП"] {
    display: none;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .social-links img {
    max-width: 30px;
    max-height: 30px;
  }

  .footer-bottom {
    min-height: 48px;
    margin-top: 28px;
    padding: 12px 16px 8px;
    font-size: 12px;
  }
}

@media (max-width: 570px) {
  .home-mobile-categories {
    display: block;
    width: 100%;
    margin: 10px 0 30px;
    overflow: hidden;
  }

  .home-mobile-categories-track {
    display: flex;
  }

  .home-mobile-category-card {
    width: clamp(174px, calc((100vw - 50px) / 2), 233px);
    flex: 0 0 auto;
    color: #222222;
    text-decoration: none;
  }

  .home-mobile-category-image {
    display: block;
    width: 100%;
    height: clamp(240px, 61vw, 326px);
    overflow: hidden;
    background: #f2f2f2;
  }

  .home-mobile-category-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-mobile-category-name {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 479px) {
  .footer-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 20px;
  }

  .footer-bottom {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .catalog-topline {
    grid-template-columns: 160px minmax(0, 1fr) 160px;
  }

  .catalog-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 82px;
    padding: 12px 12px 0;
    align-items: flex-start;
  }

  .header-center {
    top: 12px;
    width: auto;
    gap: 0;
  }

  .logo {
    width: 176px;
    max-height: 54px;
  }

  nav.main-nav {
    display: none;
  }

  .header-actions-left > button,
  .header-actions-right > .icon-button {
    width: 36px;
    height: 36px;
  }

  .header-actions-right > .icon-button:nth-child(3),
  .header-actions-right > .icon-button:nth-child(4) {
    display: none;
  }

  .lite-mobile-page .header-actions-left,
  .lite-mobile-page .header-actions-right,
  .lite-mobile-page .site-header.is-compact .header-actions-left,
  .lite-mobile-page .site-header.is-compact .header-actions-right {
    display: flex;
    align-items: flex-start;
  }

  .lite-mobile-page .mobile-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lite-mobile-page .menu-toggle {
    width: 55px;
    padding: 0;
  }

  .lite-mobile-page .menu-toggle svg {
    width: 40px;
    height: 30px;
    max-width: none;
  }

  .lite-mobile-page .header-actions-right > .icon-button:nth-child(1) {
    display: none;
  }

  .lite-mobile-page .header-actions-right > .icon-button:nth-child(2),
  .lite-mobile-page .header-actions-right > .icon-button:nth-child(3),
  .lite-mobile-page .header-actions-right > .icon-button:nth-child(4) {
    display: flex;
  }

  .lite-mobile-page .header-actions-right > .icon-button:nth-child(2) {
    order: 1;
  }

  .lite-mobile-page .header-actions-right > .icon-button:nth-child(3) {
    order: 2;
  }

  .lite-mobile-page .header-actions-right > .icon-button:nth-child(4) {
    order: 3;
  }

  .lite-mobile-page .side-menu-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 266px;
    gap: 11px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }

  .lite-mobile-page .side-menu-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
  }

  .lite-mobile-page .side-menu-mobile-toggle,
  .lite-mobile-page .side-menu-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 19px;
    padding: 0;
    color: var(--black);
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
  }

  .lite-mobile-page .side-menu-mobile-toggle svg {
    flex: 0 0 auto;
    width: 12px;
    height: 7px;
    margin-left: 12px;
    transition: transform 0.2s ease;
  }

  .lite-mobile-page .side-menu-mobile-item.is-open .side-menu-mobile-toggle svg {
    transform: rotate(180deg);
  }

  .lite-mobile-page .side-menu-mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 4px 16px;
  }

  .lite-mobile-page .side-menu-mobile-panel[hidden] {
    display: none;
  }

  .lite-mobile-page .side-menu-mobile-panel a {
    color: #919191;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }

  .lite-mobile-page .side-menu-nav {
    margin-top: 47px;
  }

  @media (max-width: 589px) {
    .lite-mobile-page .site-header,
    .lite-mobile-page .site-header.is-compact {
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    .lite-mobile-page .header-inner,
    .lite-mobile-page .site-header.is-compact .header-inner {
      height: 58px;
      align-items: center;
      padding: 7px 12px 0;
      max-width: none;
    }

    .lite-mobile-page .header-center,
    .lite-mobile-page .site-header.is-compact .header-center {
      top: 7px;
      left: 50%;
      width: auto;
      gap: 0;
      transform: translateX(-50%);
    }

    .lite-mobile-page .logo,
    .lite-mobile-page .site-header.is-compact .logo {
      width: 132px;
      max-height: 42px;
      margin: 0;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
      transition: none;
    }

    .lite-mobile-page nav.main-nav,
    .lite-mobile-page .site-header.is-compact nav.main-nav {
      display: none;
    }

    .lite-mobile-page .header-actions-left,
    .lite-mobile-page .header-actions-right,
    .lite-mobile-page .site-header.is-compact .header-actions-left,
    .lite-mobile-page .site-header.is-compact .header-actions-right {
      align-self: flex-start;
      display: flex;
      align-items: flex-start;
    }

    .lite-mobile-page .header-actions-left > button,
    .lite-mobile-page .site-header.is-compact .header-actions-left > button {
      width: 36px;
      height: 36px;
    }

    .lite-mobile-page .header-actions-left > .menu-toggle,
    .lite-mobile-page .site-header.is-compact .header-actions-left > .menu-toggle {
      width: 42px;
      padding: 0;
    }

    .lite-mobile-page .mobile-search-button {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lite-mobile-page .menu-toggle svg {
      width: 40px;
      height: 30px;
      max-width: none;
    }

    .lite-mobile-page .header-actions-right > .icon-button,
    .lite-mobile-page .site-header.is-compact .header-actions-right > .icon-button {
      width: 32px;
      height: 36px;
    }

    .lite-mobile-page .header-actions-right > .icon-button svg {
      max-width: 21px;
      max-height: 21px;
    }

    .lite-mobile-page .header-actions-right > .icon-button:nth-child(1) {
      display: none;
    }

    .lite-mobile-page .header-actions-right > .icon-button:nth-child(2),
    .lite-mobile-page .header-actions-right > .icon-button:nth-child(3),
    .lite-mobile-page .header-actions-right > .icon-button:nth-child(4) {
      display: flex;
    }

    .lite-mobile-page .header-actions-right > .icon-button:nth-child(2) {
      order: 1;
    }

    .lite-mobile-page .header-actions-right > .icon-button:nth-child(3) {
      order: 2;
    }

    .lite-mobile-page .header-actions-right > .icon-button:nth-child(4) {
      order: 3;
    }

    .lite-mobile-page .cart-button span,
    .lite-mobile-page .site-header.is-compact .cart-button span {
      top: 6px;
      right: -1px;
      width: 14px;
      height: 14px;
      margin: 0;
      font-size: 8px;
      line-height: 14px;
      transform: none;
    }

    .lite-mobile-page .side-menu {
      width: 100vw;
      max-width: none;
      padding: 92px 30px 54px 35px;
      background: var(--white);
    }

    .lite-mobile-page .side-menu-close {
      top: 14px;
      right: 14px;
    }

    .lite-mobile-page .side-menu-close svg path {
      stroke: #222222;
    }

    .lite-mobile-page .side-menu-mobile-nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      gap: 18px;
      color: var(--black);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-mobile-item {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: 8px;
    }

    .lite-mobile-page .side-menu-mobile-toggle,
    .lite-mobile-page .side-menu-mobile-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 19px;
      padding: 0;
      color: var(--black);
      text-align: left;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-mobile-toggle svg {
      flex: 0 0 15px;
      width: 14px;
      height: 7px;
      margin-left: 12px;
      transition: transform 0.2s ease;
      margin-right: -12px;

    }

      .lite-mobile-page .side-menu-mobile-toggle svg path {
        stroke-width: 1.31px;
    }

    .lite-mobile-page .side-menu-mobile-item.is-open .side-menu-mobile-toggle svg {
      transform: rotate(180deg);
    }

    .lite-mobile-page .side-menu-mobile-panel {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 8px 0 0px 16px;
    }

    .lite-mobile-page .side-menu-mobile-panel[hidden] {
      display: none;
    }

    .lite-mobile-page .side-menu-mobile-panel a {
      color: #919191;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-nav {
      width: 266px;
      gap: 18px;
      margin-top: 47px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-contacts {
      width: 266px;
      gap: 12px;
      margin-top: 47px;
    }

 

    .lite-mobile-page .side-menu-contact-group {
      gap: 8px;
    }

    .lite-mobile-page .side-menu-contact-group p,
    .lite-mobile-page .side-menu-socials p {
      color: #919191;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-contact-group a,
    .lite-mobile-page .side-menu-contact-meta {
      color: var(--black);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-note {
      max-width: 266px;
      color: #919191;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.2;
    }

    .lite-mobile-page .side-menu-note a {
      color: #5f6fc8;
      text-underline-offset: 2px;
    }

    .lite-mobile-page .side-menu-socials {
      width: 266px;
      margin-top: 20px;
      padding-top: 0;
    }

    .lite-mobile-page .side-menu-social-links {
      gap: 12px;
      margin-top: 15px;
    }

    .lite-mobile-page .side-menu-social-links a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
    }

    .lite-mobile-page .side-menu-social-links img {
      max-width: 27px;
      max-height: 27px;
    }
  }

  .catalog-page {
    padding-bottom: 72px;
  }

  .catalog-container {
    width: calc(100% - 32px);
  }

  .catalog-breadcrumbs {
    margin: 0 0 34px;
    font-size: 14px;
  }

  .catalog-topline {
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
  }

  .catalog-topline h1 {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 22px;
  }

  .catalog-filter-toggle {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .catalog-sort {
    grid-column: 2;
    grid-row: 2;
  }

  .catalog-chips {
    justify-content: flex-start;
    gap: 8px;
    margin: 26px 0 26px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .catalog-chips button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px 7px 16px;
    font-size: 16px;
  }

  .catalog-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .catalog-products-grid .product-card {
    margin-bottom: 6px;
  }

  .catalog-more-wrap {
    margin-top: 32px;
  }

  .catalog-copy {
    margin-top: 18px;
  }

  .catalog-copy h2 {
    font-size: 22px;
  }

  .catalog-copy p,
  .catalog-copy h3 {
    font-size: 14px;
  }

  .catalog-filter-menu {
    width: min(336px, 100vw);
    padding: 44px 16px 16px 20px;
  }

  .catalog-filter-close {
    top: 10px;
    right: 14px;
  }

  .catalog-filter-scroll {
    padding-right: 12px;
  }

  .filter-check,
  .filter-color {
    min-height: 31px;
    gap: 12px;
    font-size: 16px;
  }

  .filter-color span {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .filter-size-grid {
    gap: 5px;
  }

  .filter-size-grid button {
    font-size: 14px;
  }

  .catalog-filter-actions {
    right: 20px;
    left: 20px;
  }
}

@media (max-width: 1180px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
  }

  .product-gallery-main,
  .product-gallery-more {
    gap: 14px;
  }

  .product-size-list {
    grid-template-columns: repeat(6, 50px);
  }
}

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

  .product-summary-column {
    position: static;
    max-width: 520px;
    overflow: visible;
  }

  .product-size-list {
    grid-template-columns: repeat(6, 50px);
  }
}

@media (max-width: 760px) {
  .product-page {
    padding-bottom: 48px;
  }

  .product-container {
    width: calc(100% - 20px);
  }

  .product-breadcrumbs {
    margin: 12px 0 8px;
    font-size: 14px;
  }

  .product-layout {
    gap: 14px;
  }

  .product-summary-column {
    max-width: none;
  }

  .product-summary {
    position: relative;
  }

  .product-gallery-main {
    grid-template-columns: 1fr;
  }

  .product-gallery-main.swiper {
    width: calc(100% + 20px);
    margin-left: -10px;
    overflow: hidden;
    background: var(--grey);
  }

  .product-gallery-mobile-wrapper {
    display: flex;
  }

  .product-gallery-main .product-gallery-mobile-wrapper .product-gallery-item:nth-child(n+3) {
    display: block;
  }

  .product-gallery-main .product-gallery-item {
    aspect-ratio: 589 / 788;
    background: var(--grey);
  }

  .product-gallery-item img,
  .product-gallery-item-cover img {
    object-fit: contain;
    padding: 24px 10px 42px;
  }

  .product-gallery-more {
    display: none;
  }

  .product-gallery-pagination {
    position: absolute;
    right: 16px;
    bottom: 7px;
    left: 16px;
    z-index: 3;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 10px;
    pointer-events: auto;
    padding: 0 10px;
  }

  .product-gallery-bullet {
    display: block;
    width: 100%;
    height: 12px;
    padding: 4px 0;
    border: 0;
    background: transparent;
  }

  .product-gallery-bullet span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 7px;
    background: #c9c9c9;
    transition: background-color 0.2s ease;
  }

  .product-gallery-bullet.is-active span,
  .product-gallery-bullet.swiper-pagination-bullet-active span,
  .product-gallery-bullet[aria-current="true"] span {
    background: #9c9c9c;
  }

  .product-page-heart {
    top: 16px;
    right: 16px;
    width: 24px;
    height: 23px;
  }

  .product-gallery-toggle {
    right: 10px;
    bottom: 10px;
    min-width: 142px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .product-summary h1,
  .product-summary-price {
    font-size: 18px;
    font-weight: 800;
  }

  .product-summary h1 {
    order: 1;
    padding-right: 0;
  }

  .product-summary-price {
    order: 3;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .product-summary-code {
    order: 2;
    margin-bottom: 16px;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
  }

  .product-summary-copy {
    order: 7;
    margin: 22px 0 22px;
    font-size: 13px;
    line-height: 1.35;
  }

  .product-choice {
    margin-bottom: 20px;
  }

  .product-choice p {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .product-choice[data-product-color-choice] {
    order: 4;
    margin-bottom: 18px;
  }

  .product-size-choice {
    order: 5;
  }

  .product-size-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
  }

  .product-size-list button {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    font-size: 13px;
  }

  .product-size-table {
    margin-top: 9px;
    color: var(--black);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .product-color-select {
    position: static;
    z-index: auto;
  }

  .product-color-current {
    display: none;
  }

  .product-color-menu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-color-select.is-open .product-color-menu {
    display: flex;
  }

  .product-color-menu button {
    display: block;
    width: 28px;
    min-height: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    line-height: 0;
  }

  .product-color-menu button:hover,
  .product-color-menu button:focus-visible,
  .product-color-menu button.is-selected {
    background: transparent;
  }

  .product-color-menu .product-color-image {
    display: none;
  }

  .product-color-menu .product-color-swatch {
    display: block;
  }

  .product-color-swatch {
    width: 28px;
    height: 28px;
  }

  .product-color-menu button.is-selected .product-color-swatch {
    border: 1px solid var(--black);
    box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 30px var(--swatch, #f8f8f8);
  }

  .product-color-menu button.is-selected .product-color-swatch.is-white {
    box-shadow: inset 0 0 0 3px var(--white);
  }

  .product-color-name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .product-add-button {
    order: 6;
  }

  .product-accordion-list {
    order: 8;
    gap: 14px;
    margin: -10px;
  }

  .product-accordion-toggle {
    min-height: 38px;
    font-size: 18px;
    padding: 15px 10px;
  }

  .product-accordion-panel {
    padding-left: 10px;
    padding-right: 10px;
}

  .product-info-image {
    width: 100%;
    margin-top: 12px;
    border-radius: 4px;
  }

  .product-related {
    padding-top: 56px;
  }
}

@media (max-width: 578px) {
  .product-size-list {
    grid-template-columns: repeat(6, minmax(0, 50px));
  }

  .product-add-button {
    order: 6;
    height: 51px;
    margin-bottom: 0px;
    border-radius: 6px;
  }
}


      .static-pages {
        padding: 0 0 72px;
        color: #000;
      }

      .static-page {
        padding: 0 0 96px;
      }

      .static-page + .static-page {
        padding-top: 12px;
      }

      .static-container {
        width: min(1000px, calc(100% - 48px));
        margin: 0 auto;
      }

      .static-breadcrumbs {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
        width: min(1280px, calc(100% - 48px));
        margin: 4px auto 31px;
        color: #919191;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
      }

      .static-breadcrumbs a:hover,
      .static-breadcrumbs a:focus-visible {
        color: var(--plum);
      }

      .static-title {
        margin: 0 0 30px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        text-transform: uppercase;
      }

      .static-content {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.3;
      }

      .static-content h2 {
        margin: 0 0 22px;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.3;
      }

      .static-content h3 {
        margin: 0 0 22px;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.3;
      }

      .static-content section + section {
        margin-top: 30px;
      }

      .static-content ul {
        display: grid;
        gap: 22px;
        margin: 0 0 30px;
        padding-left: 24px;
      }

      .static-content li::marker {
        font-size: 0.75em;
      }

      .static-content p {
        margin: 0 0 22px;
      }

      .static-content p:last-child,
      .static-content ul:last-child {
        margin-bottom: 0;
      }

      .not-found-page {
        min-height: calc(100vh - var(--top-stack-visible-height, 110px));
        padding-bottom: 110px;
      }

      .not-found-inner {
        position: relative;
        width: min(720px, calc(100% - 48px));
        margin: 0 auto;
        padding-top: 4px;
      }

      .not-found-art {
        position: relative;
        width: min(670px, 100%);
        margin: 0 auto -22px;
      }

      .not-found-art img {
        width: 100%;
        height: auto;
      }

      .not-found-copy {
        width: min(431px, 100%);
        margin: 0 auto;
      }

      .not-found-copy h1 {
        margin: 0 0 24px;
        color: var(--brand);
        font-size: 128px;
        font-weight: 800;
        line-height: 0.9;
      }

      .not-found-copy p {
        margin: 0 0 20px;
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
      }

      .not-found-copy .error-code {
        margin-bottom: 34px;
      }

      .not-found-copy a {
        display: inline-block;
        font-size: 32px;
        font-weight: 500;
        line-height: 1.2;
        text-decoration: underline;
        text-underline-offset: 4px;
      }

      .not-found-copy a:hover,
      .not-found-copy a:focus-visible {
        color: var(--plum);
      }

      @media (max-width: 768px) {
        .static-pages {
          padding-bottom: 48px;
        }

        .static-page {
          padding-bottom: 72px;
        }

        .static-container,
        .static-breadcrumbs,
        .not-found-inner {
          width: min(100% - 32px, 1000px);
        }

        .static-breadcrumbs {
          margin-bottom: 26px;
          font-size: 14px;
        }

        .static-title {
          margin-bottom: 24px;
          font-size: 22px;
        }

        .static-content {
          font-size: 15px;
        }

        .static-content h2,
        .static-content h3 {
          font-size: 18px;
        }

        .static-content ul {
          gap: 18px;
          padding-left: 20px;
        }

        .not-found-page {
          min-height: auto;
          padding-bottom: 80px;
        }

        .not-found-art {
          margin-bottom: -12px;
        }

        .not-found-copy {
          width: min(360px, 100%);
        }

        .not-found-copy h1 {
          font-size: 88px;
          margin-bottom: 20px;
        }

        .not-found-copy p,
        .not-found-copy a {
          font-size: 24px;
        }
      }

      @media (max-width: 480px) {
        .static-page {
          padding-bottom: 56px;
        }

        .static-content {
          font-size: 14px;
        }

        .static-content h2,
        .static-content h3 {
          margin-bottom: 18px;
          font-size: 16px;
        }

        .static-content ul {
          gap: 16px;
          margin-bottom: 24px;
        }

        .not-found-copy {
          width: min(300px, 100%);
        }

        .not-found-copy h1 {
          font-size: 72px;
        }

        .not-found-copy p,
        .not-found-copy a {
          font-size: 20px;
        }
      }
/* Articles */
.articles-page,
.article-detail-page {
  padding: 12px 0 90px;
}

.articles-container,
.article-detail-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.articles-layout {
  display: grid;
  grid-template-columns: 344px minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.articles-sidebar,
.articles-content,
.articles-grid,
.article-card,
.article-card a,
.article-card-body,
.article-detail-content {
  min-width: 0;
}

.articles-sidebar-title,
.articles-content-title {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.articles-sidebar-title {
  margin-bottom: 31px;
}

.article-categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-category-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 24px;
  min-height: 26px;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.article-category-link.is-active,
.article-category-link:hover,
.article-category-link:focus-visible {
  color: #919191;
}

.article-category-link span span {
  color: #919191;
}

.article-category-arrow {
  justify-self: end;
  width: 9px;
  height: 16px;
}

.articles-content-title {
  margin: 1px 0 33px;
  text-align: center;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 414px));
  gap: 30px 40px;
  justify-content: start;
}

.article-card {
  width: 100%;
  min-height: 374px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: var(--white);
}




.article-card a {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.article-media {
  width: 100%;
  height: 204px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.08)),
    #ececec;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
      object-position: center;
    transition: transform 0.25s ease;
}

.article-card:hover img{
    transform: scale(1.025);
}

.article-card-body {
  width: 100%;
  flex: 1 1 auto;
  min-height: 170px;
  padding: 11px 20px 16px;
  display: flex;
  flex-direction: column;
}

.article-card-category {
  margin: 0 0 5px;
  color: #919191;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.article-card-title {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.article-card-text {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
  overflow-wrap: break-word;
}

.article-card-date {
  margin-top: auto;
  padding-top: 14px;
  color: #919191;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.articles-empty {
  margin: 0;
  color: #919191;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.articles-content .catalog-more-wrap {
  margin-top: 42px;
}

.article-detail-container {
  max-width: 622px;
}

.article-detail-content {
  width: 100%;
  margin: 0 auto;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
}

.article-detail-content h1 {
  margin: 0 0 28px;
  color: var(--black);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.article-detail-content h2,
.article-detail-content h3,
.article-detail-content h4 {
  margin: 40px 0 16px;
  font-weight: 600;
  line-height: 1.2;
}

.article-detail-content h2 {
  font-size: 24px;
}

.article-detail-content h3 {
  font-size: 18px;
}

.article-detail-content h4 {
  font-size: 16px;
}

.article-detail-content p,
.article-detail-content ul,
.article-detail-content ol {
  margin: 0 0 16px;
}

.article-detail-content ul,
.article-detail-content ol {
  padding-left: 22px;
}

.article-detail-content li {
  margin: 0 0 4px;
}

.article-detail-content strong,
.article-detail-content b {
  font-weight: 600;
}

.article-detail-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}

.article-detail-content p + img,
.article-detail-content ul + img,
.article-detail-content ol + img,
.article-detail-content h2 + img,
.article-detail-content h3 + img {
  margin-top: 40px;
}

.article-detail-content figure {
  margin: 40px 0;
}

.article-detail-content figure img {
  margin-bottom: 0;
}

.article-detail-content figcaption {
  margin: 0;
  color: #919191;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.article-detail-content blockquote {
  margin: 32px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--black);
  background: #f7f7f7;
  font-weight: 500;
}

.article-detail-nav {
  width: min(860px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-detail-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.article-detail-nav a:hover,
.article-detail-nav a:focus-visible {
  border-color: var(--black);
}

.article-detail-next {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 1180px) {
  .articles-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 44px;
  }

  .articles-grid {
    grid-template-columns: minmax(0, 414px);
  }
}

@media (max-width: 900px) {
  .articles-page,
  .article-detail-page {
    padding: 10px 0 72px;
  }

  .articles-container,
  .article-detail-container {
    width: min(100% - 32px, 680px);
  }

  .articles-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .articles-sidebar-title,
  .articles-content-title {
    font-size: 23px;
  }

  .articles-sidebar-title {
    margin-bottom: 22px;
  }

  .article-categories {
    gap: 17px;
  }

  .article-category-link {
    font-size: 18px;
  }

  .articles-content-title {
    margin-bottom: 24px;
    text-align: left;
  }

  .articles-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-card {
    width: 100%;
  }

  .article-detail-content h1 {
    font-size: 30px;
  }


  .product-accordion-toggle svg path{
    stroke-width: 1.31px;
  }


.filter-accordion span, .filter-row span {
    margin-left: auto;
}


.filter-accordion {

    width: 100%;
}


}

.cart-item-actions .cart-item-price {
    display: none;
}




@media (max-width: 560px) {
  .articles-container,
  .article-detail-container {
    width: calc(100% - 28px);
  }

  .article-category-link {
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 14px;
    font-size: 16px;
  }

  .article-media {
    height: 190px;
  }

  .article-card {
    min-height: 0;
    max-width: 100%;
  }

  .article-card-body {
    min-height: 0;
    padding: 12px 16px 15px;
  }

  .article-card-text {
    font-size: 15px;
  }

  .article-detail-content h1 {
    font-size: 26px;
  }

  .article-detail-content {
    font-size: 16px;
  }

  .article-detail-nav {
    grid-template-columns: 1fr;
  }

  .product-bag {
    top: 55px;
  } 

.product-params dl {
    gap: 10px;
}
.product-params {
        padding: 8px 10px;

}
    .product-accordion-list {
        gap: 0px;
    }

.product-add-button + .product-accordion-list {
    padding-top: 15px;
}


    .product-accordion-list .product-accordion {
    border-bottom: 1px solid #f0f0f0;
}

.product-accordion-list .product-accordion:first-child {
    border-top: 1px solid #f0f0f0;
}

.account-contact-fields {
    
    margin-top: 21px;
}

.cart-item-info-bottom {
    display: flex;
    flex-flow: column nowrap;
    gap: 8px;
    flex: 1;
}

.cart-item-controls {
    width: 100%;
}

.cart-item-actions {
    width: 100%;
}

    .cart-item, .cart-item.is-unavailable {
        grid-template-columns: 140px minmax(0, 1fr);
    }

.cart-item-media {
    width: 140px;
    height: 190px;
}

.cart-item-actions .cart-item-price {
    margin-right: auto;
    display: flex;
}

.cart-item-info-top .cart-item-price {
    display: none;
}



}
