/* ============================================================
   VELOX — велосипеды и экипировка (демо-магазин)
   Палитра: красный #e01f26, белый, графит #16181c
   Шрифты: Oswald (дисплей), Barlow Condensed (UI/лейблы), Inter (текст, цифры)
   ============================================================ */

:root {
  --red: #e01f26;
  --red-dark: #b3161c;
  --red-soft: #fdecec;
  --ink: #16181c;
  --graphite: #2b3038;
  --steel: #5e6672;
  --muted: #8c94a1;
  --line: #e3e5ea;
  --line-soft: #eef0f3;
  --paper: #ffffff;
  --mist: #f4f5f7;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1320px;
  --gutter: clamp(18px, 4vw, 40px);
  --section: clamp(56px, 7vw, 104px);
  --tr: 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  --skew: -13deg;
  --shadow: 0 18px 46px rgba(22, 24, 28, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-padding-top: 124px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
svg { display: block; }

[hidden] { display: none !important; }

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

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.price, .num {
  font-family: var(--body);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.01em;
}

.kicker {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- диагональные акценты ---------- */
.slash {
  display: inline-block;
  width: 0.42em;
  height: 0.86em;
  background: var(--red);
  transform: skewX(var(--skew));
  vertical-align: baseline;
}
.speedlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(107deg, rgba(224, 31, 38, 0.09) 0 2px, transparent 2px 16px);
  opacity: 0.9;
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transform: skewX(var(--skew));
  transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
}
.btn > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn:active { transform: skewX(var(--skew)) translateY(1px); }

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

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

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn-outline-light:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn-wide { width: 100%; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.link-arrow {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
  transition: gap var(--tr), color var(--tr);
}
.link-arrow:hover { gap: 15px; color: var(--red); }

/* ---------- reveal (IntersectionObserver + transition) ---------- */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.07s; }
.rv-d2 { transition-delay: 0.14s; }
.rv-d3 { transition-delay: 0.21s; }
.rv-d4 { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- верхняя полоса ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.topbar-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}
.topbar-in b { color: #fff; }
.promo-code {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: var(--red);
  padding: 3px 11px 2px;
  transform: skewX(var(--skew));
  position: relative;
}
.promo-code span.t { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }
.promo-tip {
  position: absolute;
  left: 50%;
  top: calc(100% + 9px);
  transform: skewX(calc(-1 * var(--skew))) translateX(-50%) translateY(-4px);
  background: #fff;
  color: var(--ink);
  font-family: var(--cond);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 5;
}
.promo-tip.show { opacity: 1; transform: skewX(calc(-1 * var(--skew))) translateX(-50%) translateY(0); }

/* ---------- шапка ---------- */
.header-stack { position: sticky; top: 0; z-index: 60; }
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* главная: шапка лежит поверх полноэкранного фото */
body.home .header-stack { position: fixed; top: 0; left: 0; right: 0; }
body.home .topbar { background: rgba(10, 11, 13, 0.5); transition: background 0.3s ease; }
body.home .site-header { background: transparent; border-bottom-color: rgba(255, 255, 255, 0.2); }
body.home .site-header .logo,
body.home .site-header .icon-btn,
body.home .site-header .header-phone { color: #fff; }
body.home .site-header .main-nav a { color: rgba(255, 255, 255, 0.92); }
body.home .header-stack.solid .topbar { background: var(--ink); }
body.home .header-stack.solid .site-header { background: var(--paper); border-bottom-color: var(--line); }
body.home .header-stack.solid .site-header .logo,
body.home .header-stack.solid .site-header .icon-btn,
body.home .header-stack.solid .site-header .header-phone { color: var(--ink); }
body.home .header-stack.solid .site-header .main-nav a { color: var(--graphite); }
.header-in {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 72px;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex: none;
}
.logo i { font-style: normal; color: var(--red); }
.main-nav {
  display: flex;
  gap: clamp(14px, 1.9vw, 28px);
  margin-inline-end: auto;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.main-nav a { position: relative; padding: 6px 0; color: var(--graphite); transition: color var(--tr); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right var(--tr);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }
.main-nav a.on { color: var(--ink); }
.main-nav a.on::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; }
.header-phone {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
  margin-inline-end: 8px;
  transition: color var(--tr);
}
.header-phone:hover { color: var(--red); }
.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
  transition: color var(--tr);
}
.icon-btn:hover { color: var(--red); }
.icon-btn svg { width: 23px; height: 23px; }
.cart-count {
  position: absolute;
  top: 5px;
  right: 3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  background: var(--red);
  color: #fff;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.on { transform: scale(1); }
.burger { display: none; }

/* ---------- мобильное меню ---------- */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 86vw);
  background: var(--ink);
  color: #fff;
  z-index: 120;
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 26px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mn-close {
  align-self: flex-end;
  font-family: var(--cond);
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0 20px;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color var(--tr), padding-left var(--tr);
}
.mobile-nav a:hover { color: var(--red); padding-left: 8px; }
.mn-foot {
  margin-top: 26px;
  font-family: var(--cond);
  font-size: 17px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}
.mn-foot a { font-family: var(--body); font-size: 19px; font-weight: 600; border: 0; padding: 4px 0; }

.modal-veil {
  position: fixed;
  inset: 0;
  background: rgba(12, 13, 16, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
  z-index: 110;
}
.modal-veil.open { opacity: 1; pointer-events: auto; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--ink);
}
.hero > img,
.hero > .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  z-index: -2;
}
/* пока видео не начало играть, кадр держит постер — фон не мигает */
.hero > .hero-video { background: var(--ink) center/cover no-repeat; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 11, 13, 0.88) 0%, rgba(10, 11, 13, 0.55) 34%, rgba(10, 11, 13, 0.22) 62%, rgba(10, 11, 13, 0.52) 100%);
}
.hero-content { padding-bottom: clamp(44px, 8vh, 92px); padding-top: clamp(140px, 20vh, 190px); color: #fff; width: 100%; }
.hero-kicker {
  font-family: var(--cond);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: "";
  width: 46px;
  height: 3px;
  background: var(--red);
  transform: skewX(var(--skew));
  flex: none;
}
.hero h1 {
  font-size: clamp(44px, 8.2vw, 112px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
}
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(48px, 8vh, 96px);
  writing-mode: vertical-rl;
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after { content: ""; width: 1px; height: 58px; background: rgba(255, 255, 255, 0.45); }

/* ---------- секции ---------- */
.section { padding-block: var(--section); position: relative; }
.section.mist { background: var(--mist); }
.section.dark { background: var(--ink); color: #fff; }
.section.tight { padding-block: clamp(40px, 5vw, 72px); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3vw, 46px);
}
.section-head h2 { font-size: clamp(32px, 5vw, 62px); font-weight: 600; }
.section-head .kicker { margin-bottom: 10px; display: block; }
.section-head p { color: var(--steel); max-width: 52ch; margin-top: 12px; }
.section.dark .section-head p { color: rgba(255, 255, 255, 0.68); }

/* ---------- плитки категорий ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
}
.cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 3;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity var(--tr);
  opacity: 0.86;
}
.cat-tile:hover img { transform: scale(1.06); opacity: 1; }
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.82) 4%, rgba(10, 11, 13, 0.1) 58%);
}
.cat-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px clamp(16px, 2vw, 26px);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.cat-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 30px);
  text-transform: uppercase;
  line-height: 1.05;
}
.cat-qty {
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}
.cat-tile .cat-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--red);
  z-index: 3;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cat-tile:hover .cat-bar { width: 100%; }

/* ---------- карточка товара ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 26px);
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  position: relative;
}
.product-card:hover { border-color: var(--ink); box-shadow: var(--shadow); transform: translateY(-4px); }
.pc-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--mist); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1); }
.product-card:hover .pc-media img { transform: scale(1.05); }
.pc-badge {
  position: absolute;
  top: 12px;
  left: -4px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px 4px;
  transform: skewX(var(--skew));
}
.pc-badge > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }
.pc-badge.sale { background: var(--red); }
.pc-quick {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tr), transform var(--tr), background var(--tr);
}
.pc-quick:hover { background: var(--red); }
.product-card:hover .pc-quick { opacity: 1; transform: none; }
.pc-body { padding: 16px clamp(13px, 1.3vw, 20px) 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pc-cat {
  font-family: var(--cond);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--ink);
}
.pc-spec { font-size: 13px; color: var(--steel); line-height: 1.45; margin-bottom: 4px; }
.pc-price { margin-top: auto; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pc-price .price { font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; }
.pc-price .old { font-size: 14px; color: var(--muted); text-decoration: line-through; font-weight: 500; }

/* ---------- слайдер ---------- */
.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: clamp(12px, 1.6vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.slider > * { scroll-snap-align: start; }
.slider::-webkit-scrollbar { height: 4px; }
.slider::-webkit-scrollbar-thumb { background: var(--line); }
.slider-nav { display: flex; gap: 8px; }
.slider-btn {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  transition: background var(--tr), color var(--tr), border-color var(--tr), opacity var(--tr);
}
.slider-btn svg { width: 20px; height: 20px; }
.slider-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.slider-btn[disabled] { opacity: 0.28; pointer-events: none; }

/* ---------- баннер-сплит (о бренде) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(20px, 3.4vw, 64px);
}
.split-media { position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-media .badge-num {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px 14px;
  transform: skewX(var(--skew));
  box-shadow: var(--shadow);
}
.split-media .badge-num b {
  display: block;
  transform: skewX(calc(-1 * var(--skew)));
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}
.split-media .badge-num span {
  display: block;
  transform: skewX(calc(-1 * var(--skew)));
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.split-text { display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { font-size: clamp(30px, 4.2vw, 54px); margin-bottom: 20px; }
.split-text p { color: var(--steel); margin-bottom: 16px; max-width: 54ch; }
.section.dark .split-text p { color: rgba(255, 255, 255, 0.7); }
.split-text .btn { align-self: flex-start; margin-top: 12px; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(18px, 3vw, 48px);
  margin: 26px 0 6px;
  justify-content: start;
}
.mini-stats b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--red);
}
.mini-stats span {
  font-family: var(--cond);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.section.dark .mini-stats span { color: rgba(255, 255, 255, 0.6); }

/* ---------- фотополоса «клуб и мастерская» ---------- */
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.2vw, 18px); }
.band-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%, 0 26px);
}
.band-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity var(--tr);
}
.band-tile:hover img { transform: scale(1.05); opacity: 1; }
.band-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.8) 6%, rgba(10, 11, 13, 0.05) 55%);
}
.band-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px clamp(16px, 2vw, 26px); color: #fff; }
.band-num {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-variant-numeric: lining-nums tabular-nums;
  display: block;
  margin-bottom: 6px;
}
.band-title { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); text-transform: uppercase; line-height: 1.08; }
.band-desc { font-size: 14px; color: rgba(255, 255, 255, 0.76); margin-top: 8px; line-height: 1.5; }

/* ---------- преимущества ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 30px); }
.feature {
  border-top: 3px solid var(--ink);
  padding-top: 20px;
  transition: border-color var(--tr);
}
.feature:hover { border-color: var(--red); }
.feature svg { width: 34px; height: 34px; color: var(--red); margin-bottom: 16px; }
.feature h3 { font-size: clamp(19px, 1.8vw, 24px); font-weight: 500; margin-bottom: 9px; }
.feature p { color: var(--steel); font-size: 15px; line-height: 1.55; }
.section.dark .feature { border-color: rgba(255, 255, 255, 0.28); }
.section.dark .feature:hover { border-color: var(--red); }
.section.dark .feature p { color: rgba(255, 255, 255, 0.66); }

/* ---------- отзывы ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 26px); }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
  transform-origin: left top;
}
.stars { display: flex; gap: 3px; color: var(--red); }
.stars svg { width: 16px; height: 16px; }
.review p { color: var(--graphite); font-size: 15px; line-height: 1.6; flex: 1; }
.review-who { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.review-who b { font-family: var(--display); font-weight: 500; font-size: 18px; text-transform: uppercase; }
.review-who span { font-family: var(--cond); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ---------- подписка ---------- */
.subscribe { position: relative; overflow: hidden; }
.subscribe-in { position: relative; z-index: 1; max-width: 720px; }
.subscribe h2 { font-size: clamp(30px, 4.6vw, 58px); margin-bottom: 16px; }
.subscribe p { color: rgba(255, 255, 255, 0.72); margin-bottom: 26px; max-width: 50ch; }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-form input {
  flex: 1 1 260px;
  min-width: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 15px 18px;
  transition: border-color var(--tr);
}
.nl-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.nl-form input:focus { outline: none; border-color: var(--red); }
.nl-done {
  font-family: var(--cond);
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-left: 4px solid var(--red);
  padding-left: 16px;
}

/* ---------- футер ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding-top: clamp(46px, 6vw, 76px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: clamp(26px, 3vw, 48px);
  padding-bottom: clamp(34px, 4vw, 56px);
}
.f-brand .logo { color: #fff; margin-bottom: 16px; }
.f-brand p { font-size: 15px; line-height: 1.6; max-width: 40ch; }
.footer-col h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.footer-col a { transition: color var(--tr); }
.footer-col a:hover { color: var(--red); }
.footer-col .big {
  font-family: var(--body);
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  font-variant-numeric: lining-nums tabular-nums;
}
.footer-demo {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-block: 20px 26px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}
.footer-demo a { color: var(--red); border-bottom: 1px solid rgba(224, 31, 38, 0.5); }
.footer-demo a:hover { color: #fff; border-color: #fff; }

/* ---------- корзина-drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 92vw);
  background: var(--paper);
  z-index: 130;
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.cd-head h3 { font-size: 24px; font-weight: 600; }
.cd-body { flex: 1; overflow-y: auto; padding: 8px var(--gutter) 16px; }
.cd-empty { padding: 56px 0; text-align: center; color: var(--muted); font-size: 15px; line-height: 1.7; }
.cd-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cd-item img { width: 92px; height: 69px; object-fit: cover; }
.cd-item .n { font-family: var(--display); font-weight: 500; font-size: 16px; text-transform: uppercase; line-height: 1.15; }
.cd-item .s { font-family: var(--cond); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.cd-item .p { font-weight: 700; margin-top: 6px; font-variant-numeric: tabular-nums; }
.qty-ctl { display: inline-flex; align-items: center; border: 1px solid var(--line); margin-top: 8px; }
.qty-ctl button { width: 32px; height: 32px; display: grid; place-items: center; font-size: 17px; transition: background var(--tr), color var(--tr); }
.qty-ctl button:hover { background: var(--ink); color: #fff; }
.qty-ctl .q { min-width: 30px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; font-size: 15px; }
.cd-remove { align-self: start; color: var(--muted); font-size: 21px; line-height: 1; padding: 4px; transition: color var(--tr); }
.cd-remove:hover { color: var(--red); }
.cd-foot { border-top: 1px solid var(--line); padding: 18px var(--gutter) 24px; display: flex; flex-direction: column; gap: 12px; }
.cd-total { display: flex; align-items: baseline; justify-content: space-between; }
.cd-total span { font-family: var(--cond); font-size: 18px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.cd-total b { font-size: 26px; font-family: var(--body); font-weight: 700; font-variant-numeric: tabular-nums; }
.cd-note { font-size: 13px; color: var(--muted); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  font-family: var(--cond);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  border-left: 4px solid var(--red);
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- страницы: шапка страницы ---------- */
.page-head { padding-block: clamp(26px, 3.6vw, 52px) clamp(20px, 2.6vw, 34px); border-bottom: 1px solid var(--line); }
.crumbs { font-family: var(--cond); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.crumbs a { transition: color var(--tr); }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--line); }
.page-title { font-size: clamp(34px, 5.6vw, 68px); font-weight: 600; }
.page-sub { color: var(--steel); margin-top: 10px; max-width: 60ch; }

/* ---------- каталог ---------- */
.catalog-layout { display: grid; grid-template-columns: 262px 1fr; gap: clamp(20px, 3vw, 46px); align-items: start; padding-block: clamp(24px, 3vw, 44px) var(--section); }
.filters { position: sticky; top: 126px; display: flex; flex-direction: column; gap: 26px; }
.f-close { display: none; }
.f-group { border-top: 2px solid var(--ink); padding-top: 14px; }
.f-group h4 { font-family: var(--display); font-weight: 500; font-size: 18px; text-transform: uppercase; margin-bottom: 12px; }
.f-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 15px;
  transition: color var(--tr);
}
.f-option:hover { color: var(--red); }
.f-option input { accent-color: var(--red); width: 16px; height: 16px; flex: none; }
.f-option .qty { margin-left: auto; font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 10px 11px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  transition: border-color var(--tr);
}
.price-inputs input:focus { outline: none; border-color: var(--ink); }
.price-inputs span { color: var(--muted); }
.f-reset {
  margin-top: 14px;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--tr), border-color var(--tr);
}
.f-reset:hover { color: var(--red); border-color: var(--red); }

.catalog-top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.found { font-family: var(--cond); font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sort-select {
  margin-left: auto;
  border: 1px solid var(--line);
  padding: 11px 14px;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--paper);
  transition: border-color var(--tr);
}
.sort-select:focus { outline: none; border-color: var(--ink); }
.filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  padding: 10px 16px;
  font-family: var(--cond);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.empty-state { padding: 60px 0; text-align: center; color: var(--muted); }
.empty-state b { display: block; font-family: var(--display); font-size: 26px; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }

/* ---------- карточка товара (страница) ---------- */
.product-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 3.4vw, 60px); padding-block: clamp(24px, 3vw, 44px) var(--section); align-items: start; }
.gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 126px; }
.gal-main { position: relative; background: var(--mist); aspect-ratio: 4 / 3; overflow: hidden; }
.gal-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs { display: flex; gap: 12px; }
.gal-thumb { width: 108px; aspect-ratio: 4 / 3; overflow: hidden; border: 2px solid transparent; transition: border-color var(--tr); background: var(--mist); }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb.on { border-color: var(--red); }

.p-cat { font-family: var(--cond); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.p-title { font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; }
.p-art { font-family: var(--cond); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.p-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 22px 0 6px; }
.p-price { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.p-old { font-size: 19px; color: var(--muted); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.p-save { background: var(--red); color: #fff; font-family: var(--cond); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px 3px; transform: skewX(var(--skew)); }
.p-save > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); font-variant-numeric: tabular-nums; }
.p-stock { font-family: var(--cond); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; color: #1d7d4a; display: flex; align-items: center; gap: 8px; }
.p-stock::before { content: ""; width: 8px; height: 8px; background: #1d7d4a; border-radius: 50%; }
.p-desc { color: var(--steel); margin: 20px 0 24px; line-height: 1.65; }
.opt-block { margin-bottom: 22px; }
.opt-label { font-family: var(--cond); font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 10px; }
.opt-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-chip {
  min-width: 52px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.opt-chip:hover { border-color: var(--ink); }
.opt-chip.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.buy-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.buy-row .qty-ctl { margin-top: 0; border-width: 2px; border-color: var(--line); }
.buy-row .qty-ctl button { width: 46px; height: 100%; min-height: 52px; }
.p-usp { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.p-usp li { display: flex; gap: 12px; font-size: 15px; color: var(--steel); }
.p-usp svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 2px; }

.specs { margin-top: clamp(30px, 4vw, 52px); }
.specs h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 18px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line-soft); }
.spec-table td { padding: 12px 0; font-size: 15px; vertical-align: top; }
.spec-table td:first-child { color: var(--muted); width: 46%; padding-right: 16px; }
.spec-table td:last-child { font-weight: 500; font-variant-numeric: lining-nums tabular-nums; }

/* ---------- checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(24px, 3.4vw, 56px); padding-block: clamp(24px, 3vw, 44px) var(--section); align-items: start; }
.co-block { margin-bottom: clamp(28px, 3.4vw, 44px); }
.co-block h3 { font-size: clamp(21px, 2.2vw, 28px); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.co-step {
  width: 34px;
  height: 34px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transform: skewX(var(--skew));
  flex: none;
}
.co-step > span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--cond); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.field input, .field textarea {
  border: 1px solid var(--line);
  padding: 13px 15px;
  transition: border-color var(--tr);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.radio-list { display: flex; flex-direction: column; gap: 10px; }
.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid var(--line);
  padding: 15px 17px;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr);
}
.radio-card:hover { border-color: var(--graphite); }
.radio-card input { accent-color: var(--red); margin-top: 3px; width: 17px; height: 17px; flex: none; }
.radio-card:has(input:checked) { border-color: var(--red); background: var(--red-soft); }
.rc-body { flex: 1; }
.rc-title { font-family: var(--display); font-weight: 500; font-size: 17px; text-transform: uppercase; }
.rc-desc { font-size: 14px; color: var(--steel); margin-top: 3px; }
.rc-price { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }

.summary { border: 2px solid var(--ink); padding: clamp(20px, 2.4vw, 30px); position: sticky; top: 126px; }
.summary h3 { font-size: 24px; margin-bottom: 18px; }
.sum-items { display: flex; flex-direction: column; gap: 14px; max-height: 340px; overflow-y: auto; margin-bottom: 18px; }
.sum-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: start; }
.sum-item img { width: 64px; height: 48px; object-fit: cover; }
.sum-item .n { font-size: 14px; font-weight: 600; line-height: 1.3; }
.sum-item .s { font-family: var(--cond); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.sum-item .p { font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.sum-rows { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; color: var(--steel); }
.sum-row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.sum-row.total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; align-items: baseline; }
.sum-row.total span { font-family: var(--cond); font-size: 19px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.sum-row.total b { font-size: 27px; font-weight: 700; }
.sum-note { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.55; }

.thanks { text-align: center; padding: clamp(60px, 10vw, 130px) 0; max-width: 620px; margin-inline: auto; }
.thanks-mark { width: 84px; height: 84px; margin: 0 auto 26px; background: var(--red); display: grid; place-items: center; transform: skewX(var(--skew)); }
.thanks-mark svg { width: 40px; height: 40px; color: #fff; transform: skewX(calc(-1 * var(--skew))); }
.thanks h1 { font-size: clamp(32px, 5vw, 58px); margin-bottom: 16px; }
.thanks p { color: var(--steel); margin-bottom: 12px; }
.thanks .order-no { font-family: var(--body); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--ink); }
.thanks .btn { margin-top: 20px; }

.co-empty { text-align: center; padding: clamp(50px, 8vw, 100px) 0; }
.co-empty h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.co-empty p { color: var(--steel); margin-bottom: 24px; }

/* ---------- сервис-полоса ---------- */
.strip { background: var(--red); color: #fff; position: relative; overflow: hidden; }
.strip-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: clamp(26px, 3vw, 40px);
  position: relative;
  z-index: 1;
}
.strip h3 { font-size: clamp(24px, 3vw, 38px); max-width: 22ch; }
.strip p { color: rgba(255, 255, 255, 0.85); max-width: 44ch; margin-top: 8px; font-size: 15px; }
.strip .btn-light { flex: none; }

/* ============================================================
   АДАПТИВ — переопределения строго после базовых правил
   ============================================================ */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 232px 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .burger { display: grid; }
  .header-phone { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .band-tile { aspect-ratio: 3 / 4; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media img { min-height: 260px; max-height: 420px; }
  .split-media .badge-num { left: 14px; }
  .product-layout { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(380px, 90vw);
    background: var(--paper);
    z-index: 125;
    transform: translateX(101%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    padding: 22px var(--gutter) 34px;
    overflow-y: auto;
    top: 0;
  }
  .filters.open { transform: none; }
  .f-close {
    display: block;
    align-self: flex-end;
    font-family: var(--cond);
    font-size: 17px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 0 10px;
  }
  .filters-toggle { display: inline-flex; }
  .hero-scroll { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .topbar-in { font-size: 13.5px; letter-spacing: 0.04em; padding-block: 6px; gap: 9px; }
  .tb-wide { display: none; }
  .logo { font-size: 25px; }
  .header-in { min-height: 62px; }
  .hero-content { padding-top: 96px; }
  .hero h1 { font-size: clamp(40px, 12vw, 72px); max-width: 11ch; }
  .hero-cta .btn { flex: 1 1 100%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-quick { opacity: 1; transform: none; font-size: 14px; padding: 10px 6px; left: 8px; right: 8px; bottom: 8px; }
  .product-card:hover { transform: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .band-tile { aspect-ratio: 16 / 11; clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: repeat(3, auto); gap: 18px; }
  .gal-thumb { width: 84px; }
  .cd-item { grid-template-columns: 74px 1fr auto; }
  .cd-item img { width: 74px; height: 56px; }
  .section-head { align-items: flex-start; }
  .cat-tile { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); }
}

@media (max-width: 400px) {
  .pc-body { padding: 12px 11px 16px; }
  .btn { padding: 13px 20px; font-size: 16px; }
  .mini-stats b { font-size: 26px; }
  .mini-stats span { font-size: 13px; letter-spacing: 0.06em; }
}
