:root {
  --bg: #f2f3f5;
  --surface: #ffffff;
  --ink: #111113;
  --muted: #6b6e76;
  --line: rgba(17, 17, 19, 0.08);
  --accent: #1a66d6;
  --accent-ink: #ffffff;
  --ok: #1f8a4c;
  --ok-bg: #e8f6ee;
  --wait: #6b6e76;
  --wait-bg: #eceef1;
  --out: #9a3b3b;
  --out-bg: #f8ecec;
  --hit: #c43d3d;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 17, 19, 0.06);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --nav-h: 68px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  color-scheme: light only;
  background: #f2f3f5;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: scroll;
  overscroll-behavior-x: none;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f2f3f5;
  color: #111113;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  overscroll-behavior-x: none;
  position: relative;
}
html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.topbar {
  background: #eceef1;
  color: #3a3d44;
  font-size: 13px;
  border-bottom: 1px solid rgba(17, 17, 19, 0.06);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
}
.topbar a { color: #111113; }
.topbar a:hover { color: #1a66d6; }
.topbar span { color: #6b6e76; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #e4e6ea;
  width: 100%;
}
.header-top {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111113;
  flex-shrink: 0;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.brand span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #111113;
}
.search-wrap { flex: 1; max-width: 460px; }
.search {
  height: 42px;
  width: 100%;
  border: 1px solid #d5d8de;
  background: #f6f7f8;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: #111113;
}
.search::placeholder { color: #8a8e96; }
.search:focus {
  outline: none;
  background: #fff;
  border-color: #111113;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 13px;
  font-weight: 650;
  color: #111113;
  white-space: nowrap;
  line-height: 1.25;
}
.header-phone span {
  color: #6b6e76;
  font-weight: 550;
  margin-right: 6px;
}
.header-phone:hover { color: #1a66d6; }
.icon-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #d5d8de;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #111113;
}
.icon-btn:hover { background: #f4f5f7; }
.icon-btn-dark {
  background: #111113;
  color: #fff;
  border-color: #111113;
}
.icon-btn-dark:hover { background: #2a2c30; color: #fff; }
.ico {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}
.icon-btn-call { display: none !important; }
.header-search { display: none; }
.nav-phone { display: none; }
.cart-btn { position: relative; padding-right: 16px; }
.cart-btn.has-items {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111113;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e11d48;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
  pointer-events: none;
}
.cart-badge[hidden] { display: none !important; }
.cart-btn.is-bump .cart-badge {
  animation: cart-pop .35s ease;
}
@keyframes cart-pop {
  0% { transform: scale(.6); }
  55% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.burger { display: none; }
.burger-lines,
.burger-lines::before,
.burger-lines::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #111113;
  position: relative;
  transition: transform .22s var(--ease), opacity .18s ease, top .22s var(--ease);
}
.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger-lines::before { top: -5px; }
.burger-lines::after { top: 5px; }
.burger[aria-expanded="true"] .burger-lines { background: transparent; }
.burger[aria-expanded="true"] .burger-lines::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger-lines::after { top: 0; transform: rotate(-45deg); }
.nav-sheet,
.nav-sheet-group { display: contents; }
.nav-kicker,
.nav-sheet-head,
.nav-cats,
.nav-sheet-cta { display: none; }
.nav-backdrop { display: none; }
.nav-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 0 12px;
  overflow-x: auto;
  border-top: 1px solid #f0f1f3;
  padding-top: 10px;
}
.nav-link {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #3a3d44;
  padding: 4px 0 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover {
  color: #111113;
  background: none;
}
.nav-link.is-on {
  background: none;
  color: #111113;
  font-weight: 700;
  border-bottom-color: #111113;
}
.nav-search { display: none; }

.hero {
  position: relative;
  min-height: min(72dvh, 640px);
  border-radius: 24px;
  overflow: hidden;
  margin: 20px auto 48px;
  background: #1a1b1e;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.hero-slide.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.62) 100%);
}
.hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px 64px;
  max-width: 720px;
}
.hero h1,
.hero-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: #fff;
  overflow-wrap: anywhere;
  max-width: 16ch;
}
.hero p { margin: 0 0 20px; color: rgba(255,255,255,.86); max-width: 44ch; }
.hero .hero-title { color: #fff; margin: 0 0 10px; }
.hero-nav {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dots { display: flex; gap: 6px; }
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
}
.hero-dots button.is-on { background: #fff; width: 22px; }
.hero-arrow {
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.hero-arrow:hover { background: rgba(0,0,0,.4); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(255,255,255,.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #1558b8; }
.btn-dark { background: #111113; color: #fff; }
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn-line {
  background: #fff;
  border: 1px solid #111113;
  color: #111113;
}
.btn-line:hover { background: #111113; color: #fff; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.section { padding: 8px 0 56px; }
.section h2 {
  margin: 0 0 6px;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.lead { color: var(--muted); margin: 0 0 22px; font-size: 16px; line-height: 1.5; }

.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-tile {
  position: relative;
  min-height: 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat-tile:first-child {
  grid-column: span 2;
  min-height: 320px;
}
.cat-tile img {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 78%;
  height: 86%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}
.cat-tile:first-child img {
  width: 62%;
  height: 90%;
}
.cat-tile-mac img {
  width: 88%;
  height: 88%;
  right: 0;
}
.cat-tile strong,
.cat-tile span {
  position: relative;
  z-index: 1;
}
.cat-tile strong { font-size: 22px; letter-spacing: -0.03em; color: #111113; }
.cat-tile span { color: var(--muted); font-size: 13px; }

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.brand-row a {
  background: #111113;
  color: #ffffff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #111113;
}
.brand-row a:hover {
  background: #2a2c30;
  color: #ffffff;
}
.brand-row a.is-more {
  background: #ffffff;
  color: #111113;
}
.brand-row a.is-more:hover {
  background: #111113;
  color: #ffffff;
}

.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dir-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  min-height: 96px;
}
.dir-card strong {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.dir-card span { color: var(--muted); font-size: 13px; }
.dir-card:hover { border-color: #111113; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}
.card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 14px 8px;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.card-actions .btn {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  font-size: 13px;
}
.card-compare {
  margin-top: 2px;
  border: 0;
  background: none;
  padding: 6px 0 0;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  color: #1a66d6;
  cursor: pointer;
  text-align: left;
}
.card-compare.is-on { color: #111113; }
.card-compare:hover { text-decoration: underline; }
#compare-btn { position: relative; }
.cmp-empty {
  background: #fff;
  border-radius: 18px;
  padding: 36px 20px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.cmp-table-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  min-width: 640px;
}
.cmp-table th, .cmp-table td {
  border-bottom: 1px solid #eceef1;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  width: 25%;
}
.cmp-table th { background: #fafafa; }
.cmp-photo {
  width: 100%;
  max-width: 160px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}
.cmp-name { display: block; font-weight: 700; margin-bottom: 4px; }
.cmp-price { font-weight: 700; }
.cmp-rm {
  margin-top: 8px;
  border: 0;
  background: none;
  color: #9a3b3b;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.cmp-legend {
  margin: 0 0 10px;
  font-size: 13px;
  color: #6b6e76;
}
.cmp-table tr.is-diff th {
  background: #fff8e8;
}
.cmp-table td.is-diff {
  background: #fff3cc;
  font-weight: 650;
}
.card-brand { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.card-body h3 { margin: 0; font-size: 16px; letter-spacing: -0.03em; overflow-wrap: anywhere; }
.price { font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }
.price-request { color: var(--muted); font-weight: 500; font-size: 15px; letter-spacing: 0; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #1a66d6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 9px;
}
.st {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  width: max-content;
}
.st-in { background: var(--ok-bg); color: var(--ok); }
.st-out { background: var(--out-bg); color: var(--out); }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust > a,
.trust > article {
  display: block;
  padding: 22px 22px 24px;
  border-left: 1px solid #eceef1;
  color: inherit;
  min-height: 100%;
}
.trust > a:first-child,
.trust > article:first-child { border-left: 0; }
.trust > a:hover { background: #f7f8fa; }
.trust h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.02em; line-height: 1.25; }
.trust p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.45; }

.warranty-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.warranty-term {
  padding: 28px 26px 32px;
  background: #111113;
  color: #fff;
}
.warranty-term b {
  display: block;
  font-size: clamp(48px, 6vw, 64px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  font-weight: 700;
}
.warranty-term span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}
.warranty-head-copy {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.warranty-head-copy p {
  margin: 0 0 16px;
  max-width: 48ch;
  font-size: 16px;
  color: #3a3d44;
}
.warranty-phones { display: flex; flex-wrap: wrap; gap: 8px; }
.warranty-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.warranty-col {
  background: #fff;
  border-radius: 20px;
  padding: 24px 26px 20px;
  box-shadow: var(--shadow);
}
.warranty-col h2,
.warranty-note h2 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.warranty-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.warranty-col li {
  padding: 11px 0;
  border-top: 1px solid #eceef1;
  font-size: 15px;
  color: #22242a;
}
.warranty-col li:first-child { border-top: 0; padding-top: 0; }
.warranty-block-title {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.warranty-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.warranty-steps article {
  padding: 22px 24px 24px;
  border-left: 1px solid #eceef1;
}
.warranty-steps article:first-child { border-left: 0; }
.warranty-steps span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6b6e76;
}
.warranty-steps h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.02em; line-height: 1.25; }
.warranty-steps p { margin: 0; color: #3a3d44; font-size: 17px; line-height: 1.45; }
.warranty-note {
  background: #fff;
  border-radius: 20px;
  padding: 22px 26px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.warranty-note p {
  margin: 0;
  max-width: 68ch;
  color: #3a3d44;
  font-size: 15px;
}

.requisites {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 28px auto 56px;
}
.requisites-head {
  padding: 22px 26px 14px;
  border-bottom: 1px solid #eceef1;
}
.requisites-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.requisites-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 56ch;
}
.req-table {
  width: 100%;
  border-collapse: collapse;
}
.req-table th,
.req-table td {
  text-align: left;
  padding: 14px 26px;
  border-top: 1px solid #eceef1;
  vertical-align: middle;
  font-size: 15px;
}
.req-table tr:first-child th,
.req-table tr:first-child td { border-top: 0; }
.req-table th {
  width: 28%;
  color: #6b6e76;
  font-weight: 500;
  white-space: nowrap;
}
.req-table td {
  color: #111113;
}
.req-table b {
  font-weight: 600;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.req-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.req-copy button {
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #d5d8de;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #111113;
}
.req-copy button:hover { background: #f4f5f7; }

.legal-docs { margin: 28px auto 48px; }
.legal-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.legal-docs-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}
.legal-docs-list a:hover { background: #f7f8fa; }
.legal-docs-list em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6b6e76;
  border: 1px solid #e4e6ea;
  border-radius: 999px;
  padding: 4px 10px;
}

.coop-kinds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.coop-kinds article {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 24px;
  box-shadow: var(--shadow);
}
.coop-kinds h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.coop-kinds p { margin: 0; color: #3a3d44; font-size: 17px; line-height: 1.45; }
.coop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 56px;
}
.coop-terms,
.coop-form {
  background: #fff;
  border-radius: 20px;
  padding: 24px 26px 26px;
  box-shadow: var(--shadow);
}
.coop-terms h2,
.coop-form h2 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.coop-form > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.coop-terms ul {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}
.coop-terms li {
  padding: 11px 0;
  border-top: 1px solid #eceef1;
  font-size: 15px;
  color: #22242a;
}
.coop-terms li:first-child { border-top: 0; padding-top: 0; }

.seo-lead {
  margin: 8px 0 12px;
  max-width: 54ch;
  color: #3a3d44;
  font-size: 15px;
}
.seo-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 36px 48px;
  align-items: start;
}
.seo-block:not(:has(.seo-aside)):not(:has(.seo-visual)) {
  grid-template-columns: 1fr;
}
.seo-block-photo {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  align-items: stretch;
  gap: 20px;
}
.seo-block-photo .seo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 24px;
  padding: 36px 38px 40px;
  box-shadow: var(--shadow);
}
.seo-block-photo .seo-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.seo-block-photo .seo-copy p {
  max-width: none;
  font-size: 16px;
  line-height: 1.65;
  color: #3a3d44;
}
.seo-visual {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  background: #eceef1;
  box-shadow: var(--shadow);
}
.seo-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.seo-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  background: rgba(17, 17, 19, 0.74);
  color: #fff;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.pdp-facts {
  display: grid;
  gap: 10px;
}
.pdp-facts > a {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.pdp-facts h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.pdp-facts p { margin: 0; font-size: 17px; color: #3a3d44; max-width: none; line-height: 1.45; }
.pdp-facts > a:hover h3 { color: var(--accent); }
.seo-copy h2 { margin: 0 0 14px; }
.seo-block p { max-width: 62ch; color: #3a3d44; }
.seo-copy a { text-decoration: underline; text-underline-offset: 2px; }
.seo-aside { display: grid; gap: 12px; }
.seo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 118px 118px;
  gap: 8px;
}
.seo-mosaic a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 0;
}
.seo-mosaic a:first-child { grid-row: 1 / span 2; }
.seo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 60%;
  padding: 14px 10px 28px;
}
.seo-mosaic span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.seo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-actions .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
@media (max-width: 860px) {
  .seo-block { grid-template-columns: 1fr; gap: 22px; }
  .seo-block-photo .seo-copy { padding: 22px 20px 24px; }
  .seo-visual img { min-height: 280px; aspect-ratio: 4 / 3; }
  .seo-mosaic { grid-template-rows: 140px 140px; }
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-item p { margin: 10px 0 0; color: #3a3d44; }

.rv-section { overflow: visible; padding-bottom: 72px; }
.rv-head {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.rv-head h2 { margin: 0; }
.rv-nav { display: flex; gap: 8px; flex-shrink: 0; }
.rv-arrow {
  min-width: 44px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #e4e6ea;
  border-radius: 999px;
  background: #fff;
  color: #111113;
  font-size: 13px;
  font-weight: 600;
}
.rv-arrow:hover { border-color: #111113; }
.rv-arrow:disabled { opacity: .35; pointer-events: none; }
.rv-slider {
  overflow: visible;
  padding: 8px 0 8px;
}
.rv-track {
  display: flex;
  gap: 14px;
  overflow: visible;
  padding: 44px 6px 72px;
  margin: -36px -6px -56px;
  transform: translate3d(0, 0, 0);
  transition: transform .6s var(--ease);
  will-change: transform;
  touch-action: pan-y;
}
.rv-slider.is-drag .rv-track { transition: none; }
.rv-slider .rv-card {
  flex: 0 0 calc((100% - 42px) / 4);
  max-width: calc((100% - 42px) / 4);
}
.rv-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 12px 2px 28px;
}
.rv-page .rv-row { padding-top: 8px; }
.rv-card {
  position: relative;
  isolation: isolate;
  min-height: 352px;
  padding: 26px 22px 20px;
  border-radius: 28px;
  background: #ececec;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transform: translateY(0);
  transition:
    transform .75s cubic-bezier(.12, .7, .08, 1),
    box-shadow .75s cubic-bezier(.12, .7, .08, 1);
}
.rv-wash {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  border-radius: 0 0 28px 28px;
  background:
    radial-gradient(42% 48% at 18% 86%, rgba(255, 108, 16, .95) 0%, rgba(255, 108, 16, 0) 70%),
    radial-gradient(46% 52% at 84% 92%, rgba(255, 196, 58, .92) 0%, rgba(255, 196, 58, 0) 68%),
    radial-gradient(38% 42% at 52% 72%, rgba(255, 158, 64, .62) 0%, rgba(255, 158, 64, 0) 72%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 28%, #000 62%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 28%, #000 62%);
  opacity: 0;
  transform: translateY(28%);
  transition:
    opacity .8s cubic-bezier(.12, .7, .08, 1),
    transform .8s cubic-bezier(.12, .7, .08, 1);
  pointer-events: none;
  z-index: 0;
}
.rv-card:hover,
.rv-card.is-on,
.rv-card:focus-visible {
  transform: translateY(-36px);
  box-shadow: 0 30px 54px rgba(190, 86, 16, .16);
  z-index: 2;
}
.rv-card:hover .rv-wash,
.rv-card.is-on .rv-wash,
.rv-card:focus-visible .rv-wash {
  opacity: 1;
  transform: translateY(0);
  animation: rv-glow 3.2s ease-in-out infinite alternate;
}
@keyframes rv-glow {
  0% {
    background:
      radial-gradient(42% 48% at 16% 88%, rgba(255, 108, 16, .95) 0%, rgba(255, 108, 16, 0) 70%),
      radial-gradient(46% 52% at 86% 90%, rgba(255, 196, 58, .9) 0%, rgba(255, 196, 58, 0) 68%),
      radial-gradient(38% 42% at 50% 74%, rgba(255, 158, 64, .58) 0%, rgba(255, 158, 64, 0) 72%);
  }
  100% {
    background:
      radial-gradient(48% 54% at 24% 80%, rgba(255, 124, 22, .9) 0%, rgba(255, 124, 22, 0) 72%),
      radial-gradient(50% 56% at 76% 96%, rgba(255, 186, 48, .95) 0%, rgba(255, 186, 48, 0) 70%),
      radial-gradient(42% 46% at 58% 68%, rgba(255, 168, 72, .7) 0%, rgba(255, 168, 72, 0) 74%);
  }
}
.rv-quote,
.rv-text,
.rv-who,
.rv-stars { position: relative; z-index: 1; }
.rv-stars {
  display: flex;
  gap: 2px;
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: 0;
}
.rv-star {
  font-size: 15px;
  color: rgba(17, 17, 19, 0.18);
}
.rv-star.is-on { color: #111113; }
.rv-rate {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.rv-rate legend {
  padding: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6e76;
}
.rv-rate-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
  margin-top: 6px;
}
.rv-rate-stars input { position: absolute; opacity: 0; pointer-events: none; }
.rv-rate-stars label {
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: rgba(17, 17, 19, 0.18);
  transition: color .15s ease, transform .15s ease;
}
.rv-rate-stars label:hover,
.rv-rate-stars label:hover ~ label,
.rv-rate-stars input:checked ~ label,
.rv-rate-stars input:focus-visible + label {
  color: #111113;
}
.rv-rate-stars label:hover { transform: scale(1.08); }
.rv-quote {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.035em;
  color: #111113;
}
.rv-text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5c5f66;
}
.rv-who {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 28px;
}
.rv-who b {
  font-size: 14px;
  font-weight: 650;
  color: #111113;
}
.rv-who i {
  font-style: normal;
  font-size: 13px;
  color: #6b6e76;
}
.reviews-more {
  display: inline-flex;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111113;
  border-bottom: 1px solid #111113;
  padding-bottom: 1px;
}
.reviews-more:hover { color: #1a66d6; border-bottom-color: #1a66d6; }
.rv-write-jump {
  display: inline;
  margin-left: 6px;
  font-weight: 650;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.rv-write-jump:hover { color: #1a66d6; }
.rv-compose {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px 36px;
  align-items: stretch;
  min-height: 0;
  margin: 0 0 18px;
  padding: 28px 26px 22px;
  cursor: default;
}
.rv-compose:hover,
.rv-compose:focus-visible {
  transform: none;
  box-shadow: none;
  z-index: 1;
}
.rv-compose .rv-wash {
  opacity: .42;
  transform: none;
  height: 64%;
  animation: rv-glow 4s ease-in-out infinite alternate;
}
.rv-compose-copy { position: relative; z-index: 1; display: flex; flex-direction: column; }
.rv-compose-copy .rv-quote { font-size: clamp(26px, 3vw, 34px); max-width: 8ch; }
.rv-compose-copy .rv-text { max-width: 28ch; }
.rv-compose-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 0;
}
.rv-write-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rv-field { display: grid; gap: 5px; min-width: 0; }
.rv-field > span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6e76;
}
.rv-field input,
.rv-field textarea {
  width: 100%;
  border: 0;
  background: rgba(255, 255, 255, .72);
  border-radius: 14px;
  padding: 11px 14px;
  color: #111113;
  outline: none;
}
.rv-field textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.45;
}
.rv-field input:focus,
.rv-field textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #111113;
}
.rv-write-note {
  margin: 0;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.rv-write-note.is-ok { background: var(--ok-bg); color: var(--ok); }
.rv-write-note.is-err { background: var(--out-bg); color: var(--out); }
.rv-write-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
}
.rv-write-foot .consent {
  margin: 0;
  flex: 1 1 auto;
  font-size: 12px;
  color: #5c5f66;
}
.rv-write-foot .btn { flex: 0 0 auto; }
.rv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0 8px;
}
.pager .btn { min-width: 44px; justify-content: center; }
.pager-gap { color: #8a8e96; padding: 0 4px; }
.more-cta .hero-actions { margin-top: 8px; }

.blog-head { padding: 32px 0 8px; }
.blog-head h1 {
  margin: 6px 0 10px;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  max-width: 16ch;
}
.blog-head .lead { max-width: 62ch; color: #3a3d44; }
.blog-kicker {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b6e76;
}
.blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}
.blog-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e6ea;
  font-size: 13px;
  font-weight: 600;
  color: #3a3d44;
}
.blog-chips a:hover { border-color: #111113; color: #111113; }
.blog-chips a.is-on { background: #111113; border-color: #111113; color: #fff; }

.blog-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  margin: 20px auto 22px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.blog-feature-media { background: #ececec; min-height: 100%; overflow: hidden; }
.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.blog-feature:hover .blog-feature-media img { transform: scale(1.035); }
.blog-feature-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.blog-feature-body h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.12;
}
.blog-feature-body p { margin: 0; color: #3a3d44; font-size: 16px; line-height: 1.5; }
.blog-more {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid #111113;
  width: fit-content;
  padding-bottom: 1px;
}
.blog-feature:hover .blog-more { color: #1a66d6; border-bottom-color: #1a66d6; }

.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 8px 0 48px;
}
.blog-list-mini { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.08);
}
.blog-card-media {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #ececec;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ececec;
  transition: transform .7s var(--ease);
}
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 18px 18px 20px; display: grid; gap: 8px; }
.blog-card-body h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.blog-card-body p { margin: 0; color: #3a3d44; font-size: 15px; line-height: 1.45; }
.blog-cat {
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6b6e76;
}
.blog-meta { font-size: 13px; color: var(--muted); }
.blog-head-article { padding-bottom: 18px; }
.blog-head-article h1 { max-width: 18ch; }
.blog-cover { margin: 0 auto 22px; }
.blog-cover img {
  width: 100%;
  height: min(520px, 58vw);
  object-fit: cover;
  border-radius: 24px;
  background: #ececec;
}
.blog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 72ch);
  gap: 40px;
  align-items: start;
  padding-bottom: 12px;
}
.blog-toc {
  position: sticky;
  top: 88px;
  padding: 4px 0 24px;
}
.blog-toc p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b6e76;
}
.blog-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.blog-toc a {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #3a3d44;
}
.blog-toc a:hover { color: #1a66d6; }
.blog-article { padding-bottom: 28px; }
.blog-article h2 {
  margin: 36px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
  scroll-margin-top: 92px;
}
.blog-article h3 {
  margin: 22px 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.blog-article p { margin: 0 0 16px; color: #2a2c30; font-size: 17px; line-height: 1.68; }
.blog-article ul, .blog-article ol { margin: 0 0 18px; padding-left: 22px; color: #2a2c30; font-size: 17px; line-height: 1.6; }
.blog-article li { margin: 0 0 8px; }
.blog-article figure { margin: 28px 0; }
.blog-article figure img {
  width: 100%;
  border-radius: 18px;
  display: block;
  background: #ececec;
}
.blog-article figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
.blog-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 8px auto 36px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.blog-cta h2 { margin: 0 0 6px; font-size: 26px; letter-spacing: -0.04em; }
.blog-cta p { margin: 0; color: #3a3d44; max-width: 56ch; }
.blog-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

@media (max-width: 1180px) {
  .rv-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .rv-card { min-height: 330px; }
  .rv-slider .rv-card {
    flex-basis: calc((100% - 28px) / 3);
    max-width: calc((100% - 28px) / 3);
  }
}

.page-head { padding: 28px 0 18px; }
.page-head h1 { margin: 8px 0 6px; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.045em; }
.crumbs { color: var(--muted); font-size: 13px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }

.catalog-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
  align-items: start;
}
.filters {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  position: sticky;
  top: 88px;
}
.filters h4 { margin: 14px 0 8px; font-size: 13px; }
.filters h4:first-child { margin-top: 0; }
.filters a, .filters label {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: #333;
}
.filters a.is-on { font-weight: 700; }

.brand-picker {
  background: #fff;
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
  margin: 0 0 16px;
}
.brand-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.brand-picker-head h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.brand-picker-reset {
  font-size: 13px;
  font-weight: 650;
  color: #6b6e76;
  white-space: nowrap;
}
.brand-picker-reset:hover { color: #111113; }
.brand-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
}
.brand-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 118px;
  padding: 12px 10px 10px;
  border: 1px solid #eceef1;
  border-radius: 16px;
  background: #fafafa;
  text-align: center;
  color: #111113;
}
.brand-pick:hover { border-color: #111113; background: #fff; }
.brand-pick.is-on {
  background: #111113;
  border-color: #111113;
  color: #fff;
}
.brand-pick-logo {
  width: 42px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8e96;
}
.brand-pick-logo svg { width: 100%; height: 100%; display: block; color: inherit; }
.brand-pick-logo svg [fill]:not([fill="none"]) { fill: currentColor; }
.brand-pick-logo svg [stroke]:not([stroke="none"]) { stroke: currentColor; }
.brand-pick-ini {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #8a8e96;
}
.brand-pick strong {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.brand-pick span { font-size: 12px; color: #6b6e76; }
.brand-pick.is-on span { color: rgba(255,255,255,.72); }
.brand-pick.is-on .brand-pick-logo,
.brand-pick.is-on .brand-pick-ini { color: #fff; }

.pdp-head { padding-bottom: 14px; }
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 10px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e6ea;
  color: #111113;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
}
.pdp-back svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.pdp-back:hover { background: #f6f7f8; border-color: #d5d8de; }
.pdp {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
}
.pdp-buy h1 {
  margin: 6px 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.pdp-buy .seo-lead { margin: 0 0 12px; color: #3a3d44; }
.pdp-opt { margin-top: 14px; }
.pdp-opt-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}
.pdp-opt .pills { margin: 6px 0 0; }
.pdp-from { margin: -8px 0 14px; font-size: 13px; color: var(--muted); }
.pdp-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.pdp-phones a:hover { color: var(--accent); }
.pdp-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #3a3d44;
}
.pdp-points li { padding-left: 16px; position: relative; }
.pdp-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111113;
}
.pdp-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 18px;
  padding: 8px 18px 12px;
}
.pdp-specs {
  background: #fff;
  border-radius: 18px;
  padding: 8px 22px 12px;
  overflow: visible;
}
.gallery-main {
  background: #ffffff;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumbs button {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f3f4f6;
  padding: 6px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px; }
.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.pill.is-on { border-color: #111113; background: #111113; color: #fff; }
a.pill:hover { border-color: #111113; color: #111113; }
.pill.is-out { opacity: .45; cursor: default; }
.variants-table tr.is-on td { font-weight: 650; }
.variants-table td a { color: inherit; }
.variants-table td a:hover { color: var(--accent); }
.pdp-price { font-size: 32px; font-weight: 700; letter-spacing: -0.04em; margin: 8px 0 16px; }
.specs { width: 100%; border-collapse: collapse; table-layout: auto; }
.specs th, .specs td {
  text-align: left;
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid #eceef1;
  font-size: 14px;
  vertical-align: top;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
  max-width: 100%;
}
.specs tr:last-child th,
.specs tr:last-child td { border-bottom: 0; }
.specs th {
  color: #6b6e76;
  font-weight: 500;
  width: 38%;
  white-space: normal;
}
.specs td { color: #111113; width: 62%; }
.card-specs { margin: 2px 0 4px; }
.card-specs th, .card-specs td {
  padding: 5px 8px 5px 0;
  font-size: 12px;
  border-bottom: 1px solid #f0f1f3;
}
.card-specs th { width: 40%; }
.card-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 2px 0 4px;
  border: 1px solid #eceef1;
  border-radius: 12px;
  overflow: hidden;
  background: #fafbfc;
}
.card-spec-grid > div {
  padding: 7px 9px 8px;
  border-right: 1px solid #eceef1;
  border-bottom: 1px solid #eceef1;
  min-width: 0;
}
.card-spec-grid > div:nth-child(2n) { border-right: 0; }
.card-spec-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.card-spec-grid > div:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}
.card-spec-grid b {
  display: block;
  font-size: 10px;
  font-weight: 650;
  color: #8a8e96;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.card-spec-grid span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.25;
  color: #111113;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cat-only {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 650;
  color: #111113;
}
.cat-chips {
  display: none;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 14px;
  margin-top: -8px;
}
.cat-chips a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e4e6ea;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.cat-chips a.is-on {
  background: #111113;
  color: #fff;
  border-color: #111113;
}
.cat-sort { display: none; }
.pdp-specs {
  background: #fff;
  border-radius: 18px;
  padding: 6px 8px 8px;
  border: 1px solid #eceef1;
  overflow: visible;
}
.pdp-specs .specs th,
.pdp-specs .specs td {
  padding: 13px 16px;
}
.pdp-specs .specs th {
  width: 38%;
  max-width: 44%;
  color: #6b6e76;
  font-weight: 500;
}
.variants-table { margin-top: 18px; display: block; overflow-x: auto; }
.variants-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a8e96;
  white-space: nowrap;
}

.form { display: grid; gap: 10px; }
.form input:not([type="checkbox"]):not([type="radio"]),
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px;
}
.form label { font-size: 13px; color: var(--muted); }

.ck {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 40px;
}
.ck-list { display: grid; gap: 10px; min-width: 0; }
.ck-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
}
.ck-item img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #f6f7f8;
  border-radius: 12px;
}
.ck-info { display: grid; gap: 4px; min-width: 0; }
.ck-info b { font-size: 16px; letter-spacing: -0.03em; }
.ck-var, .ck-unit { color: var(--muted); font-size: 13px; }
.ck-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.ck-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}
.ck-qty span { min-width: 22px; text-align: center; font-weight: 650; }
.ck-sum { text-align: right; display: grid; gap: 6px; justify-items: end; }
.ck-sum b { font-size: 16px; letter-spacing: -0.03em; white-space: nowrap; }
.ck-del {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.ck-trash { display: block; flex-shrink: 0; pointer-events: none; }
.ck-del:hover { color: #9a3b3b; }
.ck-empty {
  background: #fff;
  border-radius: 18px;
  padding: 40px 24px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.ck-empty p { margin: 0; font-size: 18px; color: var(--muted); }
.ck-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  position: sticky;
  top: 88px;
}
.ck-box[hidden] { display: none !important; }
.ck-box h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -0.03em; }
.ck-form { display: grid; gap: 10px; }
.ck-form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.ck-form input:not([type="checkbox"]):not([type="radio"]),
.ck-form textarea,
.ck-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
}
.ck-form textarea { resize: vertical; min-height: 64px; }
.ck-form select {
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111113' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.ck-pick { display: grid; gap: 8px; margin: 4px 0 2px; }
.ck-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ck-opts-pay { grid-template-columns: 1fr 1fr; }
.ck-opt {
  -webkit-appearance: none;
  appearance: none;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
  color: #111113;
  -webkit-text-fill-color: #111113;
  font: inherit;
  text-align: left;
  display: grid;
  align-content: center;
  gap: 2px;
  cursor: pointer;
}
.ck-opt strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.ck-opt span {
  font-size: 12px;
  color: #6b6e76;
  -webkit-text-fill-color: #6b6e76;
}
.ck-opt:hover { border-color: #111113; background: #fff; }
.ck-opt.is-on {
  border-color: #111113;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(17, 17, 19, 0.12);
}
.ck-src-block { margin: 4px 0 2px; }
.ck-form .oc-src { margin-top: 4px; }
.ck-form .oc-src-btn { width: 100%; }
.ck-bill {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #eceef1;
  display: grid;
  gap: 8px;
}
.ck-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.ck-line b { color: var(--ink); font-weight: 650; text-align: right; }
#cart-fee { font-weight: 600; max-width: 62%; }
.ck-credit-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e4e6ea;
  background: #f7f8fa;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}
.ck-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid #eceef1;
  font-size: 16px;
}
.ck-total b { font-size: 22px; letter-spacing: -0.04em; }
.ck-form label.ck-consent,
.ck-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #3a3d44;
  line-height: 1.35;
}
.ck-form .ck-consent input[type="checkbox"],
.ck-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: #111113;
  flex: 0 0 18px;
}
.ck-consent span { min-width: 0; }
.ck-consent a { text-decoration: underline; text-underline-offset: 2px; color: inherit; }
.ck-submit { width: 100%; margin-top: 2px; }
.notice {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--muted);
}

.footer {
  background: #ffffff;
  color: #3a3d44;
  padding: 40px 0 24px;
  margin-top: 56px;
  border-top: 1px solid #d8dbe0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer a, .footer-text-btn { color: #3a3d44; display: block; padding: 3px 0; font-size: 14px; }
.footer a:hover, .footer-text-btn:hover { color: #111113; }
.footer-more {
  margin-top: 8px;
  font-weight: 600;
  color: #111113 !important;
}
.footer-text-btn {
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.footer h4 { color: #111113; margin: 0 0 10px; }
.footer h4 + a + a + h4,
.footer div > h4:not(:first-child) { margin-top: 22px; }
.footer .logo { color: #111113; }
.legal { color: #8a8e96; font-size: 12px; margin-top: 28px; }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.toast {
  position: fixed;
  right: 16px;
  bottom: 76px;
  background: #111113;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  display: none;
  z-index: 70;
}

.help-widget {
  display: none !important;
}
.help-widget > * { pointer-events: auto; }
.help-widget.is-raised { bottom: 120px; }
.help-toggle {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #111113;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(17, 17, 19, 0.18);
}
.help-toggle:hover { background: #2a2c30; }
.help-toggle[aria-expanded="true"] { background: #fff; color: #111113; border: 1px solid #d5d8de; }
.help-panel {
  width: min(360px, calc(100% - 32px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 17, 19, 0.14);
  overflow: hidden;
}
.help-panel-head { padding: 16px 18px 10px; }
.help-panel-head h3 { margin: 0 0 4px; font-size: 18px; letter-spacing: -0.03em; }
.help-panel-head p { margin: 0; color: var(--muted); font-size: 13px; }
.help-messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 18px 12px;
}
.help-messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #d5d8de;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: #f6f7f8;
}
.help-messengers a:hover { background: #eceef1; }
.help-form { padding: 0 18px 18px; }
.help-form .btn { width: 100%; }

@media print {
  .help-widget { display: none !important; }
}

.legal-doc {
  max-width: 820px;
  padding-bottom: 64px;
}
.legal-doc h2 {
  margin: 32px 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.legal-doc p, .legal-doc li { font-size: 15px; line-height: 1.55; color: #22242a; }
.legal-doc ul { padding-left: 20px; }
.legal-doc a { text-decoration: underline; text-underline-offset: 2px; }
.legal-table-wrap { overflow-x: auto; margin: 16px 0 24px; background: #fff; border-radius: 16px; padding: 8px 16px; }
.legal-table th { white-space: normal; width: auto; }
.legal-table td, .legal-table th { font-size: 13px; vertical-align: top; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #3a3d44;
  line-height: 1.4;
}
.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #111113;
  flex: 0 0 18px;
}
.consent a { text-decoration: underline; text-underline-offset: 2px; }

.cookie-bar[hidden],
.cookie-panel[hidden] { display: none !important; }
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid #d8dbe0;
  box-shadow: 0 -10px 30px rgba(17, 17, 19, 0.06);
  padding: 16px 0;
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-bar-inner p { margin: 0; font-size: 14px; color: #3a3d44; max-width: 68ch; }
.cookie-bar-inner a { text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; }
.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(17, 17, 19, 0.28);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}
.cookie-panel-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.cookie-panel-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.03em; }
.cookie-panel-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.cookie-panel-card .consent { margin-bottom: 10px; }

.oc-modal[hidden] { display: none !important; }
.oc-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(17, 17, 19, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.oc-card {
  width: min(460px, 100%);
  max-height: min(92dvh, 920px);
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 20px 50px rgba(17, 17, 19, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.oc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.oc-card h3 { margin: 0; font-size: 24px; letter-spacing: -0.04em; }
.oc-lead { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.4; }
.oc-x {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: #f2f3f5;
  border-radius: 12px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.oc-product {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  background: #f6f7f8;
  border-radius: 14px;
  padding: 10px;
}
.oc-product img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}
.oc-product b { display: block; font-size: 14px; line-height: 1.3; }
.oc-product span { color: var(--ink); font-weight: 700; font-size: 16px; }
.oc-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.oc-card label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); min-width: 0; }
.oc-card input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}
.oc-block {
  margin: 0;
  min-width: 0;
  border: 1px solid #e4e6ea;
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: #fff;
}
.oc-block-title {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  color: #111113;
}
.oc-hint { margin: 0; font-size: 12px; color: var(--muted); }
.oc-req { color: #d12c2c; font-weight: 700; }
.oc-block.is-error,
.ck-src-block.is-error {
  border-color: #d12c2c;
  box-shadow: 0 0 0 2px rgba(209, 44, 44, 0.15);
  background: #fff7f7;
}
.oc-block.is-error .oc-hint,
.ck-src-block.is-error .oc-hint { color: #d12c2c; }
.oc-src { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.oc-src-btn {
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  height: auto;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #111113 !important;
  -webkit-text-fill-color: #111113 !important;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.oc-src-btn span {
  color: #111113 !important;
  -webkit-text-fill-color: #111113 !important;
}
.oc-src-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.oc-src-btn.is-on {
  border-color: #111113;
  box-shadow: 0 0 0 2px rgba(17, 17, 19, 0.12);
  background: #f6f7f8;
}
.oc-bottom { display: grid; gap: 8px; }
.oc-submit { width: 100%; min-height: 46px; }
.oc-call { margin: 0; text-align: center; font-size: 13px; color: var(--muted); }
.oc-call a { color: var(--ink); font-weight: 650; }
.oc-legal { margin: 0; font-size: 11px; color: var(--muted); text-align: center; }
.oc-legal a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px) {
  .oc-modal { align-items: flex-end; padding: 0; }
  .oc-card {
    width: 100%;
    max-height: min(94dvh, 920px);
    border-radius: 20px 20px 0 0;
    padding: 18px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .oc-src { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 980px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-bar { padding-bottom: 20px; }
}

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

@media (max-width: 980px) {
  .rv-section { overflow-x: clip; }
  .rv-card:hover,
  .rv-card.is-on,
  .rv-card:focus-visible {
    transform: none;
  }
  .rv-slider .rv-card {
    flex-basis: calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
  }
  .wrap {
    width: calc(100% - 20px);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hide-sm { display: none !important; }
  .search-wrap { display: none !important; }
  .nav-search { display: none !important; }
  .header .wrap { width: calc(100% - 16px); }
  .header-top {
    min-height: 56px;
    gap: 8px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  .brand { min-width: 40px; }
  .brand span { display: none; }
  .header-tools { gap: 6px; flex-shrink: 0; margin-left: auto; display: flex; }
  .icon-btn {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
  }
  .icon-btn-text,
  .cart-label { display: none; }
  .icon-btn-call { display: none !important; }
  .header-phones { align-items: flex-end; }
  .cart-btn { width: 42px; min-width: 42px; padding: 0; }
  .cart-btn::before { display: none !important; }
  .header-search {
    display: block;
    padding: 0 0 10px;
  }
  .header-search-field {
    display: block;
    position: relative;
  }
  .header-search .search {
    height: 40px;
    padding-left: 40px;
    border-radius: 12px;
  }
  .header-search .ico-search {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #8a8e96;
    pointer-events: none;
  }
  .nav-phone { display: none; }
  .burger {
    display: inline-flex !important;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .filters { display: none; }
  .cat-chips {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-chips::-webkit-scrollbar { display: none; }
  .brand-picker { padding: 14px 12px 12px; overflow: hidden; }
  .brand-picker-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }
  .brand-pick {
    flex: none;
    width: auto;
    min-width: 0;
    min-height: 88px;
  }
  .cat-sort {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
  }
  .cat-sort a {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e4e6ea;
    font-size: 13px;
  }
  .cat-sort a.is-on {
    border-color: #111;
    background: #111;
    color: #fff;
    font-weight: 700;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 19, 0.38);
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-open .header { z-index: 90; }
  body.nav-open .header-search { display: none !important; }
  .nav-sheet,
  .nav-sheet-group {
    display: flex;
    flex-direction: column;
  }
  .nav-sheet {
    flex: 1;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-sheet-head {
    display: block;
    padding: 18px 18px 10px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a8e96;
  }
  .nav-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px 14px;
  }
  .nav-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid #e6e8ec;
    border-radius: 12px;
    background: #f7f8fa;
    color: #111113;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .nav-cat:active { background: #eceef1; }
  .nav-cat-ico {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #111113;
  }
  .nav-cat-ico svg { width: 100%; height: 100%; display: block; }
  .nav-sheet-group {
    border-top: 1px solid #eceef1;
    padding: 4px 8px;
  }
  .nav-sheet-cta {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid #eceef1;
    background: #fff;
  }
  .nav-call,
  .nav-call-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: #111113;
    background: #f2f3f5;
    border: 1px solid #e4e6ea;
  }
  .nav-call { background: #111113; color: #fff; border-color: #111113; }
  .nav-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 88vw);
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-top: 0;
    background: #fff;
    color: #111113;
    z-index: 80;
    box-shadow: -12px 0 40px rgba(17, 17, 19, 0.12);
    transform: translateX(104%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .26s var(--ease), visibility .26s;
  }
  .nav-bar.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 550;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #22242a;
    padding: 13px 12px;
    min-height: 48px;
    border-bottom: 0;
    white-space: normal;
    border-radius: 10px;
  }
  .nav-link:hover { color: #111113; background: #f6f7f8; }
  .nav-link.is-on {
    color: #111113;
    font-weight: 700;
    background: #f2f3f5;
    position: static;
    padding-left: 12px;
  }
  .nav-link.is-on::before { display: none; }
  .cats, .grid, .trust, .footer-grid, .blog-list, .blog-list-mini {
    grid-template-columns: 1fr;
  }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feature, .blog-layout, .blog-cta { grid-template-columns: 1fr; }
  .blog-feature { min-height: 0; }
  .blog-feature-media { height: 240px; }
  .blog-feature-body { padding: 22px 20px 24px; }
  .blog-cover img { height: 240px; }
  .blog-toc { position: static; padding-bottom: 8px; }
  .blog-cta { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .blog-card-media { height: 200px; }
  .catalog-layout, .pdp, .ck {
    grid-template-columns: 1fr;
  }
  .ck-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-areas: "img info sum" "img qty qty";
  }
  .ck-item img { grid-area: img; width: 72px; height: 72px; }
  .ck-info { grid-area: info; }
  .ck-qty { grid-area: qty; justify-self: start; }
  .ck-sum { grid-area: sum; }
  .ck-box { position: static; }
  .trust > a,
  .trust > article {
    border-left: 0;
    border-top: 1px solid #eceef1;
  }
  .trust > a:nth-child(even),
  .trust > article:nth-child(even) { border-left: 1px solid #eceef1; }
  .trust > a:nth-child(-n+2),
  .trust > article:nth-child(-n+2) { border-top: 0; }
  .warranty-head,
  .warranty-split,
  .warranty-steps,
  .coop-kinds,
  .coop-layout { grid-template-columns: 1fr; }
  .warranty-steps article,
  .warranty-steps article:first-child {
    border-left: 0;
    border-top: 1px solid #eceef1;
  }
  .warranty-steps article:first-child { border-top: 0; }
  .cats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cat-tile {
    min-height: 0;
    padding: 14px 12px 12px;
    gap: 6px;
    justify-content: flex-start;
  }
  .cat-tile img {
    position: static;
    width: 100%;
    height: 92px;
    margin-top: auto;
    object-fit: contain;
    object-position: center;
  }
  .cat-tile strong { font-size: 17px; line-height: 1.25; }
  .cat-tile:first-child {
    grid-column: span 2;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 46%);
    grid-template-areas: "title photo" "count photo";
    align-items: center;
    column-gap: 8px;
    padding: 16px;
  }
  .cat-tile:first-child strong { grid-area: title; font-size: 22px; }
  .cat-tile:first-child span { grid-area: count; align-self: end; }
  .cat-tile-watch img {
    height: 124px;
    transform: scale(1.18);
    transform-origin: center bottom;
  }
  .cat-tile:first-child img,
  .cat-tile-mac img {
    grid-area: photo;
    position: static;
    width: 100%;
    height: 132px;
    margin: 0;
    object-position: center;
  }
  .grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .card { min-width: 0; }
  .card-photo {
    padding: 8px;
    aspect-ratio: 1 / 1;
    max-height: 210px;
  }
  .card-body { padding: 10px 10px 12px; gap: 4px; }
  .card-brand { font-size: 12px; }
  .card-body h3 { font-size: 15px; line-height: 1.3; }
  .price { font-size: 17px; }
  .card-actions { grid-template-columns: 1fr 1fr; gap: 6px; }
  .card-actions .btn { min-height: 40px; font-size: 13px; padding: 0 6px; white-space: nowrap; }
  .help-toggle { height: 48px; padding: 0 16px; font-size: 16px; }
  .hero { min-height: min(68dvh, 560px); }
  .hero-inner { padding: 22px 18px 76px; }
  .hero h1, .hero-title { font-size: clamp(28px, 7.6vw, 36px); max-width: 11ch; }
  .hero p { font-size: 16px; }
  .hero-nav { left: 14px; right: 14px; justify-content: space-between; }
  .filters { position: static; }
  .section h2 { font-size: 26px; }
  .pdp { padding: 14px; grid-template-columns: 1fr; }
  .pdp-head { padding: 12px 0 10px; }
  .pdp-back { min-height: 44px; font-size: 16px; }
  .pdp-price { font-size: 30px; }
  .pdp-buy h1 { font-size: 28px; }
  .pdp-opt-label, .pdp-from { font-size: 15px; }
  .pdp-facts p { font-size: 17px; }
  .pdp-facts h3 { font-size: 20px; }
  .warranty-steps h3,
  .trust h3 { font-size: 20px; }
  .warranty-steps p,
  .trust p { font-size: 17px; line-height: 1.45; }
  .pill, .cat-chips a { font-size: 15px; padding: 9px 14px; }
  .specs th, .specs td { font-size: 16px; padding: 13px 12px 13px 0; }
  .card-spec-grid b { font-size: 12px; }
  .st { font-size: 13px; }
  input, select, textarea { font-size: 16px !important; }
  .footer { padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px)); margin-top: 36px; }
  .help-widget {
    right: 8px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    padding: 20px;
    overflow: visible;
  }
  .cookie-bar { padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .page-delivery .page-head,
  .page-payment .page-head { padding: 16px 0 10px; }
  .page-delivery .lead,
  .page-payment .lead { margin-bottom: 0; }
  .page-delivery .section,
  .page-payment .section { padding: 10px 0 22px; }
  .page-delivery .section h2,
  .page-payment .section h2 { font-size: 22px; margin-bottom: 10px; }
  .page-delivery .trust,
  .page-payment .trust,
  .page-delivery .useful-block .trust,
  .page-payment .useful-block .trust {
    border-radius: 14px;
  }
  .page-delivery .trust > a,
  .page-delivery .trust > article,
  .page-payment .trust > a,
  .page-payment .trust > article {
    padding: 11px 14px;
  }
  .page-delivery .trust h3,
  .page-payment .trust h3 { font-size: 20px; margin: 0 0 6px; }
  .page-delivery .trust p,
  .page-payment .trust p { font-size: 17px; line-height: 1.45; }
  .page-delivery .warranty-steps,
  .page-payment .warranty-steps { border-radius: 14px; }
  .page-delivery .warranty-steps article,
  .page-payment .warranty-steps article {
    padding: 11px 14px;
  }
  .page-delivery .warranty-steps h3,
  .page-payment .warranty-steps h3 { font-size: 20px; margin: 0 0 6px; }
  .page-delivery .warranty-steps p,
  .page-payment .warranty-steps p { font-size: 17px; line-height: 1.45; }
  .page-delivery .seo-block-photo .seo-copy,
  .page-payment .seo-block-photo .seo-copy { padding: 16px 16px 18px; border-radius: 16px; }
  .page-delivery .seo-block-photo .seo-copy h2,
  .page-payment .seo-block-photo .seo-copy h2 { font-size: 24px; }
  .page-delivery .seo-block-photo .seo-copy p,
  .page-payment .seo-block-photo .seo-copy p { font-size: 16px; line-height: 1.55; }
  .page-delivery .seo-visual,
  .page-payment .seo-visual { border-radius: 16px; }
  .page-delivery .seo-visual img,
  .page-payment .seo-visual img { min-height: 220px; }
  .page-delivery .faq-item,
  .page-payment .faq-item { padding: 11px 14px; border-radius: 12px; margin-bottom: 6px; }
  .card-spec-grid { border-radius: 10px; }
  .card-spec-grid > div { padding: 8px 10px 9px; }
  .card-spec-grid span { font-size: 14px; }
  body { font-size: 17px; }
  .lead { font-size: 16px; }
  .nav-cat { font-size: 15px; }
  .nav-link { font-size: 17px; }
  .cat-sort a { font-size: 15px; padding: 8px 12px; }
  .brand-pick strong { font-size: 14px; }
  .brand-pick span { font-size: 13px; }
  .footer a, .footer-text-btn { font-size: 16px; padding: 6px 0; }
  .crumbs { font-size: 14px; }
  .page-head { padding: 12px 0 8px; }
  .page-head h1 { font-size: 24px; margin: 4px 0 4px; }
  .page-head > .lead { display: none; }
  .cat-only { margin: 2px 0 0; font-size: 14px; }
  .cat-count-line { font-size: 14px; margin: 0 0 10px; }
  .seo-copy p, .seo-block p { font-size: 16px; }
  .faq-item, .faq-q { font-size: 16px; }
  .btn { font-size: 16px; min-height: 46px; }
  .card-actions .btn { min-height: 40px; font-size: 13px; }
  .chip { font-size: 14px; padding: 7px 12px; }
  .pdp-specs { overflow: visible; padding: 4px 12px 10px; }
  .specs,
  .pdp-specs .specs,
  .specs tbody,
  .specs tr {
    display: block;
    width: 100%;
  }
  .specs th,
  .specs td,
  .pdp-specs .specs th,
  .pdp-specs .specs td {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
  .specs th,
  .pdp-specs .specs th {
    padding: 12px 4px 0;
    border-bottom: 0;
    font-size: 13px;
    line-height: 1.3;
    color: #6b6e76;
  }
  .specs td,
  .pdp-specs .specs td {
    padding: 3px 4px 12px;
    border-bottom: 1px solid #eceef1;
    font-size: 16px;
  }
  .specs tr:last-child td,
  .pdp-specs .specs tr:last-child td { border-bottom: 0; }
  .card-spec-grid {
    grid-template-columns: 1fr;
  }
  .card-spec-grid > div,
  .card-spec-grid > div:nth-child(2n),
  .card-spec-grid > div:nth-last-child(1):nth-child(odd) {
    border-right: 0;
    grid-column: auto;
  }
  .variants-table th,
  .variants-table td,
  .legal-table th,
  .legal-table td,
  .req-table th,
  .req-table td {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 600px) and (max-width: 980px) {
  .search-wrap {
    display: block !important;
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    margin: 0 8px;
  }
  .search-wrap .search { height: 40px; }
  .header-search { display: none !important; }
  .header-top { gap: 8px; }
  .header-tools { margin-left: 0; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-photo { max-height: 190px; }
  .brand-picker-grid {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  }
  .brand-pick { flex: none; min-height: 100px; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 20px); }
  .trust { grid-template-columns: 1fr; }
  .trust > a,
  .trust > a:nth-child(even),
  .trust > article,
  .trust > article:nth-child(even) {
    border-left: 0;
    border-top: 1px solid #eceef1;
  }
  .trust > a:first-child,
  .trust > article:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }

  .rv-compose {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px 18px;
    margin-bottom: 14px;
  }
  .rv-compose-copy .rv-quote { max-width: none; font-size: 26px; }
  .rv-write-row { grid-template-columns: 1fr; }
  .rv-write-foot { flex-direction: column; align-items: stretch; }
  .rv-write-foot .btn { width: 100%; }
  .rv-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 22px;
  }
  .rv-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    min-height: 320px;
  }
  .rv-slider .rv-card {
    flex: 0 0 min(78vw, 280px);
    max-width: min(78vw, 280px);
  }
  .rv-head { align-items: flex-start; }
  .rv-arrow { min-height: 44px; position: relative; z-index: 5; }
  .rv-slider { overflow: hidden; }
  .rv-track { padding-top: 8px; margin-top: 0; }
  .rv-card:hover,
  .rv-card.is-on,
  .rv-card:focus-visible {
    transform: none;
  }
  .rv-quote { font-size: 20px; }
  .req-table,
  .req-table tbody,
  .req-table tr,
  .req-table th,
  .req-table td { display: block; width: 100%; }
  .req-table th {
    padding: 14px 20px 0;
    border-top: 1px solid #eceef1;
    white-space: normal;
  }
  .req-table td {
    padding: 4px 20px 14px;
    border-top: 0;
  }
  .req-table tr:first-child th { border-top: 0; }
  .card-actions { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand span { font-size: 16px; }
  .page-head h1 { font-size: 28px; }
  .legal-table-wrap, .variants-table { -webkit-overflow-scrolling: touch; }
}

/* No page-level horizontal scroll on any device. Internal rows may still swipe. */
.header,
.header-top,
.header-search,
.catalog-layout,
.grid,
.pdp,
.pdp-buy,
.section,
.footer,
.hero,
.rv-section,
.brand-picker,
.cat-chips,
.nav-bar,
.cookie-bar,
.cookie-bar-inner {
  max-width: 100%;
  min-width: 0;
}
.cat-chips,
.nav-bar,
.rv-row,
.variants-table,
.legal-table-wrap,
.pdp-table-wrap {
  overscroll-behavior-x: contain;
}
.cat-chips {
  touch-action: pan-x pan-y;
}
.brand-picker,
.brand-picker-grid {
  touch-action: pan-y;
}

/* Storefront stays light so product cutouts sit on a stable well. */
