/* Golos Text — self-hosted, вариативный 400-900 */
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #ffffff;
  --warm: #f6f6f5;
  --warm-2: #ececeb;
  --muted: #6d6d6a;
  --line: #e4e4e2;
  --orange: #f66b00;
  --orange-dark: #d85c00;
  --wb-purple: #8d297f;
  --wb-purple-dark: #7d256f;
  --panel: #181818;
  --shadow: rgba(17, 17, 17, 0.14);
  --overlay: rgba(255, 255, 255, 0.96);
  --watermark: rgba(17, 17, 17, 0.055);
  --font-main: "Golos Text", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* тёмная тема: следует системной настройке */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f0f0ee;
    --paper: #121212;
    --warm: #1c1c1c;
    --warm-2: #262626;
    --muted: #a2a2a0;
    --line: #373737;
    --orange: #ff7a1f;
    --orange-dark: #f66b00;
    --wb-purple: #b23d9e;
    --wb-purple-dark: #8d297f;
    --shadow: rgba(0, 0, 0, 0.55);
    --overlay: rgba(18, 18, 18, 0.94);
    --watermark: rgba(255, 255, 255, 0.06);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.42;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  color: #fff;
  background: var(--orange);
}

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

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

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 60px;
  padding: 0 34px;
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.site-header .header-cta {
  justify-self: end;
}

.brand-logo {
  display: inline-flex;
  width: 128px;
  min-width: 128px;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

.top-nav a,
.header-cta,
.eyebrow,
.btn,
.ticker span,
.fine-print {
  letter-spacing: 0;
}

.top-nav a {
  padding: 8px 0;
  color: #fff;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--fast), border-color var(--fast);
}

.top-nav a:hover {
  color: #fff;
  border-color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}

.header-cta {
  min-height: 40px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.header-cta:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.header-cta:hover,
.btn-dark:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
}

.btn-secondary:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.btn-secondary-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-secondary-dark:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.btn-light {
  color: #111111;
  background: #fff;
  border-color: #fff;
}

.btn-light:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

/* переход на Wildberries: их фирменный фиолетовый, а не наш оранжевый — визуально "чужой" маркетплейс */
.btn-wb {
  color: #fff;
  background: var(--wb-purple);
  border-color: var(--wb-purple);
}

.btn-wb:hover {
  background: var(--wb-purple-dark);
  border-color: var(--wb-purple-dark);
}

/* форма контактов прямой заявки: раскрывается по клику на кнопку с data-direct-toggle (сейчас оформлена как .btn-primary) */
.direct-form[hidden] {
  display: none;
}

.direct-form {
  display: grid;
  gap: 14px;
  margin: 12px 0 0;
  padding: 20px;
  background: var(--warm);
  border: 1px solid var(--line);
  scroll-margin-bottom: 90px;
}

.direct-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.direct-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.direct-form input,
.direct-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.direct-form input:focus,
.direct-form select:focus {
  outline: 2px solid var(--ink);
  outline-offset: -1px;
}

.direct-form select:invalid {
  color: var(--muted);
}

.direct-form-map-link {
  margin-top: -8px;
  font-size: 12px;
}

.direct-form-map-link[hidden] {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: min(88vh, 920px);
  overflow: hidden;
  background: var(--paper);
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 34px;
  margin: 0;
  color: var(--watermark);
  font-size: 180px;
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 54px 40px 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: 62px;
  line-height: 0.98;
  font-weight: 800;
  text-transform: none;
}

.hero-lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 650px;
  margin: 34px 0 0;
  border: 1px solid var(--ink);
  background: #fff;
}

.hero-proof div {
  padding: 15px 13px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof dt,
.hero-proof dd {
  margin: 0;
}

.hero-proof dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof dd {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 900;
}

/* hero: полноэкранный кадр, слоган и CTA поверх */
.hero.hero-a {
  display: block;
  min-height: 94vh;
  background: var(--warm-2);
}

.hero-a-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-a-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 48px;
  z-index: 2;
  max-width: 660px;
}

.hero-a-copy .eyebrow {
  color: #4c4c4a;
}

.hero-a-copy h1 {
  margin: 0 0 24px;
  color: #111111;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.hero-a-shop {
  position: absolute;
  right: 34px;
  bottom: 48px;
  z-index: 2;
  padding: 10px 14px;
  background: var(--overlay);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--fast);
}

.hero-a-shop:hover {
  color: var(--orange);
}

/* мобильный: фото сверху, текст плоским блоком под ним */
@media (max-width: 820px) {
  .hero.hero-a {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-a-img {
    position: static;
    width: 100%;
    height: 60vh;
    object-position: 60% 18%;
  }

  .hero-a-copy {
    position: static;
    max-width: none;
    padding: 22px 16px 6px;
  }

  .hero-a-copy h1 {
    color: var(--ink);
    font-size: 36px;
  }

  .hero-a-copy .eyebrow {
    color: var(--muted);
  }

  .hero-a-shop {
    top: 72px;
    right: 16px;
    bottom: auto;
  }
}

.ticker {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 34px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker span::before {
  content: "\00B7";
  margin: 0 18px;
  color: var(--line);
}

.ticker span:first-child::before {
  content: none;
}

.commerce-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 26px 34px 0;
}

.commerce-strip article {
  padding: 24px 0 8px;
  border-top: 1px solid var(--ink);
}

.commerce-strip article:last-child {
  border-top: 1px solid var(--ink);
}

.commerce-strip span,
.world-caption span,
.feature-card span,
.form-head span,
.checkout-product span,
.product-card span,
.pdp-commerce-path span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.commerce-strip h2 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-transform: none;
}

.commerce-strip p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 64px 34px;
}

.section-head {
  display: block;
  margin-bottom: 26px;
}

.section-head .eyebrow {
  display: none;
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
}

.section-head p:last-child {
  margin: 6px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
}

.world-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 28px;
}

.world-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.world-image {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--warm);
}

.world-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.world-image .swap {
  opacity: 0;
  transition: opacity var(--fast);
}

.world-card:hover .swap {
  opacity: 1;
}

.world-caption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 0;
  padding: 18px 0 0;
}

.world-caption strong,
.feature-card strong,
.product-card strong {
  font-size: 20px;
  text-transform: none;
}

.world-caption em,
.product-card em,
.checkout-product em,
.pdp-commerce-path em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.world-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 230px;
  padding: 28px;
  background: var(--warm);
}

.feature-card strong {
  display: block;
  max-width: 430px;
  margin: 30px 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.feature-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.feature-card-dark {
  color: #fff;
  background: var(--panel);
}

.feature-card-dark p,
.feature-card-dark span {
  color: rgba(255, 255, 255, 0.7);
}

.proof-grid,
.wear-grid,
.collection-grid {
  display: grid;
  gap: 12px;
}

.proof-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid-wide,
.wear-grid,
.collection-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid figure,
.wear-grid figure {
  position: relative;
  margin: 0;
}

.proof-grid figure > *,
.wear-grid figure > * {
  min-width: 0;
}

.proof-grid img,
.wear-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 420ms ease;
}

.proof-grid figure:hover img,
.wear-grid figure:hover img,
.product-card:hover img {
  transform: scale(1.02);
}

.proof-grid figure {
  overflow: hidden;
}

.proof-grid figure img,
.wear-grid figure img {
  transition: transform 420ms ease;
}

.proof-grid figcaption,
.wear-grid figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-section {
  background: #fff;
  color: var(--ink);
}

.size-section .eyebrow,
.size-section .section-head p {
  color: var(--muted);
}

.size-grid,
.size-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
}

.size-assistant {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 40px;
  color: var(--ink);
  background: var(--warm);
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.form-head strong {
  font-size: 20px;
  line-height: 1.05;
  text-transform: none;
}

.size-assistant label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.size-assistant input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.size-result {
  margin: 0;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border-left: 3px solid var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.buy-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  padding: 40px;
  color: var(--ink);
  background: var(--warm);
}

.buy-panel-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--warm);
}

.checkout-product {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.checkout-product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.checkout-product strong {
  display: block;
  max-width: 560px;
  margin: 8px 0;
  font-size: 27px;
  line-height: 1.05;
  text-transform: none;
}

.checkout-product span,
.checkout-product em {
  color: var(--muted);
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-actions .btn {
  flex: 1 1 190px;
}

.collection-grid {
  gap: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: #fff;
}

.product-card:last-child {
  border-right: 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 420ms ease;
}

.product-card span,
.product-card strong,
.product-card em {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.product-card span {
  margin-top: 18px;
}

.product-card strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.product-card em {
  margin-top: 8px;
  margin-bottom: 22px;
}

.product-card-main {
  background: var(--warm);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 12px;
}

.model-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}

.model-grid-compact .model-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.model-visual {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--warm-2);
}

.model-grid-compact .model-visual {
  aspect-ratio: 3 / 4;
}

/* мини-галерея карточки: свайп-трек, точки, стрелки на hover */
.model-visual .card-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.model-visual .card-track::-webkit-scrollbar {
  display: none;
}

.model-visual img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  scroll-snap-align: start;
}

.card-dots {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  transition: bottom var(--fast);
}

/* когда на hover выезжает quick-buy, точки поднимаются над кнопкой */
.model-card:hover .card-dots {
  bottom: 66px;
}

@media (max-width: 820px) {
  .model-card:hover .card-dots {
    bottom: 12px;
  }
}

/* плоские индикаторы без теней и скруглений — в графике сайта */
.card-dots i {
  width: 12px;
  height: 2px;
  background: rgba(17, 17, 17, 0.32);
  transition: background var(--fast);
}

.card-dots i.is-on {
  background: #111111;
}

.card-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--overlay);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity var(--fast);
}

.card-nav.card-prev {
  left: 8px;
}

.card-nav.card-next {
  right: 8px;
}

.model-media:hover .card-nav,
.card-nav:focus-visible {
  opacity: 1;
}

@media (max-width: 820px) {
  .card-nav {
    display: none;
  }
}

.model-card-pushup-black .model-visual img {
  object-position: center center;
}

.model-card-pushup-black .model-visual .model-alt {
  object-position: center 18%;
}

.model-card-pushup-grey .model-visual img {
  object-position: center 18%;
}

.model-card-butterfly .model-visual img {
  object-position: 42% center;
}

.model-card-butterfly .model-visual .model-alt {
  object-position: 46% center;
}


.model-copy {
  display: flex;
  flex-direction: column;
  padding: 14px 0 0;
}

.model-copy span {
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-copy h3 {
  margin: 6px 0 4px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: none;
}

.model-copy p {
  max-width: 360px;
  margin: 0 0 22px;
  color: var(--muted);
}

.model-copy ul {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.model-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color var(--fast), border-color var(--fast);
}

.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.story-band {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.story-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.story-band div {
  padding: 54px;
}

.story-band .eyebrow,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.story-band h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 900;
  text-transform: none;
}

.story-band p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  overflow: hidden;
  padding: 82px 34px;
  background: var(--ink);
  color: #fff;
}

.final-cta .hero-watermark {
  color: rgba(255, 255, 255, 0.08);
}

.final-cta > div,
.final-cta .btn {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  text-transform: none;
}

.final-cta p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.final-cta .btn-primary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.final-cta .btn-primary:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  color: #fff;
  background: var(--panel);
  font-size: 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px 34px 44px;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-main h3 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-main nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--fast);
}

.footer-main nav a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  padding: 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-note {
  width: 100%;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  transition: color var(--fast);
}

.footer-bottom a:hover {
  color: var(--orange);
}

.brand-logo-light {
  filter: none;
}

.mobile-buy {
  display: none;
}

.breadcrumbs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--orange-dark);
}

.pdp-hero {
  display: grid;
  grid-template-columns: 58% 42%;
}

.pdp-hero .pdp-gallery {
  order: -1;
}

.pdp-copy {
  min-width: 0;
  position: sticky;
  top: 68px;
  align-self: start;
  min-height: calc(100vh - 68px);
  padding: 70px 34px 56px 44px;
}

.pdp-copy h1 {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 800;
  text-transform: none;
}

.pdp-copy > p {
  max-width: 500px;
  color: var(--muted);
}

.specs {
  max-width: 540px;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.specs dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.pdp-proof-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
  margin: -14px 0 24px;
}

.pdp-proof-mini span {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--warm);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

/* галерея деталки: свайп-вьювер + плитка миниатюр (Adanola x SPLITS59) */
.pdp-gallery {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-self: start;
  padding: 0 0 0 16px;
  background: var(--paper);
}

.gallery-stage {
  position: relative;
  min-width: 0;
}

.gallery-stage .card-nav {
  width: 42px;
  height: 42px;
}

.gallery-stage:hover .card-nav,
.gallery-stage .card-nav:focus-visible {
  opacity: 1;
}

.gallery-view {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-view::-webkit-scrollbar {
  display: none;
}

.gallery-view img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  scroll-snap-align: start;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-content: start;
  padding-top: 72px;
}

@media (max-width: 820px) {
  .gallery-thumbs {
    padding-top: 0;
  }
}

.gallery-thumbs button {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--warm);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--fast), border-color var(--fast);
}

.gallery-thumbs button:hover {
  opacity: 1;
}

.gallery-thumbs button.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-commerce-path {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  padding: 40px 34px 8px;
}

.pdp-commerce-path > div,
.pdp-commerce-path a {
  padding: 24px 0 8px;
  border-top: 1px solid var(--ink);
}

.pdp-commerce-path h2 {
  max-width: 380px;
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: none;
}

.pdp-commerce-path strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.pdp-commerce-path em {
  display: block;
  margin-top: 8px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  background: transparent;
}

.size-table th,
.size-table td {
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.size-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-table td:first-child {
  font-weight: 800;
}

.back-strip {
  display: block;
  padding: 38px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--fast), background var(--fast);
}

.back-strip:hover {
  color: #fff;
  background: var(--orange);
}

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

@media (max-width: 1180px) {
  .hero,
  .pdp-hero,
  .story-band,
  .world-layout,
  .size-grid,
  .size-layout,
  .buy-panel-wide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 120px 28px 52px;
  }

  .hero-media {
    min-height: 560px;
  }

  .world-card {
    min-height: 580px;
  }

  .pdp-copy {
    position: static;
    min-height: 0;
    padding: 52px 28px;
  }

  .pdp-gallery {
    border-top: 0;
  }

  .section-head,
  .commerce-strip,
  .pdp-commerce-path {
    grid-template-columns: 1fr;
  }

  .commerce-strip,
  .pdp-commerce-path {
    gap: 18px;
  }

  .section-head {
    gap: 12px;
  }

  .proof-grid,
  .proof-grid-wide,
  .wear-grid,
  .collection-grid,
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-grid-compact {
    grid-template-columns: 1fr;
  }

  .model-card,
  .model-grid-compact .model-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }





  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 60px;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 112px;
    min-width: 112px;
  }

  .header-cta {
    display: none;
  }

  .top-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    font-size: 11px;
  }

  .hero-copy {
    padding: 88px 18px 36px;
  }

  .hero h1,
  .pdp-copy h1 {
    font-size: 39px;
  }

  .hero-lead,
  .pdp-copy > p {
    font-size: 15px;
  }

  .hero-actions,
  .final-actions,
  .checkout-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-watermark {
    top: 18px;
    left: 16px;
    font-size: 64px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media span {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-proof div {
    padding: 11px 8px;
  }

  .hero-proof dt {
    font-size: 9px;
  }

  .hero-proof dd {
    font-size: 12px;
  }

  .ticker {
    padding: 0 18px;
  }

  .section,
  .final-cta {
    padding: 58px 18px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2,
  .story-band h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .world-card {
    min-height: 470px;
  }

  .world-caption {
    grid-template-columns: auto 1fr;
    gap: 10px;
    min-height: 72px;
    padding: 16px;
  }

  .world-caption em {
    grid-column: 2;
  }

  .world-side,
  .proof-grid,
  .proof-grid-wide,
  .wear-grid,
  .collection-grid,
  .model-grid,
  .model-grid-compact {
    grid-template-columns: 1fr;
  }

  .product-card,
  .model-card,
  .model-grid-compact .model-card,
  .product-card:nth-child(2n),
  .model-card:nth-child(2n),
  .model-grid-compact .model-card:nth-child(2n),
  .proof-grid figure,
  .proof-grid figure:nth-child(2n),
  .wear-grid figure,
  .wear-grid figure:nth-child(2n) {
    border-right: 0;
  }

  .product-card:last-child,
  .model-card:last-child,
  .proof-grid figure:last-child,
  .wear-grid figure:last-child {
    border-bottom: 0;
  }



  .model-copy {
    padding: 22px 18px;
  }

  .model-copy h3 {
    font-size: 31px;
  }

  .feature-card {
    min-height: 260px;
    padding: 24px 18px;
  }

  .feature-card strong {
    margin-top: 36px;
    font-size: 24px;
  }

  .size-assistant,
  .buy-panel {
    padding: 24px 18px;
  }

  .checkout-product {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .checkout-product strong {
    font-size: 21px;
  }

  .story-band img {
    height: 440px;
  }

  .story-band div {
    padding: 30px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .breadcrumbs {
    padding: 14px 18px;
  }

  .pdp-copy {
    padding: 42px 18px;
  }

  .pdp-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0 4px;
  }

  .gallery-thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumbs button {
    flex: 0 0 56px;
    width: 56px;
  }

  .specs div {
    align-items: flex-start;
  }

  .size-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .size-table th,
  .size-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .mobile-buy {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 28px var(--shadow);
  }
}

/* Цены (P1-6): карточки моделей и buy-панели */
.model-price {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.model-price span {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.buy-price {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.buy-price strong {
  margin-right: 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

/* P1-8: мобильный полиш */
@media (max-width: 1180px) {
  .pdp-gallery {
    order: -1;
  }
}

@media (max-width: 820px) {
  .mobile-buy {
    transition: transform 260ms ease;
  }

  .mobile-buy.tuck {
    transform: translateY(130%);
  }
}

/* P2: табличные цифры и сдвиг подчёркивания у ссылок */
.size-table th,
.size-table td,
.model-price,
.buy-price,
.specs dd {
  font-variant-numeric: tabular-nums;
}

.text-link {
  transition: color var(--fast), border-color var(--fast), padding-bottom var(--fast);
}

.text-link:hover {
  padding-bottom: 7px;
}

/* фикс: обёртки таблиц в grid должны сжиматься (иначе overflow на мобиле) */
.size-layout > div,
.size-grid > div {
  min-width: 0;
}

/* P2-6: отзывы с Wildberries — горизонтальная карусель */
.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 330px;
  gap: 12px;
  margin: 0 -34px;
  padding: 2px 34px 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-left: 34px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

/* тонкая линия-прогресс вместо системного скроллбара */
.reviews-grid::-webkit-scrollbar {
  height: 3px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: var(--ink);
}

.review-card {
  scroll-snap-align: start;
}

.reviews-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.carousel-nav {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.carousel-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}

.carousel-nav button:hover {
  border-color: var(--ink);
}

.review-card .review-model {
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--orange);
  font-size: 12px;
  font-weight: 700;
  transition: color var(--fast);
}

.review-card .review-model:hover {
  color: var(--orange-dark);
}

.review-card.review-more {
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 28px;
  border: 0;
  color: #fff;
  background: var(--panel);
  text-align: center;
}

.review-more .stars {
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  margin-right: -6px;
}

.review-more strong {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.review-more span {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.review-more em {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 16px;
  padding: 0 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--fast);
}

.review-more:hover em {
  background: var(--orange-dark);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.review-card figcaption {
  min-height: 64px;
}

/* карточка без медиа: подпись тоже уходит вниз */
.review-card > blockquote + figcaption {
  margin-top: auto;
}

.review-card figcaption strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.review-card figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.review-card figcaption b {
  color: var(--orange);
  font-weight: 400;
  letter-spacing: 2px;
}

.reviews-section .fine-print {
  margin-top: 16px;
}

.reviews-section .fine-print a {
  border-bottom: 1px solid var(--orange);
}

@media (max-width: 820px) {
  .reviews-grid {
    grid-auto-columns: 82vw;
    margin: 0 -16px;
    padding: 2px 16px 12px;
    scroll-padding-left: 16px;
  }

  .carousel-nav {
    display: none;
  }
}

/* Референсный UI: цена, выбор размера, аккордеоны, плавающая панель покупки */
.pdp-price {
  margin: 4px 0 6px;
  font-size: 15px;
  color: var(--muted);
}

.pdp-price strong {
  margin-right: 10px;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.pdp-price-direct {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
}

.pdp-price-direct strong {
  margin-right: 10px;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange-dark);
  font-variant-numeric: tabular-nums;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.size-picker button {
  min-width: 52px;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--fast), background var(--fast), color var(--fast);
}

.size-picker button:hover {
  border-color: var(--ink);
}

.size-picker button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.size-hint {
  margin: 14px 0 26px;
  font-size: 13px;
}

.size-hint a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--orange);
  transition: color var(--fast);
}

.size-hint a:hover {
  color: var(--orange-dark);
}

.pdp-acc {
  border-top: 1px solid var(--line);
}

.pdp-acc:last-of-type {
  border-bottom: 1px solid var(--line);
}

.pdp-acc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-acc summary::-webkit-details-marker {
  display: none;
}

.pdp-acc summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

.pdp-acc[open] summary::after {
  content: "\2013";
}

.pdp-acc .specs {
  margin: 0 0 18px;
  border-top: 0;
  max-width: none;
}

.pdp-acc > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.pdp-acc > p a {
  border-bottom: 1px solid var(--orange);
}

.atc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 34px;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 14px var(--shadow);
  transform: translateY(110%);
  transition: transform 280ms ease;
}

.atc-bar.is-visible {
  transform: none;
}

.atc-info {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.atc-info strong {
  font-size: 16px;
  font-weight: 800;
}

.atc-info span {
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.atc-sizes {
  margin: 0;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.atc-sizes::-webkit-scrollbar {
  display: none;
}

.atc-sizes button {
  min-width: 44px;
  min-height: 42px;
}

.atc-bar .btn {
  min-height: 46px;
}

.atc-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 820px) {
  .atc-bar {
    gap: 8px;
    padding: 10px 12px;
  }

  /* цена и так видна выше по карточке; на узком экране это место нужнее под обе кнопки покупки */
  .atc-info {
    display: none;
  }

  .atc-sizes button {
    min-width: 36px;
    min-height: 40px;
    padding: 0 6px;
    font-size: 12px;
  }

  .atc-bar .btn {
    padding: 0 10px;
    font-size: 10px;
  }

  .atc-actions {
    gap: 8px;
  }
}


@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 20px 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}


@media (max-width: 1180px) {
  .model-grid,
  .model-grid-compact {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 10px;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 12px;
    padding: 0 14px;
  }

  .top-nav {
    gap: 14px;
  }

  .top-nav a {
    font-size: 10px;
  }

  .site-header .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }

  .proof-grid,
  .proof-grid-wide,
  .proof-grid-six,
  .wear-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/* quick-buy на карточках каталога */
.model-card {
  position: relative;
}

.model-media {
  position: relative;
}

.quick-buy {
  position: absolute;
  right: 10px;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 12px;
  background: var(--overlay);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--fast), transform var(--fast), background var(--fast), color var(--fast);
}

.model-card:hover .quick-buy,
.quick-buy:focus-visible {
  opacity: 1;
  transform: none;
}

.quick-buy:hover {
  background: var(--orange);
  color: #fff;
}

.model-copy h3 a {
  transition: color var(--fast);
}

.model-copy h3 a:hover {
  color: var(--orange-dark);
}

@media (max-width: 820px) {
  .quick-buy {
    display: none;
  }
}


/* подбор размера и сетка — в товарной панели (size guide как у Adanola) */
.size-tools {
  margin: 0 0 16px;
}

.size-tools .pdp-acc .size-assistant {
  padding: 18px 0 6px;
  background: transparent;
}

.size-tools .size-assistant {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.size-tools .size-assistant .form-head {
  display: none;
}

.size-tools .size-assistant label {
  font-size: 11px;
}

.size-tools .size-assistant input {
  min-height: 44px;
}

.size-tools .size-assistant button {
  grid-column: 1 / -1;
  min-height: 44px;
}

.size-tools .size-result {
  grid-column: 1 / -1;
  margin: 0;
}

.size-tools .size-table {
  margin: 14px 0 6px;
}

.size-tools .fine-print {
  margin: 0 0 14px;
}


/* плавное раскрытие аккордеонов вниз от заголовка */
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
}

.pdp-acc::details-content {
  display: block;
  block-size: 0;
  overflow-y: clip;
  transition: block-size 320ms ease, content-visibility 320ms allow-discrete;
}

.pdp-acc[open]::details-content {
  block-size: auto;
}


/* Yokefit Club: бесконечная карусель кадров Telegram */
.tg-club {
  padding: 72px 0 0;
  overflow: hidden;
  color: #fff;
  background: var(--panel);
}

.tg-club-head {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 34px 44px;
  text-align: center;
}

.tg-club-head .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.tg-club-head h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
}

.tg-club-head p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.tg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tg-marquee {
  display: block;
  padding-bottom: 72px;
  overflow: hidden;
}

.tg-track {
  display: flex;
  width: max-content;
  animation: tg-scroll 48s linear infinite;
}

.tg-set {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}

.tg-set img {
  display: block;
  width: auto;
  height: 320px;
  transition: opacity var(--fast);
}

.tg-marquee:hover .tg-track {
  animation-play-state: paused;
}

.tg-marquee:hover img {
  opacity: 0.88;
}

@keyframes tg-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .tg-set img {
    height: 220px;
  }

  .tg-club-head h2 {
    font-size: 26px;
  }
}

/* мобильный адаптив: аудит 2026-07-27 */
@media (max-width: 820px) {
  /* шапка: одна строка — лого слева, меню справа, CTA скрыт (есть бар и карточки) */
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 52px;
    gap: 10px;
    padding: 0 16px;
  }

  .site-header .brand-logo {
    order: -1;
    width: 100px;
    min-width: 100px;
  }

  .site-header .top-nav {
    justify-self: end;
    justify-content: flex-end;
    gap: 16px;
  }

  .site-header .header-cta {
    display: none;
  }

  /* hero: воздух под фиксированной шапкой */
  .hero-copy {
    padding-top: 104px;
  }

  /* карточки каталога: тише лейблы, цена без даты */
  .model-copy span {
    font-size: 9.5px;
    letter-spacing: 0.06em;
  }

  .model-price span {
    display: none;
  }

  .model-copy h3 {
    font-size: 15px;
  }

  /* панель товара: кнопки во всю ширину, таблица со скроллом */
  .pdp-copy .hero-actions .btn {
    width: 100%;
  }

  .size-tools .size-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .size-tools .size-table th,
  .size-tools .size-table td {
    padding: 12px 14px 12px 0;
    font-size: 12.5px;
  }

  /* плавающий бар: всё в одну строку */
  .atc-bar {
    gap: 8px;
    padding: 10px 10px;
  }

  .atc-info span {
    font-size: 12px;
  }

  .atc-sizes {
    gap: 4px;
  }

  .atc-sizes button {
    min-width: 32px;
    min-height: 38px;
    padding: 0 4px;
    font-size: 11px;
  }

  .atc-bar .btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  /* отзывы и аккордеоны: компактнее */
  .review-card {
    padding: 20px;
  }

  .section {
    padding: 48px 16px;
  }

  .tg-club-head {
    padding: 0 16px 32px;
  }
}


.size-tools,
.size-tools details {
  min-width: 0;
  max-width: 100%;
}


/* 2026-07-28: отступ между CTA и аккордеонами; медиа в отзывах */
.pdp-copy .hero-actions {
  margin-bottom: 26px;
}

/* медиа прижаты к низу карточки, высота у всех одинаковая */
.review-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 100%;
  gap: 8px;
  height: 300px;
  margin-top: auto;
  overflow: hidden;
}

.review-media > :only-child {
  grid-column: 1 / -1;
}

.review-media img,
.review-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--warm-2);
}

.review-media video {
  cursor: pointer;
}

@media (max-width: 820px) {
  .atc-btn-tail {
    display: none;
  }

  .atc-sizes button {
    min-width: 30px;
    padding: 0 3px;
  }

  .atc-sizes {
    gap: 3px;
  }
}

@media (max-width: 820px) {
  .atc-bar .btn {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-rows: auto;
  }

  .site-header .brand-logo {
    grid-area: 1 / 1;
  }

  .site-header .top-nav {
    grid-area: 1 / 2;
  }
}

/* мобильный каталог моделей: одна колонка, карточки во всю ширину */
@media (max-width: 820px) {
  .model-grid,
  .model-grid-compact {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  /* запас под плавающий бар покупки — внутри тёмного футера, а не белым хвостом body */
  body:has(.atc-bar) .site-footer {
    padding-bottom: 72px;
  }
}
