@font-face {
  font-family: "Inter Tight";
  src: url("/assets/fonts/inter-tight-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Tight";
  src: url("/assets/fonts/inter-tight-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("/assets/fonts/roboto-condensed-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("/assets/fonts/roboto-condensed-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-primary: "Inter Tight", sans-serif;
  --font-secondary: "Roboto Condensed", sans-serif;
  --ink: #11110f;
  --ink-soft: #4f4d48;
  --muted: #77736d;
  --paper: #f4f1eb;
  --paper-deep: #e9e4db;
  --white: #ffffff;
  --page-background: #ffffff;
  --line: rgba(17, 17, 15, 0.15);
  --line-strong: rgba(17, 17, 15, 0.4);
  --accent: #6d3b32;
  --sale-accent: #b8630e;
  --danger: #8a271e;
  --max: 1540px;
  --gutter: clamp(18px, 3vw, 48px);
  --header-h: 136px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: only light;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: var(--page-background);
  color-scheme: only light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  color: var(--ink);
  background-color: var(--page-background);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background-color: var(--page-background);
}

main {
  min-width: 0;
  min-height: 0;
  flex: 1 0 auto;
  background-color: var(--page-background);
}

#app,
#mainContent,
#storeView,
#productPage,
#profilePage,
#legalPage { background-color: var(--page-background); }

@media (hover: hover) and (pointer: fine) {
  body.scroll-locked { overflow: hidden; }
}

button,
input,
select,
textarea { font: inherit; }

button,
select { cursor: pointer; }

button,
input,
select,
textarea {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  color: var(--muted);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p { margin-top: 0; }

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.muted { color: var(--muted); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .site-header {
    isolation: isolate;
    background: rgba(255, 255, 255, 0.86);
    border-bottom-color: rgba(255, 255, 255, 0.64);
    box-shadow: 0 8px 30px rgba(17, 17, 15, 0.045);
    backdrop-filter: blur(12px) saturate(118%);
    -webkit-backdrop-filter: blur(12px) saturate(118%);
    transition: background-color 260ms ease, box-shadow 260ms ease;
  }
  .site-header::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 34px 0 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.02) 52%, transparent);
    opacity: 0.66;
  }
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 38px rgba(17, 17, 15, 0.075);
  }
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .site-header,
    .site-header.is-scrolled { background: rgba(255, 255, 255, 0.98); }
  }
}

.service-bar {
  min-height: 34px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-bar__inner {
  width: min(100%, var(--max));
  min-height: 34px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.service-bar ul {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-bar a { justify-self: end; }

.topline {
  width: min(100%, var(--max));
  height: 66px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.logo { display: block; line-height: 0; }
.logo img { display: block; width: clamp(190px, 18vw, 280px); height: auto; }

.search-trigger {
  width: min(300px, 100%);
  padding: 0 0 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--font-secondary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-trigger__hint {
  color: var(--muted);
  font-family: var(--font-primary);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-link {
  font-family: var(--font-secondary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-btn,
.icon-btn {
  border: 0;
  background: transparent;
}

.utility-btn {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 8px;
  display: grid;
  place-items: center;
}

.utility-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-btn .utility-icon {
  width: 15px;
  height: 19px;
  display: block;
}

.cart-link > span {
  position: absolute;
  right: -1px;
  top: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 10px;
}

.main-nav {
  width: min(100%, var(--max));
  height: 36px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.mobile-only { display: none; }
.figma-desktop-only { display: none; }

.page-scrim {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(12, 12, 11, 0.42);
  overscroll-behavior: contain;
  touch-action: none;
}

.mobile-menu,
.drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 100%);
  background: var(--white);
  box-shadow: -24px 0 80px rgba(17, 17, 15, 0.16);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(104%);
  transition: transform 420ms var(--ease), visibility 0s linear 420ms;
}

.mobile-menu.open,
.drawer.open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.mobile-menu {
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-menu.open { overflow-y: auto; overscroll-behavior-y: contain; }

.mobile-menu__head,
.drawer__head,
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.mobile-menu__head img { width: 170px; height: auto; }
.mobile-menu__search {
  min-height: 48px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
}
.mobile-menu__search > img { width: 17px; height: 17px; display: block; }
.mobile-menu__search input { width: 100%; min-width: 0; height: 48px; padding: 0; border: 0; outline: 0; background: transparent; font-size: 16px; }
.mobile-menu__search:focus-within { box-shadow: 0 1px var(--ink); }
.close-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.close-icon img { width: 19px; height: 19px; display: block; }

.mobile-menu__nav {
  margin: 30px 0 40px;
  display: grid;
}

.mobile-menu__nav > a,
.mobile-menu__accordion {
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

.mobile-menu__subnav {
  max-height: 0;
  padding: 0 0 0 16px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: max-height 420ms var(--ease), padding 320ms var(--ease), opacity 220ms ease;
}
.mobile-menu__subnav.open { max-height: 680px; padding: 16px 0 20px 16px; opacity: 1; }

.mobile-menu__subnav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 15px;
}

.mobile-menu__service {
  margin-top: auto;
  display: grid;
  gap: 4px;
  font-family: var(--font-secondary);
  font-size: 13px;
  text-transform: uppercase;
}
.mobile-menu__service span { color: var(--muted); }

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 1600 / 855;
  overflow: hidden;
  background-image: url("/assets/hero-zumita.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, rgba(16, 12, 10, 0.025) 1px 3px);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  animation: hero-in 850ms var(--ease) both;
}

.hero__copy p {
  margin-bottom: 18px;
  font-family: var(--font-secondary);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(78px, 11vw, 176px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.74;
}

.hero__copy > span {
  display: block;
  margin: 26px 0 32px;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.collection-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 8 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.collection-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 11, 9, 0.05), rgba(14, 11, 9, 0.28));
  transition: background 350ms ease;
}

.collection-card__content {
  width: min(76%, 500px);
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.collection-card__content strong {
  font-family: var(--font-secondary);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.collection-card__cta {
  width: min(240px, 90%);
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(15, 13, 12, 0.26);
  clip-path: polygon(8% 0, 92% 0, 100% 28%, 96% 82%, 84% 100%, 16% 100%, 4% 82%, 0 28%);
  font-family: var(--font-secondary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card:hover > img,
.collection-card:focus-visible > img { transform: scale(1.035); filter: brightness(1.06); }
.collection-card:hover::before,
.collection-card:focus-visible::before { background: rgba(255, 255, 255, 0.12); }

.primary-link,
.primary-btn,
.secondary-btn {
  min-height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-link { border-color: var(--white); background: var(--white); color: var(--ink); }
.primary-btn { background: var(--ink); color: var(--white); }
.secondary-btn { background: transparent; color: var(--ink); }
.primary-link,
.primary-btn { transition: background 180ms ease, color 180ms ease; }
.primary-link:hover { background: transparent; color: var(--white); }
.primary-btn:hover { background: var(--white); color: var(--ink); }
.primary-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.catalog-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(90px, 10vw, 150px);
}

.catalog-head {
  padding: 0;
  display: block;
  border: 0;
}

.catalog-heading__line {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.catalog-heading__line h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.catalog-heading__line > span {
  color: #aaa8a1;
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
}

.catalog-controls {
  width: 100%;
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.catalog-control,
.sort-control select {
  min-height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.catalog-control { display: inline-flex; align-items: center; justify-content: flex-start; gap: 20px; }
.filter-glyph { width: 36px; height: 17px; display: inline-flex; flex-direction: column; justify-content: space-between; flex: 0 0 auto; }
.filter-glyph i { width: 36px; height: 2px; display: block; background: currentColor; }
.filter-glyph i:last-child { width: 20px; }
.sort-control { position: relative; min-height: 52px; padding-right: 46px; display: inline-flex; align-items: center; font-family: var(--font-primary); font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; line-height: 1; }
.sort-control select { position: absolute; z-index: 2; inset: 0; width: 100%; min-width: 0; height: 100%; padding: 0; opacity: 0; cursor: pointer; appearance: none; -webkit-appearance: none; }
.sort-current { display: block; white-space: nowrap; }
.sort-control::after { display: none; }
.sort-chevron {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

.control-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}
.control-count[hidden] { display: none !important; }
#activeFilterCount { display: none !important; }

.active-filters {
  min-height: 36px;
  padding: 14px 0 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filter {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
}
.active-filter { display: inline-flex; align-items: center; gap: 7px; }
.active-filter img { width: 9px; height: 9px; display: block; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 82px) 2px;
}

.catalog-empty { margin: 70px 0; color: var(--muted); font-size: 18px; }

.product-card { min-width: 0; }

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.product-card__media > a { display: block; }
.product-card__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.025); }

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 25px;
  height: 25px;
  padding: 0;
  display: block;
  pointer-events: none;
}
.badge > img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 !important;
  display: block;
  object-fit: contain !important;
  transform: none !important;
}

.sizes-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.97) 42%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 300ms var(--ease);
}
.product-card:hover .sizes-hover,
.product-card:focus-within .sizes-hover { opacity: 1; transform: translateY(0); }

.sizes-hover button {
  min-width: 38px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--font-secondary);
  font-size: 12px;
}
.sizes-hover button:hover { background: var(--ink); color: var(--white); }
.sizes-hover button:disabled { border-color: var(--line); color: var(--muted); text-decoration: line-through; cursor: not-allowed; }

.product-card__info { padding-top: 13px; display: grid; grid-template-columns: 1fr; gap: 4px; }
.product-card__name { font-size: 16px; font-weight: 500; line-height: 1.2; }
.product-card__name:hover { text-decoration: underline; text-underline-offset: 3px; }
.product-card__meta { color: var(--muted); font-family: var(--font-secondary); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.product-card__price { grid-column: 1; grid-row: auto; text-align: left; white-space: nowrap; font-family: var(--font-secondary); font-size: 15px; font-weight: 500; }
.product-card__price.is-sale > span:first-child,
.product-price.is-sale > span:first-child { color: var(--sale-accent); }
.old-price { margin-left: 7px; color: var(--muted); font-weight: 400; text-decoration: line-through; }
.product-card__colors { grid-column: 1 / -1; display: flex; gap: 5px; }
.product-card__colors span { width: 9px; height: 9px; border: 1px solid rgba(17, 17, 15, 0.25); border-radius: 50%; }
.mobile-card-colors {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.mobile-card-colors__current {
  width: 20px;
  height: 20px;
  display: block;
  background: var(--swatch-color, #111111);
  -webkit-mask: url('/assets/figma-desktop/swatch-selected-orange.svg') center / contain no-repeat;
  mask: url('/assets/figma-desktop/swatch-selected-orange.svg') center / contain no-repeat;
}
.mobile-card-colors__additional {
  width: 9px;
  height: 9px;
  display: block;
  border: 1px solid rgba(14, 14, 14, 0.2);
  border-radius: 50%;
}

.loyalty,
.shop-info,
.profile-page,
.product-page,
.legal-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.loyalty,
.shop-info {
  padding-top: clamp(62px, 7vw, 100px);
  padding-bottom: clamp(62px, 7vw, 100px);
  border-top: 1px solid var(--line);
}

.loyalty { display: grid; grid-template-columns: minmax(300px, 0.7fr) 1.6fr; gap: clamp(40px, 6vw, 96px); }
.loyalty__lead { max-width: 440px; margin: 22px 0 0; color: var(--muted); line-height: 1.55; }
.loyalty-levels { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.loyalty-levels article { min-width: 0; min-height: 210px; padding: 18px 14px; display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.loyalty-levels article:last-child { border-right: 1px solid var(--line); }
.loyalty-levels article > span { color: var(--muted); font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; }
.loyalty-levels strong { margin-top: auto; font-family: var(--font-secondary); font-size: clamp(20px, 2vw, 32px); font-weight: 500; white-space: nowrap; }
.loyalty-levels p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }

.shop-info { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(40px, 7vw, 110px); }
.shop-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.shop-info__grid > div { padding-top: 14px; border-top: 1px solid var(--ink); }
.shop-info__grid strong { font-family: var(--font-secondary); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.shop-info__grid p { max-width: 430px; margin: 18px 0 0; color: var(--muted); line-height: 1.55; }

.product-page { padding-top: clamp(34px, 5vw, 72px); padding-bottom: 120px; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr); gap: clamp(34px, 6vw, 100px); align-items: start; }
.product-gallery { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; align-items: start; }
.product-gallery__main { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper); touch-action: pan-y; user-select: none; cursor: grab; }
.product-gallery__back {
  position: absolute;
  z-index: 4;
  top: 8px;
  left: max(6px, env(safe-area-inset-left));
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  border: 0;
  background: transparent;
}
.product-gallery__back::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(14, 14, 14, 0.09);
  border-radius: 50%;
  background: rgba(255, 251, 248, 0.92);
}
.product-gallery__back img { position: relative; z-index: 1; width: 10px; height: 10px; transform: rotate(90deg); }
.product-gallery__back:active::before { transform: scale(0.96); }
.product-gallery__main:active { cursor: grabbing; }
.product-gallery__main.is-zoomed { touch-action: none; cursor: grab; }
.product-gallery__track { width: 100%; height: 100%; display: flex; transition: transform 420ms var(--ease); will-change: transform; }
.product-gallery__track.is-dragging { transition: none; }
.product-gallery__slide { min-width: 0; height: 100%; flex: 0 0 100%; }
.product-gallery__slide img { width: 100%; height: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; pointer-events: none; transform-origin: center; transition: transform 180ms ease-out; will-change: transform; }
.product-gallery__main.is-gesture-active .product-gallery__slide img { transition: none; }
.product-gallery__thumbs { order: -1; display: grid; gap: 9px; }
.product-gallery__thumbs button { padding: 0; border: 1px solid transparent; background: var(--paper); }
.product-gallery__thumbs button.active { border-color: var(--ink); }
.product-gallery__thumbs img { width: 100%; aspect-ratio: 1; display: block; object-fit: cover; }
.gallery-indicators { margin-top: 13px; display: flex; justify-content: center; gap: 5px; }
.gallery-indicators button { width: clamp(28px, 5vw, 54px); height: 14px; padding: 6px 0; border: 0; background: transparent; }
.gallery-indicators button::before { content: ""; display: block; height: 2px; background: var(--line-strong); transition: background 180ms ease; }
.gallery-indicators button.active::before { background: var(--ink); }

.product-detail__summary { position: sticky; top: calc(var(--header-h) + 28px); display: grid; gap: 19px; }
.back-link { width: fit-content; color: var(--muted); font-family: var(--font-secondary); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.product-title-row h1 { margin: 0; font-size: clamp(40px, 4.5vw, 70px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.95; }
.share-btn { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; }
.share-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.share-btn .product-share-figma { width: 19px; height: 25px; display: block; }
.product-price { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-secondary); font-size: 24px; font-weight: 500; }
.product-price s { color: var(--muted); font-size: 15px; font-weight: 400; }
.product-article { margin: -10px 0 0; color: var(--muted); font-family: var(--font-secondary); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.stock-line { margin: 0; color: var(--muted); font-size: 13px; }
.product-block { padding-top: 17px; border-top: 1px solid var(--line); }
.product-block h3 { margin: 0 0 14px; font-family: var(--font-secondary); font-size: 12px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; }
.product-block__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.text-link { padding: 0; border: 0; background: transparent; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.product-size-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; }
.product-size-grid button { min-height: 48px; border: 1px solid var(--line); background: var(--white); font-family: var(--font-secondary); font-size: 13px; }
.product-size-grid button.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.product-size-grid button:disabled { color: var(--muted); background: var(--paper); text-decoration: line-through; cursor: not-allowed; }
.product-add-btn { width: 100%; }
.product-accordion { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-accordion__toggle { width: 100%; min-height: 54px; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; font-family: var(--font-secondary); font-size: 12px; font-weight: 500; letter-spacing: 0.09em; text-align: left; text-transform: uppercase; }
.product-accordion__toggle > span:last-child { font-family: var(--font-primary); font-size: 20px; font-weight: 400; }
.product-accordion__panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 360ms var(--ease), opacity 220ms ease; }
.product-accordion__inner { min-height: 0; overflow: hidden; }
.product-accordion.open .product-accordion__panel { grid-template-rows: 1fr; opacity: 1; }
.product-accordion.open .product-accordion__inner { padding-bottom: 12px; }
.product-specs { margin: 0; }
.product-specs > div { padding: 10px 0; display: grid; grid-template-columns: minmax(130px, 0.45fr) 1fr; gap: 16px; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--muted); }
.product-specs dd { margin: 0; }
.related-products { margin-top: 96px; padding-top: 50px; border-top: 1px solid var(--line); }
.related-products .catalog-head { margin-bottom: 30px; }

.profile-page { min-height: 70svh; padding-top: clamp(48px, 7vw, 100px); padding-bottom: 110px; }
.profile-layout { display: grid; grid-template-columns: minmax(270px, 0.7fr) 1.4fr; gap: clamp(42px, 7vw, 110px); }
.profile-layout h2,
.profile-auth h2 { margin: 10px 0 30px; }
.profile-summary { margin-bottom: 28px; }
.profile-summary > div { padding: 12px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.profile-summary span { color: var(--muted); }
.profile-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.account-section + .account-section { margin-top: 50px; }
.account-section h3 { margin: 0 0 18px; font-size: 24px; font-weight: 500; }
.orders-list { display: grid; gap: 16px; }
.order-line { padding: 20px 0; display: grid; grid-template-columns: 1fr auto; gap: 20px; border-top: 1px solid var(--line); }
.order-line:last-child { border-bottom: 1px solid var(--line); }
.order-line p { margin: 6px 0 0; font-size: 13px; }
.order-line > span { font-family: var(--font-secondary); font-size: 12px; text-align: right; text-transform: uppercase; }
.order-card { padding: 20px; display: grid; grid-template-columns: 1fr; gap: 16px; border: 1px solid var(--line); }
.order-card:last-child { border-bottom: 1px solid var(--line); }
.order-card header,
.order-card footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.order-card header > div { display: grid; gap: 4px; }
.order-card header > div > span,
.order-card footer { color: var(--muted); font-size: 12px; }
.order-card header > div > strong { font-size: 18px; }
.order-status { padding: 5px 8px; border: 1px solid var(--line); font-family: var(--font-secondary); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.order-items { margin: 0; padding: 0; display: grid; list-style: none; }
.order-items li { padding: 9px 0; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.order-items li strong { flex: 0 0 auto; font-weight: 500; }
.order-delivery { color: var(--muted); font-size: 13px; line-height: 1.45; }
.order-totals { display: grid; gap: 6px; }
.order-totals > span { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }
.order-totals > span:last-child { padding-top: 8px; border-top: 1px solid var(--ink); color: var(--ink); }
.order-cdek { padding: 14px; display: grid; gap: 10px; border: 1px solid var(--line); background: var(--paper); }
.order-cdek__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.order-cdek__head > span { font-size: 12px; text-align: right; }
.order-cdek > p { margin: 0; color: var(--muted); }
.order-cdek > div:not(.order-cdek__head) { display: grid; grid-template-columns: minmax(110px, 0.45fr) 1fr; gap: 14px; font-size: 12px; }
.order-cdek > div:not(.order-cdek__head) span { color: var(--muted); }
.order-cdek > div:not(.order-cdek__head) strong { overflow-wrap: anywhere; }
.bonus-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bonus-strip article { min-width: 0; padding: 16px 12px; border-left: 1px solid var(--line); }
.bonus-strip article:last-child { border-right: 1px solid var(--line); }
.bonus-strip article.active { background: var(--paper); }
.bonus-strip span,
.bonus-strip p { color: var(--muted); font-size: 11px; }
.bonus-strip strong { display: block; margin: 18px 0 4px; font-family: var(--font-secondary); font-size: 19px; white-space: nowrap; }
.bonus-strip dl { display: none; }

.legal-page { min-height: 75svh; padding-top: clamp(48px, 7vw, 100px); padding-bottom: 120px; }
.legal-shell { max-width: 900px; margin: 0 auto; }
.legal-back { display: inline-flex; margin-bottom: 42px; }
.legal-shell h1 { max-width: 820px; margin: 0 0 48px; font-size: clamp(40px, 6vw, 74px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.96; }
.legal-shell h2 { margin: 44px 0 16px; font-size: clamp(24px, 3vw, 34px); line-height: 1.05; letter-spacing: -0.025em; }
.legal-shell p { margin: 0 0 15px; color: #292825; line-height: 1.62; }
.legal-shell ul { margin: -3px 0 20px; padding-left: 22px; }
.legal-shell li { margin: 8px 0; line-height: 1.55; }
.legal-shell hr { margin: 38px 0; border: 0; border-top: 1px solid var(--line); }
.legal-source { margin-top: 52px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }

.footer { background: var(--ink); color: var(--white); }
.subscribe { width: min(100%, var(--max)); margin: 0 auto; padding: 46px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.subscribe .eyebrow { color: rgba(255, 255, 255, 0.58); }
.subscribe h3 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -0.035em; }
.subscribe button { min-height: 48px; padding: 0 22px; border: 1px solid var(--white); background: var(--white); color: var(--ink); font-family: var(--font-secondary); font-size: 12px; text-transform: uppercase; }
.footer__inner { width: min(100%, var(--max)); margin: 0 auto; padding: 54px var(--gutter) 60px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(28px, 5vw, 84px); }
.footer__brand img { width: min(240px, 100%); height: auto; filter: invert(1); }
.footer__brand p { margin: 26px 0 0; color: rgba(255, 255, 255, 0.62); line-height: 1.55; }
.footer nav,
.footer__contacts { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer strong { margin-bottom: 8px; font-family: var(--font-secondary); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer nav a,
.footer__contacts a { color: rgba(255, 255, 255, 0.7); }
.footer nav a:hover,
.footer__contacts a:hover { color: var(--white); }
.footer__bottom { width: min(100%, var(--max)); margin: 0 auto; padding: 18px var(--gutter) max(18px, env(safe-area-inset-bottom)); display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.5); font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; }

.drawer { padding: max(28px, env(safe-area-inset-top)) max(28px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(28px, env(safe-area-inset-left)); display: flex; flex-direction: column; }
.drawer h3,
.filter-dialog h3,
.modal h3 { margin: 7px 0 0; font-size: 36px; font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.cart-items { min-height: 0; margin: 28px 0; display: grid; align-content: start; gap: 18px; overflow-y: auto; }
.cart-item { padding-bottom: 18px; display: grid; grid-template-columns: 88px 1fr auto; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 88px; height: 116px; object-fit: cover; background: var(--paper); }
.cart-item__info { min-width: 0; }
.cart-item__info strong { display: block; font-size: 15px; line-height: 1.25; }
.cart-item__meta { margin: 7px 0 12px; color: var(--muted); font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; }
.cart-item__qty { display: inline-grid; grid-template-columns: 34px 36px 34px; align-items: center; border: 1px solid var(--line); }
.cart-item__qty button { height: 32px; border: 0; background: transparent; font-size: 18px; }
.cart-item__qty span { text-align: center; font-family: var(--font-secondary); font-size: 12px; }
.cart-item__remove { width: 30px; height: 30px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; color: var(--muted); }
.cart-item__remove img { width: 11px; height: 11px; display: block; opacity: 0.62; }
.cart-item__price { margin-top: 10px; font-family: var(--font-secondary); font-weight: 500; }
.cart-footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--ink); }
.cart-total { padding-top: 2px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.cart-total > span {
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.cart-total > strong {
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.cart-footer p { margin: 12px 0 18px; font-size: 12px; }
.cart-footer .primary-btn { width: 100%; }

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(12, 12, 11, 0.45); }
.modal {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 32px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 100px rgba(17, 17, 15, 0.2);
  overflow-y: auto;
}
.modal-head { margin-bottom: 26px; }
.profile-modal { width: min(680px, calc(100vw - 32px)); }
.search-modal { width: min(700px, calc(100vw - 32px)); }
.search-modal input { font-size: 22px; }

.filter-dialog {
  width: min(380px, calc(100vw - 32px));
  max-width: none;
  height: min(858px, calc(100svh - 24px));
  height: min(858px, calc(100dvh - 24px));
  max-height: calc(100svh - 24px);
  max-height: calc(100dvh - 24px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.filter-dialog[open] { animation: sheet-in 360ms var(--ease) both; }
.filter-dialog form { height: 100%; padding: 18px 22px 20px; display: flex; flex-direction: column; }
.filter-dialog .drawer__head { flex: 0 0 auto; margin-bottom: 16px; }
.filter-content { min-height: 0; margin: 0 0 10px; overflow-y: auto; }
.filter-group { border-top: 1px solid var(--line); }
.filter-group:first-child { border-top-color: var(--ink); }
.filter-group summary { min-height: 48px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--font-primary); font-size: 16px; font-weight: 400; letter-spacing: 0; list-style: none; text-transform: none; }
.filter-group summary::-webkit-details-marker { display: none; }
.filter-group summary::after { content: "+"; font-size: 20px; font-weight: 400; }
.filter-group[open] summary::after { content: "−"; }
.filter-options { padding: 2px 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.filter-option { min-height: 36px; display: flex; align-items: center; gap: 9px; font-size: 14px; }
.filter-option input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.filter-option input:disabled + span { color: var(--muted); }
.filter-option--swatch i { width: 12px; height: 12px; border: 1px solid rgba(17, 17, 15, 0.25); border-radius: 50%; }
.filter-empty { margin: 0; padding: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.price-inputs { padding-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-inputs label { display: grid; gap: 6px; color: var(--muted); font-size: 12px; }
.price-inputs input { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 0; }
.size-guide-link { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
.filter-actions { padding-top: 8px; display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: 8px; border-top: 0; }
.filter-actions .primary-btn,
.filter-actions .secondary-btn { min-height: 40px; padding: 0; border: 0; background: transparent; }
.filter-actions .primary-btn { color: var(--sale-accent); }

.form { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field > span { color: var(--muted); font-family: var(--font-secondary); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.field input,
.field textarea,
.field select { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 0; background: var(--white); outline: none; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--ink); }
.field textarea { min-height: 92px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-switch { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.delivery-switch label { position: relative; min-height: 48px; display: grid; place-items: center; font-family: var(--font-secondary); font-size: 12px; text-transform: uppercase; }
.delivery-switch label + label { border-left: 1px solid var(--line); }
.delivery-switch input { position: absolute; opacity: 0; }
.delivery-switch label:has(input:checked) { background: var(--ink); color: var(--white); }
.delivery-fields { display: grid; gap: 15px; }
.delivery-switch--expanded { grid-template-columns: 1fr 1fr; }
.delivery-switch--expanded label:nth-of-type(n + 3) { border-top: 1px solid var(--line); }
.delivery-switch--expanded label:nth-of-type(odd) { border-left: 0; }
.cdek-fields { display: grid; gap: 15px; }
.cdek-city-control { position: relative; }
.cdek-suggestions {
  position: absolute;
  z-index: 4;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  max-height: 210px;
  padding: 4px;
  overflow-y: auto;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 17, 15, 0.12);
}
.cdek-suggestions button { width: 100%; min-height: 46px; padding: 9px 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; }
.cdek-suggestions button:last-child { border-bottom: 0; }
.cdek-suggestions button:hover,
.cdek-suggestions button:focus-visible { background: var(--paper); }
.cdek-suggestions button span { color: var(--muted); font-size: 12px; text-align: right; }
.cdek-suggestions > p { margin: 0; padding: 12px; }
.cdek-section-label { margin: 0 0 8px; color: var(--muted); font-family: var(--font-secondary); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.cdek-points { max-height: 260px; display: grid; overflow-y: auto; border: 1px solid var(--line); }
.cdek-points > p { margin: 0; padding: 14px; }
.cdek-point { min-height: 76px; padding: 12px; display: grid; gap: 5px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; }
.cdek-point:last-child { border-bottom: 0; }
.cdek-point > span:first-child { display: flex; justify-content: space-between; gap: 12px; }
.cdek-point small { color: var(--muted); font-size: 11px; font-weight: 400; }
.cdek-point.active { background: var(--ink); color: var(--white); }
.cdek-point.active small { color: rgba(255, 255, 255, 0.7); }
.cdek-courier-fields { display: grid; gap: 15px; }
.cdek-quote { min-height: 58px; padding: 12px 14px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 12px; border: 1px solid var(--line); background: var(--paper); }
.cdek-quote > p { grid-column: 1 / -1; margin: 0; }
.cdek-quote > div { display: grid; gap: 3px; }
.cdek-quote > div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.cdek-quote span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.checkout-summary { padding-top: 4px; display: grid; gap: 7px; }
.checkout-summary > span { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.checkout-summary > span:last-child { padding-top: 9px; border-top: 1px solid var(--ink); color: var(--ink); font-size: 16px; }
.checkout-summary strong { color: inherit; }
.bonus-checkout { padding: 14px; border: 1px solid var(--line); background: var(--paper); }
.bonus-checkout p { margin: 8px 0 0; font-size: 12px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 12px; line-height: 1.4; }
.consent input { width: 17px; height: 17px; margin: 0; accent-color: var(--ink); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.form-error { margin: 0; padding: 10px 12px; color: var(--danger); background: rgba(138, 39, 30, 0.08); font-size: 13px; }
.tabs { margin-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.tabs button { min-height: 44px; border: 0; background: transparent; color: var(--muted); font-family: var(--font-secondary); font-size: 12px; text-transform: uppercase; }
.tabs button.active { color: var(--ink); box-shadow: inset 0 -2px var(--ink); }
.size-guide-modal table { width: 100%; margin-top: 24px; border-collapse: collapse; }
.size-guide-modal th,
.size-guide-modal td { padding: 13px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.size-guide-modal th { font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; }

.cookie-notice {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(430px, calc(100vw - 36px));
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 60px rgba(17, 17, 15, 0.12);
}
.cookie-notice p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.cookie-notice a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice button { min-height: 36px; padding: 0 14px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-family: var(--font-secondary); font-size: 11px; text-transform: uppercase; }

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  max-width: calc(100vw - 28px);
  padding: 12px 17px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 250ms var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes hero-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes sheet-in { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: none; } }

@media (min-width: 681px) {
  .filter-dialog .drawer__head { min-height: 36px; justify-content: flex-end; }
  .filter-dialog .drawer__head > div { display: none; }
}

@media (max-width: 1279px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .service-bar__inner { grid-template-columns: 1fr 1fr; }
  .service-bar ul { display: none; }
  .loyalty { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .bonus-strip { grid-template-columns: repeat(5, minmax(120px, 1fr)); overflow-x: auto; }
}

@media (max-width: 1023px) {
  body.desktop-route-home .catalog-section { display: none; }
  body.desktop-route-catalog .mobile-storefront { display: none; }

  .mobile-storefront {
    width: 100%;
    overflow: hidden;
    background: var(--white);
  }

  .mobile-home-video {
    width: 100%;
    max-height: calc(100svh - 72px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0e0e0e;
  }

  .mobile-home-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .mobile-home-categories,
  .mobile-home-category { width: 100%; }

  .mobile-home-new-arrivals {
    width: 100%;
    padding: 26px 0 30px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .mobile-home-section-heading {
    padding: 0 16px 15px;
  }

  .mobile-home-section-heading h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-home-category {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .mobile-home-category__feature {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-home-category__feature > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 650ms var(--ease);
  }

  .mobile-home-category__feature:active > img { transform: scale(1.015); }

  .mobile-home-category__title {
    padding: 18px 16px 14px;
    display: grid;
    gap: 7px;
    color: var(--ink);
  }

  .mobile-home-category__title strong {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-transform: uppercase;
  }

  .mobile-home-category__title span {
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-home-category__title span {
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    white-space: nowrap;
  }

  .mobile-home-category__products { padding: 0 0 30px; }

  .mobile-home-carousel {
    width: 100%;
    padding: 0 16px 4px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-home-carousel::-webkit-scrollbar { display: none; }

  .mobile-home-carousel .product-card {
    flex: 0 0 175px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .mobile-home-carousel .product-card__media,
  .mobile-home-carousel .product-card__media > a,
  .mobile-home-carousel .product-card__media img {
    width: 175px;
    height: 225px;
  }

  .mobile-home-carousel .product-card__media img {
    aspect-ratio: 7 / 9;
    object-fit: cover;
    object-position: center;
  }

  .mobile-home-carousel .product-card__meta { display: none; }
  .mobile-home-carousel .product-card__info { padding-top: 4px; gap: 0; }
  .mobile-home-carousel .product-card__name {
    overflow: hidden;
    font-size: 12px;
    line-height: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .mobile-home-carousel .product-card__price { font-size: 12px; line-height: 13px; }
  .mobile-home-carousel .product-card__price .old-price,
  .mobile-home-carousel .product-card__colors { display: none; }
}

@media (max-width: 920px) {
  :root { --header-h: 72px; --gutter: clamp(14px, 4vw, 28px); --mobile-header-offset: 78px; }
  html { scroll-padding-top: 88px; }
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex; }
  .product-gallery__back.mobile-only { display: grid; }
  .service-bar { display: none; }
  .site-header {
    position: fixed;
    top: max(8px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    left: max(10px, env(safe-area-inset-left));
    width: auto;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 18px;
    background: rgba(255, 251, 248, 0.94);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body:not(.desktop-route-home) main { padding-top: var(--mobile-header-offset); }
  body.desktop-route-home main { padding-top: 0; }
  .topline { height: 62px; padding: 0 12px; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 8px; }
  .logo { justify-self: center; min-width: 0; }
  .logo img { width: min(176px, 46vw); }
  .header-actions { gap: 0; }
  .icon-btn { width: 40px; height: 40px; padding: 8px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
  .icon-btn span { width: 23px; height: 1.5px; display: block; background: currentColor; }
  .utility-btn { width: 37px; height: 40px; padding: 8px; }
  .hero { min-height: 0; height: clamp(300px, 80vw, 420px); aspect-ratio: auto; margin-top: calc(-72px - max(8px, env(safe-area-inset-top))); background-position: 58% center; }
  .hero__copy h1 { font-size: clamp(62px, 22vw, 110px); }
  .hero__copy > span { margin: 19px 0 25px; font-size: 24px; }
  .catalog-head { align-items: stretch; }
  .catalog-controls { align-self: end; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 10px; }
  .product-card__media img { height: auto; }
  .product-gallery__slide img { height: 100%; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__summary { position: static; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery__thumbs { display: none; }
  .shop-info { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__contacts { display: none; }
}

@media (max-width: 680px) {
  h2 { font-size: clamp(36px, 12vw, 54px); }
  .desktop-editorial { display: none !important; }
  .collection-grid { display: grid; grid-template-columns: 1fr; }
  .collection-card { aspect-ratio: 4 / 5; display: block; overflow: hidden; }
  .collection-card > img {
    position: static;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: none !important;
    filter: none !important;
  }
  .collection-card::before { display: none; }
  .collection-card__content { width: 84%; gap: 26px; }
  .collection-card__content strong { font-size: clamp(22px, 7vw, 28px); }
  .collection-card__cta { width: min(220px, 82%); min-height: 52px; }
  .catalog-section { padding-top: 42px; padding-bottom: 82px; }
  .catalog-head { padding: 0; display: block; }
  .catalog-heading__line { align-items: baseline; gap: 8px; }
  .catalog-heading__line h2,
  .catalog-heading__line > span { line-height: 1; }
  .catalog-heading__line h2 { font-size: 20px; }
  .catalog-heading__line > span { font-size: 13px; }
  .catalog-controls { width: 100%; margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
  .catalog-control,
  .sort-control select { width: auto; min-width: 0; min-height: 44px; font-size: 13px; font-weight: 400; }
  .catalog-control { gap: 8px; }
  .filter-glyph { width: 20px; height: 10px; }
  .filter-glyph i { width: 20px; height: 1px; }
  .filter-glyph i:last-child { width: 11px; }
  .sort-control { min-height: 44px; padding-right: 22px; font-size: 13px; font-weight: 400; }
  .sort-control select { padding: 0; }
  .sort-chevron { right: 3px; width: 10px; height: 10px; border-width: 1px; }
  .active-filters:empty { display: none; }
  .active-filters { min-height: 0; padding: 7px 0 12px; gap: 6px; }
  .active-filter { min-height: 26px; padding: 4px 8px; font-size: 11px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 3px; justify-content: stretch; }
  .products-grid .product-card__media,
  .products-grid .product-card__media > a,
  .products-grid .product-card__media img { width: 100%; height: auto; }
  .products-grid .product-card__media img { aspect-ratio: 179 / 239; object-fit: cover; object-position: center; }
  .product-card__media img { aspect-ratio: 0.74; }
  .sizes-hover { display: none; }
  .badge { left: 8px; top: 8px; width: 20px; height: 20px; padding: 0; font-size: 0; }
  .product-card__info { padding-top: 10px; grid-template-columns: 1fr; gap: 4px; }
  .product-card__name { font-size: 14px; }
  .product-card__price { grid-column: 1; grid-row: auto; text-align: left; font-size: 13px; }
  .product-card__meta { font-size: 10px; }
  .product-card__colors { display: none; }
  .shop-info { padding-top: 54px; padding-bottom: 64px; }
  .shop-info h2 { font-size: 22px; line-height: 1.08; }
  .shop-info__grid { grid-template-columns: 1fr; }
  .product-page { padding-top: 0; padding-bottom: 72px; }
  .product-detail { gap: 0; }
  .product-gallery { width: calc(100% + (var(--gutter) * 2)); margin-inline: calc(var(--gutter) * -1); }
  .product-gallery__main { aspect-ratio: 4 / 5; }
  .gallery-indicators { margin-top: 5px; gap: 3px; }
  .gallery-indicators button { width: 25px; height: 12px; padding: 5px 0; }
  .gallery-indicators button::before { height: 1px; }
  .product-detail__summary { padding-top: 10px; gap: 12px; }
  .product-detail__summary > .back-link,
  .product-detail__summary > .eyebrow,
  .product-detail__summary > .product-article,
  .product-detail__summary > .stock-line,
  .product-title-row .share-btn { display: none; }
  .product-title-row h1 { font-size: 22px; line-height: 1.08; letter-spacing: 0.02em; text-transform: uppercase; }
  .product-price { gap: 9px; font-size: 18px; line-height: 1.1; }
  .product-price s { font-size: 13px; }
  .product-block { padding-top: 12px; }
  .product-block h3 { margin-bottom: 10px; }
  .product-size-grid button { min-height: 44px; }
  .product-add-btn { min-height: 48px; }
  .product-accordion__toggle { min-height: 48px; }
  .product-size-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-specs > div { grid-template-columns: 1fr; gap: 4px; }
  .related-products { margin-top: 52px; padding-top: 28px; }
  .related-products h2 { font-size: 22px; line-height: 1.08; }
  .related-products .catalog-head { margin-bottom: 18px; }
  .profile-page { padding-top: 48px; padding-bottom: 80px; }
  .profile-summary > div { display: grid; gap: 4px; }
  .order-line { grid-template-columns: 1fr; }
  .order-line > span { text-align: left; }
  .order-card { padding: 15px; }
  .order-items li { display: grid; gap: 5px; }
  .order-items li strong { color: var(--muted); }
  .order-cdek__head { display: grid; gap: 5px; }
  .order-cdek__head > span { text-align: left; }
  .order-cdek > div:not(.order-cdek__head) { grid-template-columns: 1fr; gap: 3px; }
  .legal-page { padding-top: 48px; padding-bottom: 80px; }
  .legal-back { margin-bottom: 30px; }
  .legal-shell h1 { margin-bottom: 36px; font-size: clamp(36px, 11vw, 52px); }
  .legal-shell h2 { margin-top: 34px; }
  .footer__inner { padding-top: 44px; padding-bottom: 46px; grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 16px; }
  .footer__brand img { width: 190px; }
  .footer [data-open-profile] { display: none; }
  .footer__bottom { display: grid; }
  .modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 22px;
  }
  .checkout-modal { padding-inline: 16px; }
  .delivery-switch label { min-height: 46px; padding: 5px; font-size: 10px; text-align: center; }
  .cdek-points { max-height: 220px; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-dialog {
    width: calc(100vw - 30px);
    height: calc(100svh - 30px);
    height: calc(100dvh - 30px);
    max-height: calc(100svh - 30px);
    max-height: calc(100dvh - 30px);
    margin: auto;
    border-radius: 5px;
  }
  .filter-dialog[open] { animation-name: sheet-in; }
  .filter-dialog form { padding: 26px 15px max(14px, env(safe-area-inset-bottom)); }
  .filter-options { grid-template-columns: 1fr 1fr; }
  .filter-options--categories { grid-template-columns: 1fr 1fr; }
  .filter-option { min-height: 32px; font-size: 13px; }
  .filter-group summary { min-height: 44px; font-size: 14px; }
  .filter-actions .primary-btn,
  .filter-actions .secondary-btn { min-height: 44px; font-size: 12px; text-transform: uppercase; }
  .drawer { width: 100%; padding-left: max(18px, env(safe-area-inset-left)); padding-right: max(18px, env(safe-area-inset-right)); }
  .mobile-menu,
  .drawer { box-shadow: none; }
  .mobile-menu__nav > a,
  .mobile-menu__accordion { min-height: 52px; font-size: 18px; }
  .cart-item { grid-template-columns: 78px 1fr auto; }
  .cart-item > img { width: 78px; height: 104px; }
  .cart-total > span,
  .cart-total > strong { color: var(--ink); font-family: var(--font-primary); font-size: 18px; font-weight: 500; letter-spacing: 0.01em; }
  .cookie-notice { left: max(10px, env(safe-area-inset-left)); right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); width: auto; }
}

@keyframes bottom-sheet-in { from { opacity: 0; transform: translateY(70px); } to { opacity: 1; transform: none; } }

@media (max-width: 390px) {
  .logo img { width: 145px; }
  .utility-btn { width: 34px; padding-left: 6px; padding-right: 6px; }
  .hero { background-position: 61% center; }
  .catalog-controls { gap: 12px; }
  .catalog-control,
  .sort-control { font-size: 14px; }
  .products-grid { column-gap: 3px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 430px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    column-gap: 3px;
  }
  .products-grid .product-card__media,
  .products-grid .product-card__media > a,
  .products-grid .product-card__media img {
    width: 100%;
    height: auto;
  }
  .products-grid .product-card__media img {
    aspect-ratio: 179 / 239;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 375px) {
  .mobile-home-carousel .product-card { flex-basis: 134px; }
  .mobile-home-carousel .product-card__media,
  .mobile-home-carousel .product-card__media > a,
  .mobile-home-carousel .product-card__media img {
    width: 134px;
    height: 200px;
  }
  .mobile-home-carousel .product-card__media img { aspect-ratio: 67 / 100; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-grid .product-card__media,
  .products-grid .product-card__media > a,
  .products-grid .product-card__media img {
    width: 100%;
    height: auto;
  }
  .products-grid .product-card__media img { aspect-ratio: 179 / 239; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Desktop source: ZUMITA Figma nodes 461:2410, 461:2412, 1105:23470 and 461:2409. */
@media (min-width: 1024px) {
  :root {
    --header-h: 122px;
    --page-background: #fffbf8;
    --figma-black: #0e0e0e;
    --figma-light: #fffbf8;
    --figma-photo: #f3f1ee;
    --figma-gray: #a3a199;
    --figma-news: #e0e2df;
    --figma-orange: #b8630e;
    --figma-cocoa: #0e0e0e;
  }

  html { scroll-padding-top: 122px; scrollbar-width: none; }
  html::-webkit-scrollbar { width: 0; height: 0; }
  body { color: var(--figma-black); background: var(--figma-light); }
  .figma-desktop-only { display: revert; }
  .mobile-storefront,
  .mobile-footer { display: none !important; }

  .site-header {
    position: absolute;
    z-index: 80;
    top: 0;
    left: 0;
    width: 100%;
    height: 122px;
    isolation: auto;
    border: 0;
    background: rgba(255, 251, 248, 0.01);
    box-shadow: none;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: none;
  }
  .site-header::after,
  .site-header.is-scrolled::after { display: none; }
  .site-header.is-scrolled { background-color: rgba(255, 251, 248, 0.01); box-shadow: none; }
  body.desktop-route-home .site-header,
  body.desktop-route-catalog .site-header {
    background-color: var(--figma-black);
    background-image: url('/assets/figma-desktop/home-hero.jpeg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .service-bar,
  .topline,
  .main-nav { display: none !important; }

  .desktop-header {
    position: relative;
    width: 100%;
    height: 122px;
    color: var(--figma-light);
  }
  .desktop-header button,
  .desktop-header a { color: inherit; }
  .desktop-header__menu {
    position: absolute;
    left: 28px;
    top: 22px;
    width: 44px;
    height: 44px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    line-height: 0;
  }
  .desktop-header__menu span {
    width: 23px;
    height: 1.5px;
    display: block;
    background: currentColor;
    transition: opacity 180ms ease;
  }
  .desktop-header__menu:hover span { opacity: 0.62; }
  .desktop-header__logo {
    position: absolute;
    left: 50%;
    top: 35px;
    width: 153px;
    height: 20px;
    line-height: 0;
    transform: translateX(-50%);
  }
  .desktop-header__logo img { display: block; width: 153px; height: 20px; }
  .desktop-header__actions {
    position: absolute;
    top: 31px;
    right: 40px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .desktop-header__actions button,
  .desktop-header__actions a {
    min-width: 0;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.38px;
  }
  .desktop-header__actions img { display: block; flex: 0 0 auto; }
  .desktop-header__nav {
    position: absolute;
    left: 50%;
    top: 75px;
    display: flex;
    align-items: center;
    gap: 42px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateX(-50%);
  }
  .desktop-header__nav a { transition: color 180ms ease; }
  .desktop-header__nav a:hover,
  .desktop-header__nav a:focus-visible { color: #a3a199; }

  .desktop-menu {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 380px;
    height: min(900px, 100dvh);
    overflow: hidden;
    border-radius: 0 5px 5px 0;
    background: #fff;
    color: var(--figma-black);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(-104%);
    transition: transform 360ms var(--ease);
  }
  .desktop-menu.open { transform: translateX(0); }
  .desktop-menu__toggle {
    position: absolute;
    left: 40px;
    top: 33px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 0;
  }
  .desktop-menu__toggle img { display: block; width: 19px; height: 19px; }
  .desktop-menu__content {
    height: 100%;
    padding: 116px 40px 38px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
  .desktop-menu nav { display: grid; gap: 15px; }
  .desktop-menu nav a,
  .desktop-menu__accordion,
  .desktop-menu__location,
  .desktop-menu__contacts {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.48px;
  }
  .desktop-menu__catalog { gap: 0 !important; }
  .desktop-menu__catalog > a,
  .desktop-menu__accordion {
    width: 100%;
    min-height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid rgba(14, 14, 14, 0.16);
    background: transparent;
    color: inherit;
    font: inherit;
    text-transform: uppercase;
  }
  .desktop-menu__subnav {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 260ms var(--ease), opacity 180ms ease;
  }
  .desktop-menu__subnav::before { content: ''; min-height: 0; }
  .desktop-menu__subnav > a { display: none; }
  .desktop-menu__subnav.open {
    padding: 13px 0 19px;
    grid-template-rows: 1fr;
    gap: 11px;
    opacity: 1;
  }
  .desktop-menu__subnav.open::before { display: none; }
  .desktop-menu__subnav.open > a {
    display: block;
    padding-left: 14px;
    color: #575751;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.28px;
  }
  .desktop-menu__service-links { margin-top: 38px; }
  .desktop-menu__location { width: 300px; margin-top: 64px; }
  .desktop-menu__location p { margin: 0 0 14px; line-height: 1.1; }
  .desktop-menu__location a,
  .desktop-menu__location span {
    display: block;
    color: #878780;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.26px;
  }
  .desktop-menu__location a { width: max-content; margin-bottom: 16px; border-bottom: 1px solid currentColor; }
  .desktop-menu__contacts {
    margin-top: 63px;
    display: flex;
    gap: 14px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.28px;
    white-space: nowrap;
  }
  .desktop-menu__socials { width: 67px; height: 16px; margin-top: 37px; display: block; }

  .desktop-route-home .catalog-section,
  .desktop-route-home .loyalty,
  .desktop-route-home .shop-info { display: none !important; }
  .desktop-route-catalog .desktop-homepage,
  .desktop-route-catalog .loyalty,
  .desktop-route-catalog .shop-info { display: none !important; }

  .desktop-homepage { width: 100%; overflow: hidden; }
  .desktop-home-hero {
    width: 100%;
    height: min(53.4375vw, 855px);
    min-height: 620px;
    background: url('/assets/figma-desktop/home-hero.jpeg') center / cover no-repeat;
  }
  .desktop-home-section {
    position: relative;
    width: 100%;
    padding: 0 40px;
    overflow: hidden;
    background: var(--figma-light);
  }
  .desktop-product-section { height: 680px; }
  .desktop-category-section { height: 550px; }
  .desktop-home-section__head {
    position: absolute;
    top: 96px;
    left: 40px;
    right: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .desktop-home-section__head > div:first-child { display: flex; align-items: baseline; gap: 23px; }
  .desktop-home-section__head h2,
  .desktop-home-section__head h3 {
    margin: 0;
    color: var(--figma-black);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.52px;
    text-transform: uppercase;
  }
  .desktop-home-section__head a {
    color: #878780;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.26px;
    border-bottom: 1px solid currentColor;
  }
  .desktop-carousel-controls { position: relative; width: 90px; height: 40px; }
  .desktop-carousel-controls button {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: url('/assets/figma-desktop/carousel-next.svg') center / 40px 40px no-repeat;
  }
  .desktop-carousel-controls button:first-child { left: 0; transform: rotate(180deg); }
  .desktop-carousel-controls button:last-child { right: 0; }
  .desktop-product-row {
    position: absolute;
    left: 40px;
    top: 166px;
    width: calc(100% - 40px);
    height: 440px;
    display: flex;
    gap: 3px;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .desktop-product-row::-webkit-scrollbar,
  .desktop-category-row::-webkit-scrollbar { display: none; }
  .desktop-product-row > .product-card {
    width: clamp(236px, 18vw, 288px);
    flex: 0 0 clamp(236px, 18vw, 288px);
  }

  .desktop-category-row {
    position: absolute;
    left: 40px;
    top: 166px;
    width: calc(100% - 40px);
    height: 326px;
    display: flex;
    gap: 3px;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .desktop-category-card {
    width: calc((100vw - 85px) / 5);
    max-width: 302px;
    flex: 0 0 calc((100vw - 85px) / 5);
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .desktop-category-card > span { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--figma-photo); }
  .desktop-category-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms var(--ease); }
  .desktop-category-card--contain > span { background: #fff; }
  .desktop-category-card--contain img { object-fit: contain; }
  .desktop-category-card:hover img { transform: scale(1.025); }
  .desktop-category-card strong { font-size: 16px; font-weight: 400; line-height: 1.1; letter-spacing: 0.48px; text-transform: uppercase; }

  .desktop-collections { width: 100%; height: 900px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desktop-collections > a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    color: var(--figma-light);
    background-image: var(--collection-image);
    background-position: center;
    background-size: cover;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.52px;
    text-align: center;
    text-transform: uppercase;
  }
  .desktop-collections > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--collection-hover);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 300ms ease;
  }
  .desktop-collections > a:hover::before { opacity: 1; }
  .desktop-collections > a > * { position: relative; z-index: 1; }

  .figma-outline-button {
    position: relative;
    width: 249px;
    height: 51px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  }
  .figma-outline-button b {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: transparent;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .figma-outline-button--white { color: var(--figma-light); }
  .desktop-collections > a:hover .figma-outline-button--white,
  .desktop-collections > a:focus-visible .figma-outline-button--white {
    border-color: var(--figma-light);
    background: var(--figma-light);
    color: var(--figma-black);
  }
  .figma-outline-button--dark { width: 256px; color: var(--figma-black); }
  .figma-outline-button--dark:hover,
  .figma-outline-button--dark:focus-visible {
    border-color: var(--figma-black);
    background: var(--figma-black);
    color: var(--figma-light);
  }

  .desktop-route-catalog .catalog-section {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 128px 40px 120px;
    background: var(--figma-light);
  }
  .desktop-route-catalog .catalog-head {
    position: relative;
    height: auto;
    padding: 0;
    display: block;
    border: 0;
  }
  .desktop-route-catalog .catalog-heading { position: static; transform: none; }
  .desktop-route-catalog .catalog-heading__line { margin: 0; display: flex; align-items: baseline; gap: 9px; }
  .desktop-route-catalog .catalog-heading h2 {
    margin: 0;
    font-size: clamp(22px, 1.65vw, 25px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .desktop-route-catalog .catalog-heading__line > span { color: #aaa8a1; font-size: clamp(18px, 1.4vw, 21px); font-weight: 300; line-height: 1; }
  .desktop-route-catalog .catalog-controls { position: static; width: 100%; margin-top: 18px; display: flex; align-items: center; justify-content: space-between; }
  .desktop-route-catalog .catalog-control {
    position: static;
    min-width: 0;
    min-height: 44px;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
  }
  .desktop-route-catalog .catalog-control .filter-glyph { width: 24px; height: 11px; display: inline-flex; }
  .desktop-route-catalog .catalog-control .filter-glyph i { width: 24px; height: 1px; }
  .desktop-route-catalog .catalog-control .filter-glyph i:last-child { width: 13px; }
  .desktop-route-catalog .control-count { min-width: 0; height: auto; padding: 0; display: inline; border-radius: 0; background: transparent; color: inherit; font-size: inherit; }
  .desktop-route-catalog .sort-control {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 300;
  }
  .desktop-route-catalog .sort-control select {
    width: auto;
    min-width: 0;
    min-height: 44px;
    height: 44px;
    padding: 0 26px 0 0;
    border: 0;
    background: transparent;
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
  }
  .desktop-route-catalog .sort-control::after { display: none; }
  .desktop-route-catalog .sort-chevron { right: 3px; width: 10px; height: 10px; border-width: 1px; }
  .desktop-route-catalog .active-filters { position: static; min-height: 0; padding: 8px 0 0; }
  .desktop-route-catalog .active-filters:empty { display: none; }
  .desktop-route-catalog .active-filter[data-remove-filter="category"] { display: none; }
  .desktop-route-catalog .products-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px 3px;
  }
  .desktop-pagination { position: static; width: max-content; margin: 64px auto 0; display: flex; align-items: center; gap: 25px; font-family: var(--font-secondary); font-size: 15px; line-height: 1.2; letter-spacing: 0.3px; transform: none; }
  .desktop-pagination a,
  .desktop-pagination button,
  .desktop-pagination span { color: var(--figma-gray); }
  .desktop-pagination button { padding: 0; border: 0; background: transparent; font: inherit; }
  .desktop-pagination .active { color: var(--figma-black); }

  .product-card { height: auto; }
  .product-card__media { height: auto; aspect-ratio: 3 / 4; background: var(--figma-photo); }
  .product-card__media > a,
  .product-card__media img { width: 100%; height: 100%; }
  .product-card__media > a { height: 100%; }
  .product-card__media img { aspect-ratio: 3 / 4; object-fit: cover; }
  .product-card:hover .product-card__media img { transform: scale(1.015); }
  .product-card .badge,
  .product-card .sizes-hover { display: none; }
  .product-card__info { min-height: 48px; height: auto; padding-top: 10px; display: flex; align-items: flex-start; gap: 11px; }
  .product-card__name,
  .product-card__price {
    flex: 0 1 auto;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.36px;
  }
  .product-card__name { min-width: 0; max-width: calc(100% - 76px); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .product-card__price { color: var(--figma-gray); }
  .product-card__name:hover { text-decoration: none; }
  .product-card__meta,
  .product-card__colors { display: none; }
  .desktop-card-swatches { position: absolute; z-index: 2; left: 14px; top: 14px; display: flex; align-items: center; gap: 7px; }
  .desktop-card-swatches img { width: 21px !important; height: 21px !important; object-fit: contain !important; transform: none !important; }
  .desktop-card-swatches span { width: 11px; height: 11px; border: 1px solid rgba(14, 14, 14, 0.2); border-radius: 50%; }
  .desktop-card-actions { position: absolute; z-index: 2; top: 14px; right: 14px; display: flex; gap: 10px; opacity: 0; transition: opacity 180ms ease; }
  .product-card:hover .desktop-card-actions,
  .product-card:focus-within .desktop-card-actions { opacity: 1; }
  .desktop-card-actions button { width: 16px; height: 16px; padding: 0; border: 0; background: transparent; }
  .desktop-card-actions img { width: 16px !important; height: 16px !important; object-fit: contain !important; transform: none !important; }

  .desktop-footer { width: 100%; height: 1255px; color: var(--figma-light); }
  .desktop-footer__promo { position: relative; width: 100%; height: 900px; background: url('/assets/figma-desktop/footer-promo-default.jpeg') center / cover no-repeat; }
  .desktop-certificate {
    position: absolute;
    left: 50%;
    top: calc(50% + 43px);
    width: 505px;
    height: 370px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    color: var(--figma-black);
    transform: translate(-50%, -50%);
  }
  .desktop-certificate__pattern { position: absolute; left: 0; width: 505px; height: 20px; display: block; background: #d9d9d9; }
  .desktop-certificate__pattern--top { top: 10px; }
  .desktop-certificate__pattern--bottom { top: 340px; }
  .desktop-certificate h2 { position: absolute; top: 70px; left: 20px; width: 465px; margin: 0; font-size: 26px; font-weight: 400; line-height: 1.2; letter-spacing: 0.52px; text-align: center; text-transform: uppercase; }
  .desktop-certificate p { position: absolute; top: 157px; left: 20px; width: 465px; margin: 0; font-size: 16px; font-weight: 300; line-height: 1.25; letter-spacing: 0.32px; text-align: center; }
  .desktop-certificate .figma-outline-button { position: absolute; left: 50%; top: 249px; transform: translateX(-50%); }
  .desktop-footer__contacts { position: relative; width: 100%; height: 265px; background: var(--figma-cocoa); }
  .desktop-footer__location { position: absolute; left: 40px; top: 80px; width: 720px; }
  .desktop-footer__location h2 { margin: 0; font-size: 26px; font-weight: 400; line-height: 1.2; letter-spacing: 0.52px; text-transform: uppercase; }
  .desktop-footer__location > div { margin-top: 11px; display: flex; align-items: center; gap: 25px; color: var(--figma-gray); font-size: 13px; line-height: 1.25; letter-spacing: 0.26px; }
  .desktop-footer__location > div a { border-bottom: 1px solid currentColor; }
  .desktop-footer__location p { margin: 37px 0 0; display: flex; gap: 25px; font-size: 16px; font-weight: 300; line-height: 1.25; letter-spacing: 0.32px; }
  .desktop-footer__contacts > nav { position: absolute; top: 80px; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; font-size: 13px; line-height: 1.25; letter-spacing: 0.26px; }
  .desktop-footer__contacts > nav:nth-of-type(1) { left: 50.125%; }
  .desktop-footer__contacts > nav:nth-of-type(2) { left: calc(50% + 265px); }
  .desktop-footer__contacts > nav:nth-of-type(3) { right: 40px; }
  .desktop-footer__contacts nav strong { margin: 0; color: var(--figma-light); font-family: var(--font-primary); font-weight: 400; text-transform: uppercase; }
  .desktop-footer__contacts nav a { color: var(--figma-gray); }
  .desktop-footer__contacts nav a:hover { color: var(--figma-light); }
  .desktop-footer__bottom { position: relative; width: 100%; height: 90px; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; border: 0; background: var(--figma-cocoa); color: var(--figma-light); font-size: 13px; line-height: 1.25; letter-spacing: 0.26px; }
  .desktop-footer__bottom::before { content: ''; position: absolute; left: 40px; right: 40px; top: 0; height: 1px; background: rgba(255, 255, 255, 0.22); }
  .desktop-footer__bottom > img { position: absolute; left: 50%; top: 50%; width: 67px; height: 16px; transform: translate(-50%, -50%); }
  .desktop-footer__bottom > div { display: flex; gap: 25px; text-transform: uppercase; }
  .desktop-footer__bottom > div a,
  .desktop-footer__bottom > div span { border-bottom: 1px solid currentColor; }

  .filter-dialog .filter-group--no-data { display: none; }

  body.desktop-route-inner .site-header {
    background: rgba(255, 251, 248, 0.94);
    border-bottom: 1px solid rgba(14, 14, 14, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  body.desktop-route-inner .desktop-header { color: var(--figma-black); }
  body.desktop-route-inner .desktop-header img { filter: brightness(0); }

  .desktop-route-product .product-page,
  .desktop-route-profile .profile-page,
  .desktop-route-legal .legal-page {
    width: 100%;
    max-width: 1600px;
    min-height: 720px;
    padding: 150px 40px 110px;
  }

  .desktop-route-product .product-detail {
    grid-template-columns: clamp(535px, 68vh, 603px) minmax(390px, 430px);
    justify-content: center;
    gap: 52px;
  }
  .desktop-route-product .product-gallery { grid-template-columns: 74px minmax(0, 1fr); gap: 3px; }
  .desktop-route-product .product-gallery__thumbs { gap: 3px; }
  .desktop-route-product .product-gallery__thumbs button { border: 0; opacity: 0.56; transition: opacity 180ms ease; }
  .desktop-route-product .product-gallery__thumbs button.active,
  .desktop-route-product .product-gallery__thumbs button:hover { opacity: 1; }
  .desktop-route-product .product-gallery__main,
  .desktop-route-product .product-gallery__main img { background: var(--figma-photo); }
  .desktop-route-product .gallery-indicators { display: none; }
  .desktop-route-product .product-detail__summary { top: 150px; padding: 2px 0 0; gap: 16px; }
  .desktop-route-product .back-link,
  .desktop-route-product .eyebrow,
  .desktop-route-product .product-article,
  .desktop-route-product .stock-line,
  .desktop-route-product .product-block h3,
  .desktop-route-product .product-accordion__toggle {
    font-family: var(--font-primary);
    letter-spacing: 0.32px;
  }
  .desktop-route-product .product-title-row h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }
  .desktop-route-product .share-btn { width: 40px; height: 40px; border: 0; }
  .desktop-route-product .product-share-figma { width: 19px; height: 25px; display: block; }
  .desktop-route-product .product-price { font-family: var(--font-primary); font-size: 22px; font-weight: 400; letter-spacing: 0.44px; }
  .desktop-route-product .product-block { border-color: rgba(14, 14, 14, 0.18); }
  .desktop-route-product .product-size-grid { gap: 3px; }
  .desktop-route-product .product-size-grid button { min-height: 51px; border-color: rgba(14, 14, 14, 0.18); background: transparent; }
  .desktop-route-product .product-size-grid button.active { border-color: var(--figma-black); box-shadow: inset 0 0 0 1px var(--figma-black); }
  .desktop-route-product .product-add-btn { min-height: 54px; border: 1px solid var(--figma-black); background: var(--figma-black); font-family: var(--font-secondary); font-size: 16px; letter-spacing: 0.8px; text-transform: uppercase; }
  .desktop-route-product .product-add-btn:hover { background: var(--figma-light); color: var(--figma-black); }
  .product-colors-desktop { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(14, 14, 14, 0.18); }
  .product-colors-desktop > span { font-size: 12px; letter-spacing: 0.36px; text-transform: uppercase; }
  .product-colors-desktop > div { display: flex; align-items: center; gap: 10px; }
  .product-colors-desktop i { width: 16px; height: 16px; display: block; border: 1px solid rgba(14, 14, 14, 0.2); border-radius: 50%; }
  .product-colors-desktop i.active { outline: 1px solid var(--figma-orange); outline-offset: 4px; }
  .desktop-route-product .related-products { margin-top: 80px; padding-top: 48px; border-color: rgba(14, 14, 14, 0.18); }
  .desktop-route-product .related-products h2 { font-size: 26px; font-weight: 400; line-height: 1.2; letter-spacing: 0.52px; text-transform: uppercase; }
  .desktop-route-product .related-products .products-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 34px 3px; }

  .desktop-route-profile .profile-layout { grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr); gap: 80px; }
  .desktop-route-profile .profile-layout h2,
  .desktop-route-profile .profile-auth h2,
  .desktop-route-legal .legal-shell h1 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.72px;
    text-transform: uppercase;
  }
  .desktop-route-profile .profile-summary > div,
  .desktop-route-profile .order-line,
  .desktop-route-profile .bonus-strip { border-color: rgba(14, 14, 14, 0.18); }
  .desktop-route-profile .primary-btn,
  .desktop-route-profile .secondary-btn { min-height: 51px; border-radius: 0; font-family: var(--font-secondary); font-size: 14px; letter-spacing: 0.7px; text-transform: uppercase; }
  .desktop-route-legal .legal-shell { max-width: 920px; }
  .desktop-route-legal .legal-shell h2 { font-size: 26px; font-weight: 400; letter-spacing: 0.52px; text-transform: uppercase; }
  .desktop-route-legal .legal-shell p,
  .desktop-route-legal .legal-shell li { font-size: 16px; font-weight: 300; line-height: 1.55; letter-spacing: 0.32px; }

  .cart-drawer {
    z-index: 110;
    width: 480px;
    padding: 40px 40px 34px;
    border-radius: 5px 0 0 5px;
    background: var(--figma-light);
  }
  .page-scrim { z-index: 90; }
  .cart-drawer h3,
  .filter-dialog h3,
  .modal h3 { font-size: 26px; font-weight: 400; line-height: 1.2; letter-spacing: 0.52px; text-transform: uppercase; }
  .cart-drawer .cart-item { grid-template-columns: 98px 1fr auto; gap: 16px; border-color: rgba(14, 14, 14, 0.18); }
  .cart-drawer .cart-item > img { width: 98px; height: 131px; }
  .cart-drawer .cart-footer { border-color: var(--figma-black); }
  .cart-drawer .primary-btn,
  .checkout-modal .primary-btn,
  .profile-modal .primary-btn,
  .filter-dialog .primary-btn,
  .filter-dialog .secondary-btn { min-height: 51px; border-radius: 0; font-family: var(--font-secondary); font-size: 14px; letter-spacing: 0.7px; text-transform: uppercase; }

  dialog::backdrop { background: rgba(14, 14, 14, 0.34); backdrop-filter: blur(3px); }
  .modal,
  .filter-dialog { border-radius: 5px; background: var(--figma-light); }
  .search-modal { width: min(680px, calc(100vw - 80px)); padding: 40px; }
  .checkout-modal { width: min(780px, calc(100vw - 80px)); max-height: calc(100dvh - 80px); padding: 42px 50px 48px; }
  .profile-modal { width: min(720px, calc(100vw - 80px)); max-height: calc(100dvh - 80px); padding: 42px 50px 48px; }
  .checkout-modal .field input,
  .checkout-modal .field textarea,
  .profile-modal .field input,
  .search-modal .field input { border-color: rgba(14, 14, 14, 0.22); background: transparent; }
  .delivery-switch { border-color: rgba(14, 14, 14, 0.22); }
  .delivery-switch label:has(input:checked) { background: var(--figma-black); color: var(--figma-light); }
  .filter-dialog { width: 520px; height: 100dvh; margin: 0 0 0 auto; border-radius: 5px 0 0 5px; }
  .filter-dialog form { padding: 34px 40px 32px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .desktop-route-product .product-detail {
    grid-template-columns: minmax(0, 560px) minmax(340px, 390px);
    gap: 28px;
  }
  .desktop-route-product .product-gallery { grid-template-columns: 64px minmax(0, 1fr); }
  .desktop-route-product .product-title-row h1 { font-size: 28px; }
}

@media (min-width: 1600px) {
  .desktop-route-catalog .products-grid,
  .desktop-route-product .related-products .products-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
/* Checkout markers are independent of product colors. */
#checkoutForm .checkout-required-label { white-space: nowrap; }
#checkoutForm .checkout-required-label::after { content: "\00a0*"; color: inherit; font: inherit; vertical-align: baseline; position: static; }
.product-color-stars { position: absolute; z-index: 2; left: 12px; bottom: 12px; display: flex; gap: 6px; pointer-events: none; }
.product-color-star { width: 22px; height: 22px; display: inline-block; filter: drop-shadow(0 0 0.7px #666); }
.product-color-star i { display: block; width: 100%; height: 100%; -webkit-mask: url("/assets/figma-desktop/swatch-selected-orange.svg") center / contain no-repeat; mask: url("/assets/figma-desktop/swatch-selected-orange.svg") center / contain no-repeat; }
.product-variant-selector { margin: 18px 0; }
.checkout-payment { border: 0; margin: 0; padding: 0; display: grid; gap: 8px; }
.checkout-payment legend { margin-bottom: 8px; }
.checkout-payment label { display: flex; align-items: center; gap: 9px; min-height: 44px; cursor: pointer; }
.checkout-payment label[hidden] { display: none; }
.checkout-payment input { width: 18px; height: 18px; margin: 0; accent-color: #111; }
.product-variant-selector > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.product-variant-selector button { display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 1px solid #ddd; padding: 8px 10px; color: #111; }
.product-variant-selector button[aria-pressed="true"] { border-color: #111; }
.product-variant-selector button:disabled { opacity: .45; }
.product-variant-selector i { width: 16px; height: 16px; border: 1px solid #bbb; border-radius: 50%; }
.product-variant-selector button { min-height: 44px; border-radius: 3px; }
.product-variant-selector button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
@media (min-width: 1024px) {
  .product-variant-selector button { width: 44px; height: 44px; padding: 7px; border-radius: 50%; justify-content: center; border-color: transparent; }
  .product-variant-selector button[aria-pressed="true"] { border-color: #111; }
  .product-variant-selector i { width: 28px; height: 28px; flex-shrink: 0; }
  .product-variant-selector button > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}
@media (min-width: 1024px) {
  .product-card .product-card__price, .product-card .product-card__price > span:first-child, .desktop-route-product .product-price > span:first-child { color: #000; font-weight: 600; }
  .desktop-route-product .product-price { font-size: 24px; margin-top: 12px; }
}

.payment-status-dialog { max-width: 440px; padding: 28px; border: 1px solid #ddd; }
.payment-status-dialog button { margin-top: 16px; }
