
:root {
  --paper:   #f7f6f2;
  --paper:   oklch(97.3% 0.005 95);
  --paper-2: #efeee9;
  --paper-2: oklch(94.8% 0.007 95);
  --paper-3: #e7e6e0;
  --paper-3: oklch(92.4% 0.008 95);
  --white:   #fdfdfc;
  --white:   oklch(99.4% 0.002 95);
  --ink:     #191d24;
  --ink:     oklch(23% 0.014 255);
  --ink-2:   #474e57;
  --ink-2:   oklch(42% 0.018 255);
  --ink-3:   #6f757d;
  --ink-3:   oklch(56% 0.014 255);
  --blue:    #0063ab;
  --blue-deep: #034574;
  --blue-deep: oklch(38% 0.10 248);
  --blue-tint: #daebf7;
  --blue-tint: oklch(93% 0.025 240);
  --red:     #bc262c;
  --red-deep:#9e1f24;
  --line:        rgba(25,29,36,.13);
  --line:        color-mix(in oklab, var(--ink) 13%, transparent);
  --line-strong: rgba(25,29,36,.24);
  --line-strong: color-mix(in oklab, var(--ink) 24%, transparent);
  --f-display: "Unbounded", system-ui, sans-serif;
  --f-text: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --r-outer: 28px;
  --r-inner: 20px;
  --r-chip: 999px;
  --container: 1280px;
  --gutter: clamp(18px, 3vw, 32px);
  --section: clamp(88px, 11vw, 148px);
  --shadow-soft: 0 1px 2px rgba(18,23,32,.05), 0 24px 64px -28px rgba(18,23,32,.22);
  --shadow-lift: 0 2px 4px rgba(18,23,32,.05), 0 36px 90px -30px rgba(18,23,32,.30);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
  --out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 100;
  --z-drop: 110;
  --z-overlay: 200;
  --z-toast: 300;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--f-text);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: var(--z-toast);
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: rgba(0,99,171,0.22); background: color-mix(in oklab, var(--blue) 22%, transparent); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.05rem, 4.6vw, 4.35rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.2; }
p  { max-width: 68ch; text-wrap: pretty; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-text); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-chip);
  padding: 7px 14px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex: none;
}
.eyebrow--plain { border: 0; padding: 0; }
.eyebrow--plain::before { background: var(--red); }
.mono { font-family: var(--f-text); }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  padding: 8px 8px 8px 24px;
  border-radius: var(--r-chip);
  background: var(--ink); color: var(--paper);
  font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  transition: transform .5s var(--spring), background .5s var(--spring), box-shadow .5s var(--spring);
  box-shadow: var(--shadow-soft);
}
.btn:hover { color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn:active { transform: scale(.975); }
.btn__ic {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(247,246,242,0.16); background: color-mix(in oklab, var(--paper) 16%, transparent);
  transition: transform .5s var(--spring), background .5s var(--spring);
}
.btn__ic svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.btn:hover .btn__ic { transform: translate(2px, -2px) scale(1.06); background: rgba(247,246,242,0.26); background: color-mix(in oklab, var(--paper) 26%, transparent); }
.btn--buy { background: var(--red); }
.btn--buy:hover { background: var(--red-deep); }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--ghost:hover { color: var(--ink); background: rgba(25,29,36,0.05); background: color-mix(in oklab, var(--ink) 5%, transparent); box-shadow: inset 0 0 0 1px var(--line-strong); }
.btn--ghost .btn__ic { background: rgba(25,29,36,0.07); background: color-mix(in oklab, var(--ink) 7%, transparent); }
.btn--sm { padding: 5px 5px 5px 16px; font-size: 13.5px; gap: 9px; }
.btn--sm .btn__ic { width: 27px; height: 27px; }
.btn--sm .btn__ic svg { width: 12px; height: 12px; }
.bezel {
  background: var(--paper-2);
  border-radius: var(--r-outer);
  padding: 8px;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}
.bezel__core {
  background: var(--white);
  border: 1px solid rgba(25,29,36,0.07); border: 1px solid color-mix(in oklab, var(--ink) 7%, transparent);
  border-radius: var(--r-inner);
  overflow: hidden;
}
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(30px, 4.5vw, 54px); }
.shead > div > .eyebrow { margin-bottom: 18px; }
.shead__link {
  font-family: var(--f-text); font-size: 12.5px; letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap; padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: color .4s var(--spring), border-color .4s var(--spring);
}
.shead__link:hover { color: var(--blue); border-color: var(--blue); }
section { padding-block: calc(var(--section) / 2); }
.section-rule { border: 0; border-top: 1px solid var(--line); max-width: var(--container); margin: 0 auto; }
html.js .rv { opacity: 0; transform: translateY(22px); filter: blur(5px); transition: opacity .9s var(--out-quint), transform .9s var(--out-quint), filter .9s var(--out-quint); }
html.js .rv.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; filter: none; transition: none; }
}
.head { position: sticky; top: 14px; z-index: var(--z-nav); margin-top: 14px; }
.head::before {
  content: ""; position: absolute; z-index: -1;
  top: -14px; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; background: var(--paper);
}
.head__pill {
  position: relative;
  display: flex; align-items: center; gap: 22px;
  padding: 10px 12px 10px 22px;
  border-radius: var(--r-chip);
  background: rgba(253,253,252,0.78); background: color-mix(in oklab, var(--white) 78%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  transition: box-shadow .6s var(--spring);
}
.head.scrolled .head__pill { box-shadow: var(--shadow-lift); }
.logo { display: flex; flex-direction: column; line-height: 1; color: var(--ink); }
.logo b { font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: .02em; }
.logo b i { font-style: normal; color: var(--blue); }
.logo span { font-family: var(--f-text); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: 0; }
.nav > a, .nav > .navdrop > button {
  padding: 9px 9px; border-radius: var(--r-chip);
  font-size: 14.5px; font-weight: 700; color: var(--ink);
  transition: background .4s var(--spring), color .4s var(--spring);
  display: inline-flex; align-items: center; gap: 7px;
}
.nav > a:hover, .nav > .navdrop > button:hover { background: rgba(25,29,36,0.06); background: color-mix(in oklab, var(--ink) 6%, transparent); }
.nav > a[aria-current="page"] { color: var(--blue); }
.navdrop { position: static; }
.navdrop > button svg { width: 11px; height: 11px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .4s var(--spring); }
.navdrop:hover > button svg:last-child, .navdrop:focus-within > button svg:last-child { transform: rotate(180deg); }
.nav > .navdrop--catalog > button {
  padding: 12px 18px 12px 20px;
  background: var(--blue); color: #fff;
  border-radius: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  box-shadow: var(--shadow-soft);
  transition: background .4s var(--spring), transform .4s var(--spring), box-shadow .4s var(--spring);
}
.nav > .navdrop--catalog > button:hover { background: var(--blue-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.nav > .navdrop > button:active { transform: scale(.97); }
.navdrop > button svg.navdrop__grid { width: 16px; height: 16px; stroke-width: 1.8; }
.navdrop__panel {
  position: absolute; top: calc(100% + 6px); left: 10px; right: 10px;
  z-index: var(--z-drop);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 18px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-lift);
  opacity: 0; transform: translateY(10px) scale(.99); pointer-events: none;
  transition: opacity .45s var(--spring) .15s, transform .45s var(--spring) .15s;
}
.navdrop__panel::before { content: ""; position: absolute; left: 0; right: 0; top: -34px; height: 36px; }
.navdrop:hover .navdrop__panel, .navdrop:focus-within .navdrop__panel, .navdrop.is-open .navdrop__panel { opacity: 1; transform: none; pointer-events: auto; transition-delay: 0s; }
.navdrop__head {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 24px 6px;
  font-family: var(--f-text); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2);
}
.navdrop__head a { font-family: var(--f-text); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--blue); }
.navdrop__panel > a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px 16px 14px 24px; border-radius: 20px; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background .35s var(--spring), border-color .35s var(--spring);
}
.navdrop__panel > a:hover { background: var(--paper-2); border-color: var(--line-strong); }
.navdrop__txt { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.navdrop__img {
  flex: none; width: 128px; height: 100px; object-fit: contain;
  padding: 10px; border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  mix-blend-mode: multiply;
  transition: transform .5s var(--spring);
}
.navdrop__panel > a:hover .navdrop__img { transform: scale(1.07) rotate(-1deg); }
.navdrop__txt b { font-size: 17.5px; font-weight: 700; }
.navdrop__txt > span { font-family: var(--f-text); font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-2); }
.head__phone { font-family: var(--f-text); font-size: 13.5px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.head__phone:hover { color: var(--blue); }
.cartbtn {
  position: relative; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper); flex: none;
  transition: transform .5s var(--spring), background .5s var(--spring);
}
.cartbtn:hover { transform: translateY(-1px); background: var(--blue-deep); color: var(--paper); }
.cartbtn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.cartbtn__n {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding-inline: 5px;
  border-radius: var(--r-chip);
  background: var(--red); color: #fff;
  font-family: var(--f-text); font-size: 10.5px; font-weight: 600;
  display: grid; place-items: center; line-height: 1;
  border: 2px solid var(--paper);
}
.burger { display: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(25,29,36,0.07); background: color-mix(in oklab, var(--ink) 7%, transparent); position: relative; flex: none; }
.burger i {
  position: absolute; left: 13px; right: 13px; height: 1.8px; border-radius: 2px;
  background: var(--ink); transition: transform .5s var(--spring), opacity .3s;
}
.burger i:nth-child(1) { top: 17px; } .burger i:nth-child(2) { top: 25px; }
.burger.open i:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open i:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mnav {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(247,246,242,0.88); background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity .5s var(--spring);
}
.mnav.open { opacity: 1; pointer-events: auto; }
.mnav > a {
  font-family: var(--f-display); font-weight: 600; color: var(--ink);
  font-size: clamp(1.7rem, 7vw, 2.6rem); padding: 10px 0;
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s var(--out-quint), transform .6s var(--out-quint);
}
.mnav__meta a { font-family: var(--f-text); font-weight: 700; font-size: 18px; color: var(--blue); line-height: 2; }
.mnav.open a { opacity: 1; transform: none; }
.mnav.open a:nth-child(2) { transition-delay: .06s; } .mnav.open a:nth-child(3) { transition-delay: .12s; }
.mnav.open a:nth-child(4) { transition-delay: .18s; } .mnav.open a:nth-child(5) { transition-delay: .24s; }
.mnav.open a:nth-child(6) { transition-delay: .3s; }
.mnav__meta { margin-top: 40px; font-family: var(--f-text); font-size: 13px; color: var(--ink-2); opacity: 0; transition: opacity .6s .35s var(--out-quint); }
.mnav.open .mnav__meta { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .mnav, .mnav a, .mnav__meta, .navdrop__panel, .burger i { transition: none; }
}
.hero { position: relative; padding-top: clamp(20px, 2.2vw, 32px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero__grid { display: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 5.6fr) minmax(0, 6.4fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero h1 { margin: 0 0 22px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ink-2); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 0 34px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__facts div { display: flex; flex-direction: column; gap: 2px; padding-block: 6px; }
.hero__facts b { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -.01em; }
.hero__facts b sup { font-size: .45em; font-weight: 500; color: var(--ink-2); margin-left: 2px; }
.hero__facts span { font-family: var(--f-text); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.hero__visual { position: relative; }
.hero__photo { position: relative; aspect-ratio: 1 / 1.04; background: radial-gradient(90% 75% at 50% 42%, var(--white) 0%, var(--paper-2) 100%); }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; mix-blend-mode: multiply; }
.hslide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .9s var(--out-quint); }
.hslide.is-on { opacity: 1; pointer-events: auto; }
.hnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(253,253,252,0.85); background: color-mix(in oklab, var(--white) 85%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  color: var(--ink); opacity: .75;
  transition: opacity .4s var(--spring), transform .4s var(--spring), background .4s var(--spring);
}
.hnav:hover { opacity: 1; background: var(--white); }
.hnav:active { transform: translateY(-50%) scale(.94); }
.hnav--prev { left: 14px; }
.hnav--next { right: 14px; }
.hnav svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.hdots {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2;
  display: flex; gap: 7px; padding: 8px 12px; border-radius: var(--r-chip);
  background: rgba(253,253,252,0.72); background: color-mix(in oklab, var(--white) 72%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hdots i {
  width: 7px; height: 7px; border-radius: var(--r-chip); cursor: pointer;
  background: rgba(25,29,36,0.28); background: color-mix(in oklab, var(--ink) 28%, transparent);
  transition: width .5s var(--spring), background .5s var(--spring);
}
.hdots i.is-on { width: 22px; background: var(--blue); }
@media (prefers-reduced-motion: reduce) { .hslide { transition: none; } .hdots i { transition: none; } }
.hero__chip {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; gap: 1px;
  padding: 10px 16px; border-radius: 16px;
  background: rgba(253,253,252,0.82); background: color-mix(in oklab, var(--white) 82%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}
.hero__chip b { font-family: var(--f-display); font-size: 15px; font-weight: 600; }
.hero__chip span { font-family: var(--f-text); font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.hero__chip--tl { top: 16px; left: 16px; }
.hero__chip--br { bottom: 16px; right: 16px; }
.hero__slider .hero__slide { opacity: 0; transition: opacity .7s ease; }
.hero__slider .hero__slide.is-active { opacity: 1; }
.hero__link { position: absolute; inset: 0; z-index: 1; display: block; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3; display: flex; gap: 7px; justify-content: center; }
.hero__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(20,18,16,.25); cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero__dots button.is-active { width: 22px; border-radius: 4px; background: var(--ink); }
.hero__jp {
  position: absolute; top: 18px; right: 26px; z-index: 2;
  font-family: var(--f-text); font-size: 12px; letter-spacing: .05em;
  writing-mode: vertical-rl; color: var(--ink-2);
}
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: mq 38s linear infinite; }
.marquee span { font-family: var(--f-text); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.marquee b { color: var(--line-strong); font-weight: 400; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.tile {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  min-height: 190px; padding: 26px;
  background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-outer);
  color: var(--ink);
  transition: transform .6s var(--spring), box-shadow .6s var(--spring), border-color .6s var(--spring);
}
.tile:hover { color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.tile--main { grid-column: span 7; grid-row: span 2; min-height: 420px; background: var(--ink); color: var(--paper); }
.tile--main:hover { color: var(--paper); }
.tile--5 { grid-column: span 5; }
.tile--4 { grid-column: span 4; }
.tile__idx { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; color: inherit; opacity: .5; }
.tile h3 { margin-top: auto; padding-top: 30px; max-width: 58%; position: relative; z-index: 1; }
.tile p { font-size: 13.5px; margin-top: 6px; opacity: .62; max-width: 52%; position: relative; z-index: 1; }
.tile__arrow {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(25,29,36,0.09); background: color-mix(in oklab, currentColor 9%, transparent);
  transition: transform .5s var(--spring), background .5s var(--spring);
}
.tile__arrow svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.tile:hover .tile__arrow { transform: translate(3px, -3px); background: rgba(25,29,36,0.16); background: color-mix(in oklab, currentColor 16%, transparent); }
.tile__img {
  position: absolute; right: 12px; bottom: 12px; width: 34%; max-width: 200px;
  mix-blend-mode: multiply; opacity: .95;
  transition: transform .8s var(--spring);
}
.tile:hover .tile__img { transform: scale(1.05) rotate(-1deg); }
.tile--main .tile__img {
  mix-blend-mode: normal; opacity: 1; filter: none;
  top: 0; right: 0; bottom: 0; height: 100%; width: 46%; max-width: none;
  object-fit: cover;
}
.tile--main:hover .tile__img { transform: scale(1.02); }
.tile--main h3, .tile--main p { max-width: 48%; }
.tile--main .tile__arrow { background: rgba(255,255,255,.85); color: var(--ink); z-index: 1; }
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 14px; align-items: stretch; }
.pcard { display: flex; flex-direction: column; width: 100%; transition: transform .6s var(--spring), box-shadow .6s var(--spring); }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pcard .bezel__core { display: flex; flex-direction: column; height: 100%; }
.pcard__photo { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; background: radial-gradient(85% 70% at 50% 45%, var(--white) 0%, var(--paper) 100%); }
.pcard__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; mix-blend-mode: multiply; transition: transform .7s var(--spring); }
.pcard:hover .pcard__photo img { transform: scale(1.05); }
.pcard__tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-family: var(--f-text); font-size: 10px; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-chip);
  background: var(--blue-tint); color: var(--blue-deep);
}
.pcard__body { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px 20px; border-top: 1px solid var(--line); flex: 1; }
.pcard__sku { font-family: var(--f-text); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.pcard__name { font-weight: 700; font-size: 16.5px; color: var(--ink); }
a.pcard__name:hover { color: var(--blue); }
.pcard__spec { font-family: var(--f-text); font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; }
.pcard__price { font-family: var(--f-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em; white-space: nowrap; }
.pcard__price small { display: block; font-family: var(--f-text); font-weight: 400; font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); margin-top: 3px; }
.specband { background: var(--ink); color: var(--paper); border-radius: var(--r-outer); padding: clamp(40px, 6vw, 84px) clamp(24px, 5vw, 72px); position: relative; overflow: hidden; }
.specband::before { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.07), rgba(255,255,255,.07)) 33% 0 / 1px 100% no-repeat,
    linear-gradient(rgba(255,255,255,.07), rgba(255,255,255,.07)) 66% 0 / 1px 100% no-repeat;
}
.specband h2 { color: var(--paper); position: relative; }
.specband__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: clamp(36px, 5vw, 64px); }
.specband__cell { border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; }
.specband__cell b { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -.02em; line-height: 1; display: block; }
.specband__cell b sup { font-size: .34em; font-weight: 500; opacity: .55; margin-left: 4px; letter-spacing: .05em; }
.specband__cell span { font-family: var(--f-text); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; opacity: .55; display: block; margin-top: 10px; }
.picker { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.picker__form { display: flex; flex-direction: column; gap: 26px; }
.picker__q { display: flex; flex-direction: column; gap: 12px; }
.picker__q label { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 18px; border-radius: var(--r-chip);
  border: 1px solid var(--line-strong); background: transparent;
  font-weight: 600; font-size: 14px; color: var(--ink);
  transition: background .4s var(--spring), border-color .4s var(--spring), color .4s var(--spring), transform .4s var(--spring);
}
.chip:hover { border-color: var(--ink); }
.chip:active { transform: scale(.96); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.picker__result { position: sticky; top: 110px; }
.picker__result .bezel__core { padding: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 24px; align-items: center; }
.picker__result img { max-height: 240px; object-fit: contain; mix-blend-mode: multiply; justify-self: center; }
.picker__verdict { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--blue); }
.picker__model { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 10px 0 4px; }
.picker__price { font-family: var(--f-display); font-weight: 600; font-size: 20px; margin: 12px 0 20px; }
.picker__note { font-size: 12.5px; color: var(--ink-2); margin-top: 18px; max-width: 40ch; }
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feat { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.feat__n { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; color: var(--ink-2); }
.feat h3 { margin: 14px 0 10px; }
.feat p { font-size: 14px; color: var(--ink-2); }
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-weight: 700; font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-strong); position: relative;
  transition: transform .5s var(--spring), background .5s var(--spring);
}
.faq summary i::before, .faq summary i::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: currentColor;
}
.faq summary i::before { width: 12px; height: 1.5px; }
.faq summary i::after { width: 1.5px; height: 12px; transition: transform .5s var(--spring); }
.faq details[open] summary i { transform: rotate(45deg); background: var(--paper-2); }
.faq details p { padding: 0 4px 26px; color: var(--ink-2); max-width: 62ch; }
.lead { }
.lead .bezel__core { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); }
.lead__copy { padding: clamp(28px, 4vw, 56px); background: var(--ink); color: var(--paper); display: flex; flex-direction: column; }
.lead__copy h2 { color: var(--paper); margin: 20px 0 14px; }
.lead__copy p { opacity: .72; font-size: 15px; }
.lead__copy .mono-list { margin-top: auto; padding-top: 40px; display: flex; flex-direction: column; gap: 8px; font-family: var(--f-text); font-size: 12.5px; opacity: .6; }
.lead__form { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--f-text); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: 13px 16px; border-radius: 14px;
  border: 1px solid var(--line-strong); background: var(--white);
  transition: border-color .4s var(--spring), box-shadow .4s var(--spring);
}
.field input::placeholder { color: var(--ink-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,99,171,0.18); box-shadow: 0 0 0 3px color-mix(in oklab, var(--blue) 18%, transparent);
}
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); margin-top: 4px; }
.consent input { margin-top: 3px; width: 15px; height: 15px; accent-color: var(--blue); flex: none; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.lead__form .btn { align-self: flex-start; margin-top: 10px; }
.footer { margin-top: var(--section); background: var(--ink); color: var(--paper); border-radius: var(--r-outer) var(--r-outer) 0 0; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.5fr)); gap: 40px; padding-block: clamp(48px, 6vw, 84px); }
.footer .logo { color: var(--paper); }
.footer .logo b i { color: #5eade2; color: oklch(72% 0.11 240); }
.footer .logo span { color: rgba(247,246,242,0.55); color: color-mix(in oklab, var(--paper) 55%, transparent); }
.footer__about { font-size: 13.5px; opacity: .6; max-width: 34ch; margin-top: 18px; }
.footer__h { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; opacity: .5; font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--paper); opacity: .82; font-size: 14.5px; transition: opacity .3s, color .3s; }
.footer ul a:hover { opacity: 1; color: var(--paper); }
.footer__phone { font-family: var(--f-display); font-size: 19px; font-weight: 600; color: var(--paper); }
.footer__phone:hover { color: var(--paper); opacity: .85; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center;
  padding-block: 26px; border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--f-text); font-size: 11.5px; opacity: .55;
}
.footer__bottom a { color: var(--paper); }
.footer__catmap { padding-block: 30px 34px; border-top: 1px solid rgba(255,255,255,.12); }
.footer__catmap-grid { columns: 4 200px; column-gap: 34px; }
.footer__catmap-group { display: block; margin-bottom: 24px; min-width: 0; }
.footer__catmap-top { display: block; color: var(--paper); font-size: 14px; font-weight: 600; opacity: .92; margin-bottom: 10px; break-after: avoid; -webkit-column-break-after: avoid; }
.footer__catmap-top:hover { color: var(--paper); opacity: 1; }
.footer__catmap-group ul { gap: 7px; }
.footer__catmap-group ul a { font-size: 13px; opacity: .6; }
.footer__catmap-group ul a:hover { opacity: .95; }
@media (max-width: 640px) {
  .footer__catmap { padding-block: 22px 24px; }
  .footer__catmap-grid { columns: 2 138px; column-gap: 18px; }
  .footer__catmap-group { margin-bottom: 20px; }
  .footer__catmap-top { font-size: 13.5px; }
}
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--f-text); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); padding-top: 34px; }
.crumbs a { color: var(--ink-2); } .crumbs a:hover { color: var(--blue); }
.crumbs svg { width: 10px; height: 10px; stroke: currentColor; stroke-width: 2; fill: none; opacity: .5; }
.pagehead { padding-block: clamp(28px, 4vw, 52px) clamp(22px, 3vw, 40px); }
.pagehead h1 { max-width: 20ch; }
.pagehead__meta { font-family: var(--f-text); font-size: 12.5px; letter-spacing: .03em; color: var(--ink-2); margin-top: 16px; }
.cat { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: start; }
.filters { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: var(--r-outer); background: var(--paper-2); padding: 8px; }
.filters__core { background: var(--white); border-radius: var(--r-inner); border: 1px solid rgba(25,29,36,0.07); border: 1px solid color-mix(in oklab, var(--ink) 7%, transparent); padding: 22px; display: flex; flex-direction: column; gap: 24px; }
.fgroup { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 20px; }
.fgroup:first-child { border-top: 0; padding-top: 0; }
.fgroup > b { font-family: var(--f-text); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; }
.fopt { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; cursor: pointer; }
.fopt input { width: 15px; height: 15px; accent-color: var(--blue); }
.fopt span { color: var(--ink-2); font-family: var(--f-text); font-size: 11px; margin-left: auto; }
.range { display: flex; gap: 8px; }
.range input { width: 50%; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 12px; font: inherit; font-size: 14px; background: var(--white); min-width: 0; }
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; }
.toolbar .chip { font-size: 13px; padding: 8px 15px; }
.toolbar__count { margin-left: auto; font-family: var(--f-text); font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); }
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 44px; }
.pager a {
  min-width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-text); font-size: 13px; color: var(--ink);
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.pager a:hover { border-color: var(--line-strong); }
.pager a.cur { background: var(--ink); color: var(--paper); }
.product { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 60px); align-items: start; padding-top: 10px; }
.product__gallery { position: sticky; top: 96px; }
.product__stage { position: relative; aspect-ratio: 1 / .82; background: radial-gradient(85% 70% at 50% 45%, var(--white) 0%, var(--paper-2) 100%); }
.product__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; mix-blend-mode: multiply; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.thumbs button { position: relative; height: 96px; border-radius: 14px; border: 1px solid var(--line); background: var(--white); overflow: hidden; padding: 0; transition: border-color .3s; }
.thumbs button.cur, .thumbs button:hover { border-color: var(--blue); }
.thumbs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; mix-blend-mode: multiply; }
.product__sku { font-family: var(--f-text); font-size: 13px; font-weight: 500; letter-spacing: .03em; text-transform: uppercase; color: var(--blue); }
.product h1 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin: 14px 0 10px; }
.product__lead { color: var(--ink-2); font-size: 16.5px; line-height: 1.65; max-width: 52ch; }
.stock { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-text); font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--ink); margin-top: 18px; }
.stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #03a14a; background: oklch(62% 0.17 150); }
.buybox { margin-top: 26px; }
.buybox .bezel__core { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.buybox__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price-big { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.2rem); letter-spacing: -.015em; }
.price-big small { display: block; font-family: var(--f-text); font-weight: 400; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); margin-top: 6px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--r-chip); overflow: hidden; }
.qty button { width: 42px; height: 44px; display: grid; place-items: center; font-size: 18px; font-weight: 600; transition: background .3s; }
.qty button:hover { background: rgba(25,29,36,0.06); background: color-mix(in oklab, var(--ink) 6%, transparent); }
.qty output { min-width: 40px; text-align: center; font-family: var(--f-text); font-weight: 600; font-size: 15px; }
.buybox__meta { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; font-size: 13.5px; color: var(--ink-2); }
.buybox__meta div { display: flex; gap: 10px; align-items: baseline; }
.buybox__meta b { color: var(--ink); font-weight: 700; }
.specs { margin-top: var(--section); }
.specs table { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: 16px 4px; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.specs th { font-family: var(--f-text); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; width: 46%; }
.specs td { font-weight: 700; font-size: 15.5px; }
.specs td .mono { font-weight: 500; font-size: 13px; color: var(--ink-2); }
.doc {
  display: flex; align-items: center; gap: 18px; max-width: 760px;
  padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--white); color: var(--ink);
  transition: border-color .4s var(--spring), transform .4s var(--spring), box-shadow .4s var(--spring);
}
.doc:hover { color: var(--ink); border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.doc__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue-deep);
  font-family: var(--f-text); font-size: 11px; font-weight: 600; letter-spacing: .02em;
}
.doc__txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.doc__txt b { font-size: 15.5px; }
.doc__txt > span { font-family: var(--f-text); font-size: 12px; letter-spacing: .02em; color: var(--ink-2); }
.cartpage { display: grid; grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr); gap: clamp(24px, 3.5vw, 48px); align-items: start; }
.cline { display: grid; grid-template-columns: 108px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding-block: 22px; border-bottom: 1px solid var(--line); }
.cline__ph { width: 108px; height: 92px; border-radius: 16px; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; padding: 10px; }
.cline__ph img { max-height: 100%; mix-blend-mode: multiply; }
.cline__name { font-weight: 700; font-size: 16px; color: var(--ink); }
.cline__sku { font-family: var(--f-text); font-size: 12px; letter-spacing: .02em; color: var(--ink-2); margin-top: 4px; }
.cline__right { display: flex; align-items: center; gap: 22px; }
.cline__sum { font-family: var(--f-display); font-weight: 600; font-size: 18px; min-width: 110px; text-align: right; }
.cline__del { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: background .3s, color .3s; }
.cline__del:hover { background: rgba(188,38,44,0.1); background: color-mix(in oklab, var(--red) 10%, transparent); color: var(--red); }
.cline__del svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.summary { position: sticky; top: 96px; }
.summary .bezel__core { padding: 28px; }
.summary h3 { margin-bottom: 20px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; padding-block: 10px; font-size: 14.5px; color: var(--ink-2); }
.summary__row b { color: var(--ink); font-weight: 700; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line-strong); margin-top: 12px; padding-top: 18px; }
.summary__total b { font-family: var(--f-display); font-size: 24px; font-weight: 700; }
.summary .btn { width: 100%; justify-content: space-between; margin-top: 22px; }
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.2em; color: var(--ink-2); font-size: 17px; }
.prose p strong { color: var(--ink); }
.prose h2 { margin: 1.8em 0 .7em; }
.statgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-block: 40px; }
.stat { border-top: 1px solid var(--line-strong); padding-top: 18px; }
.stat b { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); display: block; }
.stat span { font-family: var(--f-text); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-2); }
.head__contact { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; line-height: 1.22; text-align: right; } .head__phones { display: contents; } .head__meta { display: contents; }
.head__phone { font-family: var(--f-text); font-weight: 800; font-size: 20px; letter-spacing: .01em; color: var(--ink); white-space: nowrap; }
.head__phone:hover { color: var(--blue); }
.head__phone--second { font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 0; }
.head__phone--second:hover { color: var(--blue); }
.head__mail { font-family: var(--f-text); font-size: 12px; color: var(--ink-2); white-space: nowrap; }
.head__mail:hover { color: var(--blue); }
.head__hours { font-size: 11.5px; color: var(--ink-3); white-space: nowrap; }
.head__callbtn { display: none !important; }
.trustbar { border-block: 1px solid var(--line); background: var(--paper-2); }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 16px; }
.trust { display: flex; align-items: center; gap: 13px; min-width: 0; }
.trust__ic { flex: none; width: 30px; height: 30px; color: var(--blue); }
.trust__ic svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.6; fill: none; }
.trust b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.trust span { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.shead__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-text); font-size: 15px; font-weight: 700;
  letter-spacing: 0; text-transform: none;
  color: #fff; background: var(--blue);
  padding: 12px 22px; border-radius: var(--r-chip); border: 0; padding-bottom: 12px;
  white-space: nowrap;
  transition: background .3s var(--spring), transform .3s var(--spring);
}
.shead__link:hover { color: #fff; background: var(--blue-deep); border: 0; transform: translateX(2px); }
.pgrid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.pcard__photo { aspect-ratio: 1 / 0.86; }
.pcard__body { padding: 20px 22px 22px; }
.pcard__sku { font-size: 11.5px; }
.pcard__name { font-size: 19px; }
.pcard__spec { font-size: 13.5px; }
.pcard__price { font-size: 23px; }
.pcard__price small { font-size: 10.5px; }
.pcard__tag { font-size: 11px; padding: 6px 12px; }
.btn--sm { padding: 8px 8px 8px 20px; font-size: 15px; gap: 10px; }
.btn--sm .btn__ic { width: 32px; height: 32px; }
.btn--sm .btn__ic svg { width: 14px; height: 14px; }
.tile { min-height: 210px; padding: 28px; }
.tile h3 { font-size: 20px; }
.tile p { font-size: 14.5px; }
.tile__img { width: 42%; max-width: 240px; }
.tile--main { min-height: 440px; }
@media (max-width: 1120px) {
  .hero { padding-top: clamp(24px, 3.5vw, 52px); padding-bottom: clamp(24px, 3.5vw, 46px); }
  .hero h1 { margin: 14px 0 16px; }
  .hero__facts { margin-top: 26px; padding-top: 18px; }
  .hero__photo { aspect-ratio: 1 / 0.82; }
  .hero__visual { width: 100%; max-width: 560px; margin-inline: auto; }
}
.tradein { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  background: var(--ink); color: var(--paper); border-radius: var(--r-outer); overflow: hidden; }
.tradein__copy { padding: clamp(22px, 3vw, 38px) clamp(26px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.tradein__eyebrow { align-self: flex-start; font-family: var(--f-text); font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 6px 14px; border-radius: var(--r-chip); margin-bottom: 20px; }
.tradein__copy h2 { color: var(--paper); margin: 0; }
.tradein__copy p { color: rgba(255,255,255,.72); margin-top: 16px; max-width: 42ch; font-size: 16px; }
.tradein__steps { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; }
.tradein__steps div { display: flex; flex-direction: column; gap: 3px; }
.tradein__steps b { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--paper); }
.tradein__steps span { font-size: 12.5px; color: rgba(255,255,255,.6); }
@media (max-width: 600px) {
  .hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
  .tradein__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .hero__facts > div:last-child:nth-child(odd),
  .tradein__steps > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.tradein__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 30px; }
.tradein__phone { font-family: var(--f-text); font-weight: 800; font-size: 20px; color: #fff; white-space: nowrap; }
.tradein__media { position: relative; min-height: 280px; background: radial-gradient(80% 70% at 50% 45%, var(--white) 0%, var(--paper-2) 100%); }
.tradein__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; mix-blend-mode: multiply; }
@media (max-width: 1120px) {
  .nav { display: none; }
  .head__cart { margin-left: auto; }
  .burger { display: block; }
  .head__phone { display: none; }
  .cat { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product { grid-template-columns: minmax(0, 1fr); }
  .product__gallery { position: static; }
  .cartpage { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .hero__chip--tl { left: 8px; } .hero__chip--br { right: 8px; }
  .bento { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tile--main, .tile--5, .tile--4 { grid-column: span 2; }
  .tile--main { min-height: 320px; }
  .specband__grid { grid-template-columns: 1fr 1fr; }
  .picker { grid-template-columns: 1fr; }
  .picker__result { position: static; }
  .feats { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .lead .bezel__core { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --r-outer: 22px; --r-inner: 15px; }
  body { font-size: 15.5px; }
  .head { top: 10px; margin-top: 10px; }
  .head__pill { gap: 12px; padding: 8px 8px 8px 18px; }
  .hero__grid { display: none; }
  .hero__facts { gap: 0 24px; }
  .feats { grid-template-columns: 1fr; }
  .specband__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .cline { grid-template-columns: 84px minmax(0, 1fr); }
  .cline__ph { width: 84px; height: 72px; }
  .cline__right { grid-column: 1 / -1; justify-content: space-between; }
  .shead { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pgrid { grid-template-columns: 1fr; }
  .tile h3 { overflow-wrap: normal; word-break: normal; hyphens: manual; }
}
@media (max-width: 1120px) {
  .head__contact { display: none; }
  .head__callbtn { display: none; place-items: center; width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue); color: #fff; flex: none; }
  .head__callbtn svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.9; fill: none; }
  .trustbar .container { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .tradein { grid-template-columns: 1fr; }
  .tradein__media { min-height: 220px; order: -1; }
}
@media (max-width: 560px) {
  .trustbar .container { grid-template-columns: 1fr; gap: 12px; }
  .shead { align-items: stretch; }
  .shead__link { align-self: flex-start; }
}
.kb { display: grid; gap: clamp(38px, 5vw, 60px); max-width: 900px; }
.kb__group { min-width: 0; }
.kb__toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.kb__toc a { font-family: var(--f-text); font-size: 14.5px; font-weight: 600; padding: 9px 18px; border-radius: var(--r-chip);
  background: var(--paper-2); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); transition: color .3s var(--spring), box-shadow .3s var(--spring); }
.kb__toc a:hover { color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.kb__cat { font-family: var(--f-text); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.kb__q { padding: 26px 0; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.kb__q table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.kb__q h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 12px; }
.kb__q p { color: var(--ink-2); font-size: 16px; margin: 0 0 10px; max-width: 74ch; }
.kb__q p:last-child { margin-bottom: 0; }
.kb__q p strong { color: var(--ink); font-weight: 700; }
.kb__q ul { margin: 4px 0 10px 0; padding-left: 22px; color: var(--ink-2); font-size: 16px; }
.kb__q li { margin-bottom: 6px; }
.kb__cta { margin-top: clamp(40px, 5vw, 64px); }
.pj-faq-cta { margin-top: clamp(40px, 5vw, 64px); padding: clamp(26px, 4vw, 44px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-outer, 24px); max-width: 900px; }
.pj-faq-cta h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin: 0 0 10px; }
.pj-faq-cta p { color: var(--ink-2); font-size: 16px; margin: 0 0 20px; max-width: 62ch; }
.pj-faq-cta__row { display: flex; flex-wrap: wrap; gap: 12px; }
.pj-faq-cta__row .btn { text-decoration: none; }
.article { max-width: 760px; margin-inline: auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; font-family: var(--f-text); font-size: 12px; letter-spacing: .06em; color: var(--ink-2); margin-bottom: 14px; }
.article__cat { color: var(--blue); text-transform: uppercase; letter-spacing: .14em; }
.article__lead { font-size: 19px; line-height: 1.6; color: var(--ink-2); margin: clamp(20px,3vw,30px) 0 clamp(28px,4vw,40px); }
.article__lead strong { color: var(--ink); font-weight: 700; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: clamp(34px,4vw,52px) 0 14px; }
.prose h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--ink-2); }
.prose p strong, .prose li strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { margin: 6px 0 16px 22px; color: var(--ink-2); }
.prose li { margin-bottom: 7px; }
.prose table { margin: 18px 0; }
.callout { display: flex; gap: 14px; align-items: flex-start; margin: 24px 0; padding: 18px 22px; border-radius: var(--r-inner);
  background: var(--blue-tint); color: var(--ink); }
.callout svg { flex: none; width: 22px; height: 22px; stroke: var(--blue); stroke-width: 1.8; fill: none; margin-top: 2px; }
.callout p { margin: 0; color: var(--ink); font-size: 15.5px; }
.afaq { margin-top: clamp(34px,4vw,48px); }
.afaq h3 { font-size: 1.2rem; margin: 20px 0 8px; }
.arelated { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; margin-top: 20px; }
.arelated a { display: block; padding: 20px 22px; border-radius: var(--r-inner); background: var(--paper-2);
  box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); transition: box-shadow .3s var(--spring), transform .3s var(--spring); }
.arelated a:hover { box-shadow: inset 0 0 0 1px var(--blue); transform: translateY(-2px); color: var(--ink); }
.arelated b { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.arelated span { font-size: 13px; color: var(--ink-2); }
.bloglist { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }
.blogcard { display: flex; flex-direction: column; height: 100%; padding: 26px 28px; border-radius: var(--r-outer);
  background: var(--paper-2); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink);
  transition: box-shadow .4s var(--spring), transform .4s var(--spring); }
.blogcard:hover { box-shadow: inset 0 0 0 1px var(--blue), var(--shadow-lift); transform: translateY(-3px); color: var(--ink); }
.blogcard__cat { font-family: var(--f-text); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.blogcard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.blogcard p { font-size: 15px; color: var(--ink-2); margin: 0; }
.blogcard__more { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--blue); font-size: 14.5px; }
.cookie {
  position: fixed; left: var(--gutter); right: var(--gutter); bottom: 16px;
  z-index: var(--z-toast);
  max-width: 780px; margin-inline: auto;
  display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap;
  padding: 16px 20px;
  border-radius: var(--r-inner);
  background: #fdfdfc;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-lift);
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
.cookie[hidden], .cookie.is-hidden { display: none; }
.cookie p { margin: 0; max-width: 58ch; }
.cookie a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie a:hover { color: var(--blue-deep); }
.cookie__btns { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.cookie .btn--sm { white-space: nowrap; }
@media (max-width: 560px) {
  .cookie { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .cookie__btns { margin-left: 0; width: 100%; }
  .cookie__btns .btn { flex: 1; justify-content: center; }
}
.maxwidth-theme, .wrapper, .wrapper_inner, .container_inner {
  max-width: none; margin: 0; padding: 0; background: none; box-shadow: none; border: 0;
}
.bm-header, .bm-header__inner, .bm-drawer, .bm-drawer__nav, .bm-nav,
.bm-search, .bm-cart, .bm-burger, .bm-catbtn, .bm-phone,
.bm-adv, .bm-io, .bm-cat {
  background: none; box-shadow: none; border: 0;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--ink); color: var(--paper); }
.button, .bm-btn, .bm-btn--primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--r-chip);
  background: var(--ink); color: var(--paper);
  font-family: var(--f-text); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  box-shadow: var(--shadow-soft); text-decoration: none;
  transition: transform .5s var(--spring), background .5s var(--spring), box-shadow .5s var(--spring);
}
.button:hover, .bm-btn:hover, .bm-btn--primary:hover {
  color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-lift);
}
.breadcrumb, .bx-breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none;
  font-family: var(--f-text); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2); padding-top: 34px;
}
.bx-breadcrumb-item { display: inline-flex; align-items: center; gap: 8px; }
.bx-breadcrumb-item a, .breadcrumb a { color: var(--ink-2); }
.bx-breadcrumb-item a:hover, .breadcrumb a:hover { color: var(--blue); }
.modern-page-navigation {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 44px;
}
.modern-page-navigation a, .modern-page-navigation .nav-current-page {
  min-width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
  font-family: var(--f-text); font-size: 13px; color: var(--ink);
  border: 1px solid transparent; text-decoration: none;
}
.modern-page-navigation a:hover { border-color: var(--line-strong); }
.modern-page-navigation .nav-current-page { background: var(--ink); color: var(--paper); }
.bx-sbb-empty-cart-container { text-align: center; padding: clamp(40px,6vw,80px) 20px; }
.bx-sbb-empty-cart-text {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.3rem,2.4vw,1.8rem); color: var(--ink);
}
.bx-sbb-empty-cart-desc { color: var(--ink-2); margin-top: 10px; }
.errortext { color: var(--red); }
.notetext, .successtext { color: var(--ink-2); }
.errortext, .notetext, .successtext { display: block; margin: 6px 0; font-size: 13.5px; }
.page-delivery .row { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; }
.page-delivery .col-12 { min-width: 0; }
.dlv-side { position: sticky; top: 96px; }
.dlv-side__card .bezel__core { padding: 26px 26px 28px; }
.dlv-side__lead { font-family: var(--f-display); font-size: 26px; font-weight: 700; line-height: 1.15; margin-top: 12px; }
.dlv-side__note { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.dlv-side__list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.dlv-side__list li { display: flex; flex-direction: column; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dlv-side__list li:last-child { border-bottom: none; padding-bottom: 0; }
.dlv-side__list b { font-size: 14.5px; font-weight: 600; }
.dlv-side__list span { font-size: 13.5px; color: var(--ink-2); }
.dlv-side__h { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); margin-top: 24px; }
.dlv-side__phone { display: block; font-family: var(--f-display); font-size: 18px; font-weight: 600; margin-top: 8px; }
.dlv-side__btn { width: 100%; justify-content: center; margin-top: 22px; }
@media (max-width: 1100px) {
  .page-delivery .row { grid-template-columns: 1fr; gap: 28px; }
  .dlv-side { position: static; }
  .dlv-side__card { max-width: 520px; }
}
.text-content table:not(.data-table):not(.specs):not(.replacement-table),
.prose table:not(.data-table):not(.specs):not(.replacement-table),
.faq table:not(.data-table):not(.specs):not(.replacement-table),
.kb table:not(.data-table):not(.specs):not(.replacement-table) {
  width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px;
}
.text-content table:not(.data-table):not(.specs) th,
.text-content table:not(.data-table):not(.specs) td,
.prose table:not(.data-table):not(.specs) th,
.prose table:not(.data-table):not(.specs) td,
.faq table:not(.data-table):not(.specs) th,
.faq table:not(.data-table):not(.specs) td,
.kb table:not(.data-table):not(.specs) th,
.kb table:not(.data-table):not(.specs) td {
  padding: 11px 16px 11px 0; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.text-content table:not(.data-table):not(.specs) th,
.prose table:not(.data-table):not(.specs) th,
.faq table:not(.data-table):not(.specs) th,
.kb table:not(.data-table):not(.specs) th {
  font-family: var(--f-text); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2); font-weight: 500;
  border-bottom-width: 2px; white-space: nowrap;
}
.text-content table:not(.data-table):not(.specs) tr:last-child td,
.prose table:not(.data-table):not(.specs) tr:last-child td,
.faq table:not(.data-table):not(.specs) tr:last-child td,
.kb table:not(.data-table):not(.specs) tr:last-child td { border-bottom: none; }
@media (max-width: 640px) {
  .text-content table:not(.data-table):not(.specs),
  .prose table:not(.data-table):not(.specs),
  .faq table:not(.data-table):not(.specs),
  .kb table:not(.data-table):not(.specs) { font-size: 14px; }
  .text-content table:not(.data-table):not(.specs) th,
  .text-content table:not(.data-table):not(.specs) td,
  .prose table:not(.data-table):not(.specs) th,
  .prose table:not(.data-table):not(.specs) td,
  .faq table:not(.data-table):not(.specs) th,
  .faq table:not(.data-table):not(.specs) td,
  .kb table:not(.data-table):not(.specs) th,
  .kb table:not(.data-table):not(.specs) td { padding: 9px 12px 9px 0; }
}
.data-table, .replacement-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td,
.replacement-table th, .replacement-table td {
  text-align: left; padding: 14px 4px; border-bottom: 1px solid var(--line); vertical-align: baseline;
}
.data-table th, .replacement-table th {
  font-family: var(--f-text); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
}
.consent-check { display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; color: var(--ink-2); }
.consent-check input { margin-top: 3px; width: 15px; height: 15px; accent-color: var(--blue); flex: none; }
.page__content *, .checkout__content * { box-sizing: border-box; }
.nav ul,
.nav ol,
.navdrop__panel ul,
.mnav ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav li,
.navdrop__panel li,
.mnav li {
  list-style: none !important;
  margin: 0;
}
.nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--r-chip);
  font-family: var(--f-text);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s var(--spring), color .18s var(--spring);
}
.nav > ul > li > a:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  color: var(--ink);
}
.nav > ul > li > a[aria-current="page"],
.nav > ul > li.selected > a {
  color: var(--blue);
}
.navdrop__mega .menu-catalog__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.navdrop__mega .menu-catalog__item { margin: 0; }
.navdrop__mega .menu-catalog__wrapper > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 14px 20px;
  border-radius: var(--r-inner);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s var(--spring), transform .2s var(--spring);
}
.navdrop__mega .menu-catalog__wrapper > a:hover {
  background: var(--paper-2);
  transform: translateY(-1px);
}
.navdrop__mega img {
  width: 84px;
  height: 66px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.bento:empty { display: none; }
.nav .header-menu { flex: 0 1 auto; }
.nav .header-menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.nav .header-menu li {
  display: inline-flex !important;
  list-style: none !important;
  margin: 0;
}
.nav .header-menu li > a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 10px;
  border-radius: var(--r-chip);
  font-family: var(--f-text);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s var(--spring), color .18s var(--spring);
}
.nav .header-menu li > a:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }
.nav .header-menu li.selected > a { color: var(--blue); }
.navdrop__panel .menu-catalog-content { display: none !important; }
.navdrop__panel { max-height: min(70vh, 560px); overflow: hidden auto; }
.page-product__content {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.page-product__sidebar { position: sticky; top: 96px; }
.page-product__inner { min-width: 0; }
@media (max-width: 991px) {
  .page-product__content { grid-template-columns: minmax(0, 1fr); }
  .page-product__sidebar { position: static; }
}
.catalog-filter-btn { display: none; }
@media (max-width: 991px) {
  .page-product__content > .page-product__sidebar { order: -1; }
  .catalog-filter-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; margin: 4px 0 20px; padding: 14px 18px;
    border: 1px solid var(--line-strong, #d8cfc0); border-radius: 14px;
    background: var(--white, #fff); color: var(--ink);
    font-family: var(--f-body, inherit); font-weight: 700; font-size: 15px; cursor: pointer;
  }
  .catalog-filter-btn svg { width: 18px; height: 18px; flex: none; }
  .page-product__sidebar-filter {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(88vw, 360px); z-index: 1200; overflow-y: auto;
    background: var(--paper, #f5f0e8); padding: 58px 16px 28px;
    transform: translateX(100%); transition: transform .32s var(--spring, ease);
    box-shadow: -14px 0 44px rgba(0,0,0,.22);
  }
  body.filters-open .page-product__sidebar-filter { transform: translateX(0); }
  .page-product__sidebar-filter .filters { position: static !important; top: auto; }
  .filters-drawer-backdrop {
    position: fixed; inset: 0; z-index: 1190; background: rgba(20,18,16,.5);
    opacity: 0; pointer-events: none; transition: opacity .32s;
  }
  body.filters-open .filters-drawer-backdrop { opacity: 1; pointer-events: auto; }
  body.filters-open { overflow: hidden; }
  .filters-drawer-close {
    position: absolute; top: 12px; right: 14px; z-index: 3;
    width: 38px; height: 38px; border: 0; border-radius: 50%;
    background: var(--ink); color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  }
}
.page-product__sidebar .accordion-menu {
  list-style: none !important;
  margin: 0 0 20px;
  padding: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-outer);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-product__sidebar .accordion-menu > li { list-style: none !important; }
.page-product__sidebar .accordion-menu .top-lvl,
.page-product__sidebar .accordion-menu .menu-catalog__wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-product__sidebar .accordion-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--r-chip);
  font-family: var(--f-text);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  transition: background .18s var(--spring), color .18s var(--spring);
}
.page-product__sidebar .accordion-menu a:hover { background: var(--white); color: var(--blue); }
.page-product__sidebar .accordion-menu img.menu-catalog__img {
  width: 34px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex: 0 0 auto;
}
.page-product__sidebar .accordion-menu ul {
  list-style: none !important;
  margin: 2px 0 2px 12px;
  padding: 0 0 0 10px;
  border-left: 1px solid var(--line);
}
.page-product__sidebar .accordion-menu ul a { font-weight: 500; font-size: 13.5px; color: var(--ink-2); }
.page-product__sidebar .accordion-menu { gap: 4px; }
.page-product__sidebar .accordion-menu > li { margin: 0 !important; }
.page-product__sidebar .accordion-menu .dropdownlink {
  background: transparent !important;
  border: 0 !important;
  border-radius: var(--r-inner, 15px) !important;
  box-shadow: none !important;
  height: auto !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer;
  transition: background .2s var(--spring), color .2s var(--spring);
}
.page-product__sidebar .accordion-menu .dropdownlink:hover { background: var(--white) !important; color: var(--blue); }
.page-product__sidebar .accordion-menu .top-lvl { width: 100%; align-items: center; }
.page-product__sidebar .accordion-menu .menu-catalog__wrapper { flex: 0 0 auto; width: auto; }
.page-product__sidebar .accordion-menu .top-lvl > span { text-align: left; line-height: 1.25; }
.sort-list, .sorting ul, .catalog-sort ul, .page-product__inner .sort ul {
  list-style: none !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.sort-list li, .sorting li, .catalog-sort li { list-style: none !important; margin: 0; }
.sort-list a, .sorting a, .catalog-sort a {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--r-chip);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--f-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-2);
  text-decoration: none;
}
.sort-list a:hover, .sorting a:hover, .catalog-sort a:hover { color: var(--blue); border-color: var(--blue); }
main ul.list, main .sort ul, main .accordion-menu, main .accordion-menu ul { list-style: none !important; }
img, svg, video { max-width: 100%; }
.prose table, .article table, .product table.specs {
  display: block; max-width: 100%; overflow-x: auto;
}
a.consent-link {
  display: inline;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.head__pill   { min-width: 0; }
.head__search { min-width: 0; }
.head__cart { flex: 0 0 auto; }
.head__cart .mini-cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(25,29,36,0.07);
  background: color-mix(in oklab, var(--ink) 7%, transparent);
}
.head__cart .mini-cart__text  { display: none; }
.head__cart .mini-cart__icon  { font-size: 19px; line-height: 1; color: var(--ink); }
.head__cart .mini-cart__count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-text); font-size: 11px; font-weight: 700; line-height: 1;
  color: #fff; background: var(--red); border-radius: var(--r-chip);
}
label.consent-check {
  display: block; position: relative;
  padding-left: 28px; max-width: 100%;
  line-height: 1.45; font-size: 12.5px;
}
label.consent-check > input[type="checkbox"] {
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; margin: 0;
  accent-color: var(--blue);
}
label.consent-check > span { display: none; }
.call .call-form__input,
.letter .letter-form__input,
.letter .letter-form__textarea,
.mfeedback .s-four__input,
.mfeedback .s-four__textarea,
.mfeedback .letter-form__input,
.mfeedback .letter-form__textarea,
.call-form__input,
.letter-form__input,
.letter-form__textarea,
.s-four__input,
.s-four__textarea {
  box-sizing: border-box; width: 100%; max-width: 100%;
  min-height: 48px; padding: 13px 16px;
  border: 1px solid var(--line-strong); border-radius: 14px;
  background: var(--white); color: var(--ink);
  font-family: inherit; font-size: 16px; line-height: 1.3;
}
.letter .letter-form__textarea,
.mfeedback .s-four__textarea,
.mfeedback .letter-form__textarea,
.letter-form__textarea,
.s-four__textarea { min-height: 120px; resize: vertical; }
.call-form__input:focus,
.letter-form__input:focus,
.letter-form__textarea:focus,
.s-four__input:focus,
.s-four__textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--blue) 18%, transparent);
}
.call-form, .letter-form, .mfeedback, .mfeedback form { max-width: 100%; box-sizing: border-box; }
.call-form__button,
.mfeedback button[type="submit"],
.s-four__button,
.letter-form__button { min-height: 48px; }
.pcard__foot { flex-wrap: wrap; row-gap: 12px; align-items: center; }
.pcard__foot > * { min-width: 0; }
.pcard__foot .pcard__price { flex: 1 1 auto; }
.pcard__foot .add2cart { flex: 1 1 150px; }
.pcard__foot .add2cart .btn--buy { width: 100%; }
.products-price-slider .products-price-slider__text { font-size: 12px; }
.filters .fgroup b,
.smartfilter .fgroup b { font-size: 13px; line-height: 1.3; }
.pcard__price small { font-size: 12px; }
.buybox .price-big small { font-size: 12px; }
.footer .footer-menu__link { display: inline-block; padding: 10px 0; line-height: 1.25; }
@media (min-width: 1280px) {
  .head__pill   { gap: 16px; }
  .head__search { flex: 0 1 200px; }
  .head__search .search-form__input { width: 100%; box-sizing: border-box; }
}
@media (min-width: 1121px) and (max-width: 1279px) {
  .head__pill    { gap: 16px; }
  .head__contact { display: none; }
  .head__callbtn {
    display: none; place-items: center; width: 46px; height: 46px;
    border-radius: 50%; background: var(--blue); color: #fff; flex: none; margin: 0;
  }
  .head__callbtn svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.9; fill: none; }
  .head__search  { display: none; }
}
@media (min-width: 1024px) {
  .footer .footer__inner { grid-template-columns: 1fr !important; }
  .footer .footer__brand {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-areas:
      "logo   legal"
      "about  legal"
      "social legal"
      "bottom bottom";
    column-gap: 64px; align-items: start;
  }
  .footer .footer__brand > .logo           { grid-area: logo; }
  .footer .footer__brand > .footer__about  { grid-area: about; }
  .footer .footer__brand > .footer__social { grid-area: social; }
  .footer .footer__brand > .footer__legal  { grid-area: legal; }
  .footer .footer__brand > .footer__bottom { grid-area: bottom; }
  .footer .footer__info .row { grid-template-columns: repeat(3, minmax(150px, 1fr)) !important; }
}
@media (max-width: 1120px) {
  .head__callbtn { margin-left: auto; }
}
@media (max-width: 1023px) {
  .page-product__content { display: flex; flex-direction: column; gap: 28px; }
  .page-product__inner   { order: 1; }
  .page-product__sidebar { order: 2; }
}
@media (max-width: 768px) {
  .head__search { display: none; }
}
@media (max-width: 560px) {
  .buybox__row:has(.add2cart) { column-gap: 0; row-gap: 16px; }
  .buybox__row:has(.add2cart) .add2cart,
  .buybox__row:has(.add2cart) .btn--ghost { flex: 1 1 100%; }
  .buybox__row:has(.add2cart) .btn--buy   { width: 100%; }
  .cookie-modal { bottom: 12px !important; }
  .cookie-modal .container { padding: 0 12px; }
  .cookie-modal .cookie-modal__content { padding: 14px 16px !important; gap: 12px !important; }
  .cookie-modal .cookie-modal__descr._mob p { font-size: 13px; line-height: 1.35; margin: 0; }
  .cookie-modal .cookie-modal__btn {
    width: auto !important; align-self: flex-start;
    padding: 9px 22px !important; min-height: 40px;
  }
}
@media (min-width: 900px) {
  .cookie-modal { left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100% !important; max-width: none !important; }
  .cookie-modal .container { max-width: 1440px !important; padding: 0 24px !important; margin: 0 auto !important; }
}
@media (min-width: 900px) {
  .cookie-modal .cookie-modal__content { padding: 20px 24px; gap: 24px; }
  .cookie-modal .cookie-modal__descr { font-size: 13px; line-height: 1.3; }
}
@media (min-width: 700px) and (max-width: 899px) {
  .cookie-modal .cookie-modal__content {
    flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px 24px;
  }
  .cookie-modal .cookie-modal__descr { flex: 1 1 300px; min-width: 0; margin: 0; }
  .cookie-modal .cookie-modal__descr p { margin: 0; }
  .cookie-modal .cookie-modal__consent { flex: 1 1 220px; min-width: 0; }
  .cookie-modal .cookie-modal__btn { flex: 0 0 auto; white-space: nowrap; align-self: center; }
}
.cookie-modal { pointer-events: none; }
.cookie-modal .cookie-modal__content { pointer-events: auto; }
@supports selector(:has(*)) {
  body:has(.cookie-modal:not([hidden]):not(.is-hidden)) { scroll-padding-bottom: 160px; }
}
@media (max-width: 899px) {
  .cookie-modal { bottom: 0 !important; left: 0 !important; right: 0 !important; }
  main { padding-bottom: 0; }
  .footer { margin-top: 56px; }
}
.call-time__list, .call-time__list > .call-time__item {
  list-style: none !important; margin-left: 0; padding-left: 0;
}
a.logo span { font-size: 12px !important; line-height: 1.35; }
.hero__facts span, .hero__chip span, .hero__chip--tl span, .hero__chip--br span { font-size: 12px !important; }
a.logo, .footer a, .call-time__item, .products-sort a, .cookie-modal a {
  min-height: 32px; display: inline-flex; align-items: center;
}
input[type="search"], .search input, .head__search input { min-height: 34px; }
.hero__facts span { font-size: 10.5px !important; letter-spacing: .14em !important; }
.hero__chip span,
.hero__chip--tl span,
.hero__chip--br span { font-size: 9.5px !important; letter-spacing: .12em !important; }
.hero__sub { margin-bottom: 0; }
.btn { line-height: 1.65; border: 0; }
.page-product .container .container.product { max-width: none; padding-left: 0; padding-right: 0; }
.page-product .buybox__row #two2cart { display: contents; }
.page-product .buybox__row #add:empty { display: none; }
.page-product .buybox .btn { line-height: 1.65; border: 0; }
@media (max-width: 560px) {
  .page-product .buybox__row:has(.add2cart) .btn--ghost { flex: 0 0 auto; }
}
.page-product__content { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 1120px) {
  .page-product__content { display: grid; grid-template-columns: minmax(0, 1fr); }
  .page-product__sidebar { position: static; order: 0; }
  .page-product__inner   { order: 0; width: auto; }
}
.pgrid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
@media (min-width: 561px) and (max-width: 819px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}
.pcard .pcard__foot { flex-wrap: wrap; gap: 10px 12px; }
.pcard .pcard__foot .pcard__price { flex: 1 1 auto; }
.pcard .pcard__foot .add2cart { flex: 1 1 150px; margin: 0; }
.pcard .pcard__foot .add2cart .btn--buy.btn--sm {
  padding: 8px 8px 8px 20px !important; border: 0; height: auto; width: 100%;
}
.products-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; }
.products-controls .products-sort { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.products-controls .products-sort__text { margin: 0; font-family: var(--f-text); font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); }
.products-controls .products-sort__list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none !important; }
.products-controls .products-sort__item { margin: 0; list-style: none !important; }
.products-controls a.products-sort__link {
  display: inline-flex; align-items: center; min-height: 0; padding: 8px 15px;
  border-radius: var(--r-chip); border: 1px solid var(--line-strong); background: transparent;
  font-family: var(--f-text); font-weight: 600; font-size: 13px; letter-spacing: 0; text-transform: none;
  color: var(--ink); text-decoration: none;
  transition: background .3s var(--spring), border-color .3s var(--spring), color .3s var(--spring);
}
.products-controls a.products-sort__link:hover { border-color: var(--ink); color: var(--ink); }
.products-controls a.products-sort__link.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.toolbar__count { margin-left: auto; font-family: var(--f-text); font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-2); }
.head .head__search { display: none !important; }
.head .logo span { font-size: 9px !important; line-height: 1 !important; letter-spacing: .16em !important; white-space: nowrap !important; }
.head .logo { align-items: flex-start !important; }
.head .head__cart .mini-cart { background: var(--ink) !important; }
.head .head__cart .mini-cart__icon { color: var(--paper) !important; }
.head .nav { flex-wrap: nowrap !important; }
@media (min-width: 1280px) { .head .head__pill { gap: 22px !important; } }
@media (min-width: 1024px) {
  .footer .footer__inner { grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.5fr)) !important; }
  .footer .footer__info .row { grid-template-columns: none !important; }
}
.footer .footer__info .row { display: flex; flex-direction: column; gap: 18px; margin: 0; }
.footer .footer__info [class*="col-"] { width: auto; max-width: 100%; flex: none; padding: 0; margin: 0; }
.footer .footer__info [class*="col-"]:nth-child(n+4) { display: none; }
.footer .footer__col--contacts .footer__info [class*="col-"]:first-child .footer-info__title { display: none; }
.footer .footer-info__title { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; font-weight: 500; opacity: .5; margin-bottom: 8px; color: var(--paper); }
.footer .footer-info__content { font-size: 13.5px; line-height: 1.7; opacity: .72; color: var(--paper); }
.footer .footer-info__content a { color: var(--paper); opacity: 1; }
.footer .footer-info__content a:hover { text-decoration: underline; }
.footer .footer__bottom .footer-bot__content { display: flex; flex-wrap: wrap; gap: 6px 24px; align-items: center; }
.footer .footer__bottom .copy { font-family: var(--f-text); font-size: 11.5px; letter-spacing: .02em; opacity: .55; color: var(--paper); }
.footer .footer__bottom .copy__link { color: var(--paper); opacity: 1; text-decoration: underline; text-underline-offset: 2px; }
.footer .footer__legal { display: flex; align-items: center; }
.footer .footer__legal .menu-trigger, .footer .footer__legal .footer-menu__trigger { display: none !important; }
.footer .footer__legal ul { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }
.footer .footer__legal a { font-family: var(--f-text); font-size: 11.5px; letter-spacing: .04em; color: rgba(247,246,242,.7); }
.footer .footer__legal a:hover { color: var(--paper); }
.footer .logo { align-items: flex-start !important; }
.footer .logo span { font-size: 9px !important; line-height: 1 !important; letter-spacing: .16em !important; white-space: nowrap !important; }
@media (max-width: 560px) { .footer .footer__bottom { flex-direction: column; align-items: flex-start; } }
.head .head__cart .mini-cart {
  background: var(--ink) !important;
  border-radius: 50% !important;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.head .head__cart .mini-cart__block {
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; height: auto;
}
.head .head__cart .mini-cart__icon { color: var(--paper) !important; width: 20px; height: 20px; display: block; }
.head .head__cart .mini-cart__text { display: none !important; }
.head .head__cart .mini-cart__count {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: var(--f-text); font-size: 10.5px; font-weight: 600;
  border-radius: 999px; border: 2px solid var(--paper);
  line-height: 1;
}
@media (max-width: 1120px) {
  .page-product__content { display: flex !important; flex-direction: column; }
  .page-product__inner { order: -1; }
  .page-product__sidebar { order: 1; }
}
.footer .footer__legal li:has(> a[href=""]) { display: none; }
.footer .footer__legal a:empty { display: none; }
@media (max-width: 560px) {
  .footer .footer__bottom { gap: 18px; }
  .footer .footer__legal ul { flex-direction: column; gap: 12px; }
}
.pj-home .picker__lead { color: var(--ink-2); font-size: 16px; margin: 0 0 24px; max-width: 46ch; }
.pj-home .home-calc__form { display: flex; flex-direction: column; gap: 22px; }
.pj-home .home-calc__group { display: flex; flex-direction: column; gap: 10px; }
.pj-home .home-calc__label { font-family: var(--f-text); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); }
.pj-home .home-calc__select {
  font: inherit; font-size: 16px; color: var(--ink); width: 100%;
  padding: 13px 44px 13px 16px; border-radius: 14px; border: 1px solid var(--line-strong);
  background: var(--white); cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.pj-home .home-calc__select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in oklab, var(--blue) 18%, transparent); }
.pj-home .home-calc__button { margin-top: 6px; align-self: flex-start; }
.pj-home .picker__result .mono { font-family: var(--f-text); font-size: 12px; letter-spacing: .04em; color: var(--ink-2); }
.pj-home .tradein__form { background: var(--paper); color: var(--ink); padding: clamp(22px, 3vw, 36px); display: flex; align-items: center; }
.pj-home .tradein__form .mfeedback { width: 100%; }
.pj-home .tradein__form .s-four__block { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pj-home .tradein__form .s-four__left,
.pj-home .tradein__form .s-four__right { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.pj-home .tradein__form .consent-check { margin-top: 4px; color: var(--ink-2); }
.pj-home .tradein__form .s-four__submit {
  width: 100%; margin-top: 18px; min-height: 52px; border: none; border-radius: var(--r-chip);
  background: var(--blue); color: #fff; font-family: inherit; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: filter .3s;
}
.pj-home .tradein__form .s-four__submit:hover { filter: brightness(1.08); }
.pj-home .lead__cta { display: flex; flex-direction: column; gap: 14px; }
.pj-home .lead__cta .btn { align-self: stretch; justify-content: space-between; margin-top: 0; }
.pj-home .lead__note { font-size: 12.5px; color: var(--ink-2); margin-top: 6px; }
.pj-home .lead__note a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 640px) { .pj-home .tradein__form .s-four__block { grid-template-columns: 1fr; } }
.repair-slider-wrapper, .repair-slider, .repair-slider__list { overflow: hidden !important; max-width: 100%; }
.repair-slider:not(.slick-initialized) .repair-slider__list { display: flex; overflow-x: auto; }
.repair-slider:not(.slick-initialized) .repair-slider__item { flex: 0 0 auto; max-width: 100%; }
.repair-slider.slick-initialized { position: relative; padding: 0 52px; }
.repair-slider .repair-slider__slide { height: auto; }
.repair-slider .repair-slider__list { display: flex; gap: 14px; margin: 0; padding: 0; list-style: none; }
.repair-slider .repair-slider__item { list-style: none; width: 260px; display: flex; }
.repair-slider .repair-service {
  display: flex; flex-direction: column; gap: 14px; width: 100%;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-inner); padding: 20px 20px 18px;
}
.repair-slider .repair-service__title { font-weight: 700; font-size: 15.5px; line-height: 1.32; color: var(--ink); }
.repair-slider .repair-service__title br { display: none; }
.repair-slider .repair-service__button { margin-top: auto; }
.repair-slider .slick-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; padding: 0; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: 0; line-height: 0; color: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--spring), border-color .3s var(--spring);
}
.repair-slider .slick-prev { left: 0; }
.repair-slider .slick-next { right: 0; }
.repair-slider .slick-arrow::before {
  content: ""; width: 9px; height: 9px; display: block; box-sizing: border-box;
  border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
}
.repair-slider .slick-prev::before { transform: rotate(-135deg); margin-left: 3px; }
.repair-slider .slick-next::before { transform: rotate(45deg); margin-right: 3px; }
.repair-slider .slick-arrow:hover { border-color: var(--ink); background: var(--white); }
.repair-slider .slick-arrow.slick-disabled { opacity: .3; cursor: default; }
.repair-slider .slick-dots { display: flex; justify-content: center; align-items: center; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.repair-slider .slick-dots li { width: 9px; height: 9px; margin: 0; }
.repair-slider .slick-dots li button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line-strong); font-size: 0; line-height: 0; color: transparent; cursor: pointer;
  transition: background .3s var(--spring), transform .3s var(--spring);
}
.repair-slider .slick-dots li.slick-active button { background: var(--blue); transform: scale(1.25); }
@media (max-width: 560px) {
  .repair-slider.slick-initialized { padding: 0 44px; }
  .repair-slider .repair-slider__item { width: 210px; }
}
main a { overflow-wrap: anywhere; word-break: break-word; }
.sitemap a, main .container a { max-width: 100%; }
.page:not(.page-categories):not(.page-product) img,
.page:not(.page-categories):not(.page-product) .page__content ul:not([class]),
.page:not(.page-categories):not(.page-product) .page__content ol:not([class]) {
  padding-left: 0; margin-left: 0; list-style-position: inside;
}
.page:not(.page-categories):not(.page-product) .page__content ul:not([class]) > li,
.page:not(.page-categories):not(.page-product) .page__content ol:not([class]) > li {
  padding-left: 0; text-indent: 0;
}
iframe[src*="youtube"], iframe[src*="youtu.be"] { display: none !important; }
.embed-responsive:has(> iframe[src*="youtube"]),
.embed-responsive:has(> iframe[src*="youtu.be"]) { display: none !important; }
.page:not(.page-categories):not(.page-product) iframe,
.page:not(.page-categories):not(.page-product) table { max-width: 100%; }
.page:not(.page-categories):not(.page-product) table { display: block; overflow-x: auto; }
@media (max-width: 620px) {
  .data-table, .data-table tbody, .data-table tr, .data-table td,
  .replacement-table, .replacement-table tbody, .replacement-table tr, .replacement-table td {
    display: block; width: auto; max-width: none; overflow: visible;
  }
  .data-table thead, .replacement-table thead { display: none; }
  .data-table tr, .replacement-table tr {
    border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px;
  }
  .data-table td, .replacement-table td {
    padding: 3px 0; border: 0; white-space: normal;
  }
  .data-table td:first-child, .replacement-table td:first-child {
    font-weight: 700; font-size: 15.5px; margin-bottom: 4px;
  }
  .replacement-table td:nth-of-type(2)::before { content: "Деталь: "; }
  .replacement-table td:nth-of-type(3)::before { content: "Артикул: "; }
  .replacement-table td:nth-of-type(4)::before { content: "Где купить: "; }
  .replacement-table td:nth-of-type(n+2)::before {
    font-family: var(--f-text); font-size: 10.5px; letter-spacing: .06em;
    text-transform: uppercase; color: var(--ink-2); font-weight: 500; margin-right: 6px;
  }
}
.menu-catalog-product__img[src=""], .menu-catalog-product__img:not([src]) { display: none; }
.page-product__content:not(:has(.page-product__sidebar)) {
  display: block !important;
  grid-template-columns: none !important;
}
.page-product__content:not(:has(.page-product__sidebar)) .page-product__inner {
  width: 100%;
  max-width: 100%;
}
.bx-sbb-empty-cart-image img[src=""],
.bx-sbb-empty-cart-image img:not([src]),
.bx-sbb-empty-cart-image:empty { display: none !important; }
@media (max-width: 768px) {
  .list:has(.rec) { display: block !important; grid-template-columns: 1fr !important; }
  li.rec { display: block !important; width: 100% !important; min-height: 0 !important; }
  li.rec a { display: inline-block; white-space: normal; word-break: break-word; }
}
@media (max-width: 768px) {
  .list ul:has(li.rec), ul:has(> li.rec) { column-count: 1 !important; column-width: auto !important; }
}
.pj-card-ux { margin-top: clamp(30px, 4vw, 54px); }
.pj-card-ux .tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
}
.pj-card-ux .tile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 0; padding: 20px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-inner);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--ink);
  transition: transform .5s var(--spring), box-shadow .5s var(--spring), border-color .5s var(--spring);
}
.pj-card-ux .tile:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--line-strong);
}
.pj-card-ux .tile__label {
  font-family: var(--f-text); font-size: 10.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-2); line-height: 1.35;
}
.pj-card-ux .tile__val {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -.01em; line-height: 1;
  color: var(--ink); margin-top: auto;
}
.pj-card-ux .tile__val span {
  font-family: var(--f-text); font-weight: 500; font-size: .5em;
  letter-spacing: .04em; color: var(--ink-2); margin-left: 4px;
}
.pj-card-ux .tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 clamp(24px, 3vw, 34px); padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.pj-card-ux .tabs a {
  flex: 0 0 auto; padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent;
  font-family: var(--f-text); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap; cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.pj-card-ux .tabs a:hover { color: var(--blue); border-color: var(--blue); }
.pj-card-ux .tabs a.on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
@media (max-width: 620px) {
  .pj-card-ux .tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .pj-card-ux .tabs a {
    flex: none; width: 100%; padding: 10px 8px; text-align: center;
    justify-content: center; font-size: 10px; letter-spacing: .05em;
  }
  .pj-card-ux .tabs a:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.pj-card-ux .sec.is-hidden { display: none; }
.pj-card-ux .sec:not(.is-hidden) { animation: pjTabIn .38s var(--spring) both; }
@keyframes pjTabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pj-card-ux .sec:not(.is-hidden) { animation: none; } }
.pj-card-ux .sec > .eyebrow { margin-bottom: 18px; }
.pj-readmore { display: flex; justify-content: center; margin: 8px 0 2px; }
.pj-readmore button {
  font-family: var(--f-text, inherit); font-weight: 700; font-size: 14px; letter-spacing: .01em;
  padding: 12px 26px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: var(--white); color: var(--ink); cursor: pointer;
  transition: border-color .2s var(--spring), background .2s var(--spring), color .2s var(--spring);
}
.pj-readmore button:hover { border-color: var(--ink); color: var(--blue); }
@media (min-width: 769px) { .pj-readmore { display: none !important; } }
@media (max-width: 768px) {
  .pj-card-ux .sec.pj-clamp:not(.pj-open) { max-height: 64vh; overflow: hidden; position: relative; }
  .pj-card-ux .sec.pj-clamp:not(.pj-open)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
    background: linear-gradient(rgba(0,0,0,0), var(--paper)); pointer-events: none;
  }
  .pj-card-ux #sec-desc .pj-img-scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 14px 0;
    border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  }
  .pj-card-ux #sec-desc .pj-img-scroll img {
    max-width: none !important; width: auto !important; height: auto; display: block;
  }
}
@media (max-width: 480px) {
  .pj-card-ux .tile { padding: 16px 16px; }
  .pj-card-ux .tile__label { font-size: 9px; letter-spacing: .05em; overflow-wrap: anywhere; word-break: break-word; }
}
.pj-card-ux .sec table { width: 100%; max-width: 760px; border-collapse: collapse; }
.pj-card-ux .sec th, .pj-card-ux .sec td { text-align: left; padding: 15px 4px; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.pj-card-ux .sec th {
  font-family: var(--f-text); font-size: 13px; letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600; width: 46%;
  overflow-wrap: break-word; word-break: break-word;
}
.pj-card-ux .sec td { font-weight: 700; font-size: 15.5px; }
.pj-card-ux .sec td .mono { font-weight: 500; font-size: 13px; color: var(--ink-2); }
.pj-card-ux .docs { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.pj-card-ux .src-note { font-family: var(--f-text); font-size: 12px; color: var(--ink-2); margin-top: 26px; max-width: 760px; line-height: 1.6; }
@media (max-width: 860px) { .pj-card-ux .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pj-card-ux .tiles { grid-template-columns: 1fr 1fr; gap: 10px; } }
.pj-card-ux .text-content [style*="9097a1"],
.pj-card-ux .prose [style*="9097a1"] { color: #6b7280 !important; }
#cart-added, #call, #letter, #recommended { display: none !important; }
.fancybox-content #cart-added, .fancybox-content #call,
.fancybox-content #letter, .fancybox-content #recommended,
.fancybox-slide #cart-added, .fancybox-slide #call,
.fancybox-slide #letter, .fancybox-slide #recommended { display: block !important; }
@media (max-width: 768px) {
  .footer__col ul li a { padding-block: 5px; }
  .mnav__meta a { padding-block: 8px; display: inline-flex; align-items: center; }
}
@media (max-width: 900px) {
  .tile .tile__idx { position: absolute; top: 22px; left: 26px; z-index: 1; }
  .tile--5, .tile--4 {
    min-height: 152px; justify-content: center; padding-right: 42%;
  }
  .tile--5 h3, .tile--4 h3, .tile--main h3 { margin-top: 0; }
  .tile--5 h3, .tile--4 h3, .tile--5 p, .tile--4 p { max-width: none; }
  .tile--5 .tile__img, .tile--4 .tile__img {
    position: absolute; top: 0; right: 0; bottom: 0; left: auto;
    width: 40%; height: 100%; max-width: none;
    object-fit: cover; object-position: center;
    mix-blend-mode: normal; opacity: 1; border-radius: 0;
    transform: none;
  }
  .tile--5:hover .tile__img, .tile--4:hover .tile__img { transform: scale(1.04); }
  .tile--main { min-height: 300px; justify-content: center; padding-top: 66px; }
}
@media (max-width: 560px) {
  .tile--5, .tile--4 { min-height: 124px; padding-right: 44%; }
  .tile--5 .tile__img, .tile--4 .tile__img { width: 42%; }
  .tile--main { min-height: 244px; padding-top: 60px; padding-right: 48%; }
  .tile--main h3 { font-size: 18px; }
  .tile--main h3, .tile--main p { max-width: none; }
  .tile--main .tile__img { width: 42%; }
}
@media (max-width: 900px) {
  .lead__copy .mono-list { margin-top: 0; padding-top: 24px; }
}
@media (max-width: 560px) {
  .picker__form .home-calc__button, .picker__form .button, .picker__form button {
    align-self: stretch; width: 100%; justify-content: center;
  }
  .picker__result .bezel__core { grid-template-columns: 1fr; }
  .picker__result img { max-height: 200px; }
}
.head a, .head a:hover, .head a:focus,
.navdrop a, .navdrop a:hover, .navdrop a:focus,
.navdrop__panel a, .navdrop__panel a:hover, .navdrop__panel a:focus,
.mnav a, .mnav a:hover, .mnav a:focus { text-decoration: none !important; }
.pj-card-ux .prose.rv table,
.pj-card-ux .hiblow-matrix table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page { padding-top: clamp(24px, 3.2vw, 40px); }
.pj-card-ux .tabs {
  position: sticky;
  top: 96px;
  z-index: 50;
  background: var(--paper);
  padding-top: 14px;
  margin-top: -14px;
}
@media (max-width: 1120px) { .pj-card-ux .tabs { top: 88px; } }
@media (max-width: 560px)  { .pj-card-ux .tabs { top: 80px; } }
.pj-card-ux .tabs a, .pj-card-ux .tabs a:hover, .pj-card-ux .tabs a:focus { text-decoration: none !important; }
.pj-card-ux .sec.is-hidden { display: block; }
.pj-card-ux .sec { scroll-margin-top: 150px; }
.pj-card-ux .sec + .sec { margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--line); }
.pj-sec-title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.1;
  letter-spacing: -0.01em; margin: 0 0 22px; color: var(--ink);
}
@media (max-width: 560px) {
  .pj-card-ux .sec { scroll-margin-top: 132px; }
  .pj-card-ux .sec + .sec { margin-top: 32px; padding-top: 28px; }
  .pj-sec-title { margin-bottom: 16px; }
}
.pj-card-ux .rv, .pj-card-ux .sec .rv, .pj-card-ux .prose.rv {
  opacity: 1 !important; transform: none !important; filter: none !important;
}
.bento .tile {
  min-height: 156px;
  padding: 22px 24px;
  padding-right: 42%;
  justify-content: center;
  overflow: hidden;
}
.bento .tile--main { min-height: 314px; padding-right: 46%; }
.bento .tile .tile__idx {
  position: absolute; top: 20px; left: 24px; margin: 0;
  font-size: 11px; opacity: .42;
}
.bento .tile h3 {
  margin-top: 0; padding-top: 0; max-width: none;
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.12;
}
.bento .tile p {
  margin-top: 8px; max-width: none; font-size: 13.5px;
}
.bento .tile--main h3, .bento .tile--main p { max-width: none; }
.bento .tile__img {
  position: absolute; top: 0; right: 0; bottom: 0; left: auto;
  width: 38%; height: 100%; max-width: none;
  object-fit: cover; object-position: center;
  border-radius: 0; opacity: 1; mix-blend-mode: normal;
  transform: none; transition: transform .6s var(--spring);
}
.bento .tile--main .tile__img { width: 44%; }
.bento .tile:hover { transform: none; box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.bento .tile:hover .tile__img { transform: scale(1.04); }
@media (max-width: 560px) {
  .bento .tile { min-height: 132px; padding: 18px 20px; padding-right: 44%; }
  .bento .tile--main { min-height: 240px; padding-right: 46%; }
  .bento .tile__img { width: 40%; }
  .bento .tile h3 { font-size: 17px; }
}
.page-heading.codex-seo-h1 { padding-top: clamp(20px, 3vw, 40px); padding-bottom: clamp(12px, 1.6vw, 20px); }
.page.page-categories { padding-top: clamp(4px, 1vw, 12px); }
.categories-list-wrapper { padding-top: clamp(8px, 1.6vw, 22px) !important; }
.slick-arrow { font-size: 0 !important; color: transparent !important; line-height: 0; }
.about-slider { position: relative; }
.about-slider .slick-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; padding: 0; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .3s var(--spring), border-color .3s var(--spring);
}
.about-slider .slick-prev { left: 6px; } .about-slider .slick-next { right: 6px; }
.about-slider .slick-arrow::before {
  content: ""; width: 9px; height: 9px; display: block; box-sizing: border-box;
  border-top: 2px solid var(--ink); border-right: 2px solid var(--ink);
}
.about-slider .slick-prev::before { transform: rotate(-135deg); margin-left: 3px; }
.about-slider .slick-next::before { transform: rotate(45deg); margin-right: 3px; }
.about-slider .slick-arrow:hover { border-color: var(--ink); background: var(--white); }
.about-slider .slick-arrow.slick-disabled { opacity: .3; cursor: default; }
@media (min-width: 1121px) { .trustbar .container { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.trust { align-items: flex-start; }
.trust__ic { margin-top: 1px; }
@media (max-width: 560px) { .trust { align-items: center; } .trust__ic { margin-top: 0; } }
.mnav { justify-content: flex-start; padding: 82px var(--gutter) 28px; overflow-y: auto; gap: 0; }
.mnav__close {
  position: absolute; top: 20px; right: 20px; z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--white); cursor: pointer; padding: 0;
}
.mnav__close::before, .mnav__close::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}
.mnav__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.mnav__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }
.mnav > a, .mnav .menu__link {
  font-family: var(--f-display); font-weight: 600; color: var(--ink) !important;
  font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.15; padding: 8px 0; display: block;
}
.mnav .header-menu__list { display: flex; flex-direction: column; }
.mnav__meta { margin-top: 20px; }
@media (max-width: 900px) {
  .page-product__inner .catalog-filter-btn {
    position: sticky; top: 78px; z-index: 31; margin-bottom: 8px;
    background: var(--paper);
  }
  .page-product__inner .products-controls {
    position: sticky; top: 132px; z-index: 30;
    background: var(--paper); margin: 0 0 14px; padding: 8px 0;
  }
  .products-controls a.products-sort__link { white-space: nowrap; }
}
.hiblow-repair table { margin-top: 22px; }
@media (max-width: 600px) {
  .hiblow-repair table, .hiblow-repair tbody, .hiblow-repair tr, .hiblow-repair td { display: block; width: auto; }
  .hiblow-repair thead { display: none; }
  .hiblow-repair tbody tr {
    border: 1px solid var(--line); border-radius: 14px;
    padding: 14px 16px; margin-bottom: 12px; background: var(--white);
  }
  .hiblow-repair tbody td { border: none !important; padding: 3px 0; font-size: 13.5px; line-height: 1.42; color: var(--ink-2); }
  .hiblow-repair tbody td:first-child { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
  .hiblow-repair tbody td:nth-child(2)::before { content: "Причина: "; font-weight: 600; color: var(--ink); }
  .hiblow-repair tbody td:nth-child(3)::before { content: "Действие: "; font-weight: 600; color: var(--blue); }
}
@media (max-width: 560px) {
  .hero__facts { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 8px 8px; }
  .hero__facts > div { align-items: flex-start; padding-block: 0; }
  .hero__facts b { font-size: 1.05rem; white-space: nowrap; }
  .hero__facts b sup { font-size: .5em; }
  .hero__facts span { font-size: 9px !important; letter-spacing: .08em; }
  .hero__facts > div:last-child:nth-child(odd) { grid-column: auto; }
}
.page-repair .repair-spoiler { margin: 0 0 10px; }
.page-repair .repair-spoiler > summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.page-repair .repair-spoiler > summary::-webkit-details-marker { display: none; }
.page-repair .repair-spoiler > summary h2,
.page-repair .repair-spoiler > summary .page-repair__subtitle { margin: 0; }
.page-repair .repair-spoiler > summary i {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-strong); position: relative;
  transition: transform .4s var(--spring), background .4s var(--spring);
}
.page-repair .repair-spoiler > summary i::before,
.page-repair .repair-spoiler > summary i::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: currentColor;
}
.page-repair .repair-spoiler > summary i::before { width: 11px; height: 1.5px; }
.page-repair .repair-spoiler > summary i::after { width: 1.5px; height: 11px; transition: transform .4s var(--spring); }
.page-repair .repair-spoiler[open] > summary i { transform: rotate(45deg); background: var(--paper-2); }
@media (max-width: 1023px) {
  .page-repair .repair-spoiler > summary {
    padding: 16px; background: var(--paper-2);
    border: 1px solid var(--line); border-radius: var(--r-inner);
  }
  .page-repair .repair-spoiler[open] > summary { border-radius: var(--r-inner) var(--r-inner) 0 0; }
  .page-repair .repair-spoiler > .repair-spoiler__body {
    padding: 18px 16px 4px;
    border: 1px solid var(--line); border-top: none;
    border-radius: 0 0 var(--r-inner) var(--r-inner);
  }
}
@media (min-width: 1024px) {
  .page-repair .repair-spoiler > summary { cursor: default; pointer-events: none; }
  .page-repair .repair-spoiler > summary i { display: none; }
  .page-repair .repair-spoiler > *:not(summary) { display: block !important; }
}
body:has(.page-about, .page-delivery, .page-payment, .page-contact, .page-repair) .footer {
  margin-top: 56px;
}
.nav > .navdrop.navdrop--sm > button {
  padding: 9px 9px; background: transparent; color: var(--ink);
  font-weight: 700; font-size: 14.5px; letter-spacing: normal; box-shadow: none;
}
.nav > .navdrop.navdrop--sm > button:hover {
  background: color-mix(in oklab, var(--ink) 6%, transparent); color: var(--ink);
  transform: none; box-shadow: none;
}
.nav > .navdrop.navdrop--sm > button:active { transform: none; }
.navdrop.navdrop--sm { position: relative; }
.navdrop--sm .navdrop__panel {
  left: auto; right: 0; width: 240px;
  grid-template-columns: 1fr; gap: 2px; padding: 8px; border-radius: var(--r-inner);
}
.navdrop--sm .navdrop__panel::before { left: auto; right: 0; width: 100%; }
.navdrop--sm .navdrop__panel > a {
  padding: 12px 14px; border-radius: 12px; border: 0; background: transparent;
  font-weight: 600; font-size: 14px; justify-content: flex-start;
}
.navdrop--sm .navdrop__panel > a:hover { background: var(--paper-2); border-color: transparent; }
.mnav__group { width: 100%; }
.mnav__group summary {
  font-family: var(--f-display); font-weight: 600; color: var(--ink) !important;
  font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.15; padding: 8px 0;
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__group summary::after {
  content: ""; width: 10px; height: 10px; flex: none;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .3s var(--spring);
}
.mnav__group[open] summary::after { transform: rotate(-135deg); }
.mnav__group > a {
  display: block; font-family: var(--f-text) !important; font-weight: 600 !important;
  color: var(--ink) !important; opacity: .75;
  font-size: clamp(1.05rem, 4.2vw, 1.35rem) !important;
  padding: 7px 0 7px 4px !important;
}
@media (max-width: 991px) {
  .page-product__sidebar .accordion-menu > li.has-sub > .submenuItems { display: none; }
  .page-product__sidebar .accordion-menu > li.has-sub.is-open > .submenuItems { display: block; }
  .page-product__sidebar .accordion-menu > li.has-sub > .dropdownlink { cursor: pointer; }
  .page-product__sidebar .accordion-menu > li.has-sub > .dropdownlink::after {
    content: ""; width: 9px; height: 9px; margin-left: auto; flex: none;
    border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
    transform: rotate(45deg); transition: transform .3s var(--spring);
  }
  .page-product__sidebar .accordion-menu > li.has-sub.is-open > .dropdownlink::after { transform: rotate(-135deg); }
  .page-product__sidebar-filter.is-inline {
    position: static; inset: auto; width: auto; z-index: auto;
    background: transparent; padding: 0; margin: 0 0 20px; box-shadow: none;
    transform: none; transition: none;
    display: none;
  }
  .page-product__sidebar-filter.is-inline.is-open {
    display: block;
    padding: 16px; background: var(--paper-2);
    border: 1px solid var(--line); border-radius: var(--r-inner);
  }
  .page-product__sidebar-filter.is-inline .filters { position: static !important; top: auto; }
}
@media (min-width: 1121px) {
  .hero__inner { align-items: start; }
  .hero__visual {
    margin-top: 0;
    width: 100%;
    max-width: 500px;
    justify-self: end;
  }
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll > table { min-width: 439px; }
.bento .tile--main { background: var(--blue); }
@media (min-width: 901px) {
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento .tile--main,
  .bento .tile--5,
  .bento .tile--4 { grid-column: span 1; grid-row: span 1; }
  .bento .tile--main { min-height: 156px; padding-right: 42%; }
  .bento .tile--main .tile__img { width: 38%; }
}
@media (max-width: 900px) {
  .bento .tile--main { min-height: 156px; padding-right: 42%; }
  .bento .tile--main .tile__img { width: 38%; }
}
@media (max-width: 560px) {
  .bento .tile--main { min-height: 132px; padding-right: 44%; }
  .bento .tile--main .tile__img { width: 40%; }
}
.tradein { background: var(--blue); }
.tradein__copy { padding: clamp(24px, 3vw, 38px); }
.tradein__copy p { color: rgba(255,255,255,.78); margin-top: 12px; }
.tradein__steps { margin-top: 18px; gap: 20px; }
.footer__inner { padding-block: clamp(30px, 3.4vw, 44px); gap: 28px; }
.footer__about { margin-top: 12px; }
.footer__h { font-family: var(--f-text); font-size: 12px; letter-spacing: .08em; margin-bottom: 12px; }
.footer ul { gap: 7px; }
.topbar {
  background: var(--blue-deep); color: var(--paper);
  font-family: var(--f-text); font-size: 12.5px; line-height: 1.4;
  overflow: hidden;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 8px; white-space: nowrap;
}
.topbar__main b { font-weight: 700; }
.topbar__meta { opacity: .72; }
@media (max-width: 900px) {
  .topbar__meta { display: none; }
  .topbar__inner { justify-content: center; }
}
.topbar__phone { display: none; color: var(--paper); font-weight: 700; }
@media (max-width: 1279px) {
  .topbar__phone { display: inline-block; }
}
@media (max-width: 560px) {
  .topbar__main, .topbar__meta { display: none; }
  .topbar__inner { justify-content: center; padding-block: 7px; }
}
.docs { margin-top: clamp(36px, 5vw, 64px); }
.docs__title { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin: 0 0 8px; }
.docs__lead { color: var(--ink-2); margin: 0 0 24px; max-width: 60ch; }
.docs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 380px)); gap: 20px; justify-content: start; }
.docs__item {
  display: flex; flex-direction: column; gap: 14px;
  padding: 16px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-inner);
  color: inherit; text-decoration: none;
  transition: border-color .3s var(--spring), transform .3s var(--spring), box-shadow .3s var(--spring);
}
.docs__item:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.docs__shot { display: block; background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.docs__shot img { display: block; width: 100%; height: auto; }
.docs__cap { display: flex; flex-direction: column; gap: 3px; }
.docs__cap b { font-weight: 700; font-size: 15.5px; }
.docs__cap span { font-family: var(--f-text); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-2); }
.hero--bleed {
  position: relative; isolation: isolate;
  min-height: clamp(420px, 46vw, 620px);
  display: flex; align-items: center;
  padding-top: 0; padding-bottom: 0;
  overflow: hidden;
}
.hero--bleed .hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero--bleed .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; display: block; }
.hero--bleed .hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(12,10,8,.90) 0%, rgba(12,10,8,.80) 26%, rgba(12,10,8,.46) 52%, rgba(12,10,8,0) 78%);
}
.hero--bleed .hero__inner { display: block; }
.hero--bleed .hero__copy { max-width: 730px; }
.hero--bleed h1 { color: var(--paper); margin: 0 0 18px; text-wrap: balance;
  font-size: clamp(1.85rem, 3.4vw, 3.05rem); }
.hero--bleed h1 em { color: #6fb6f0; }
.hero--bleed .hero__sub { color: rgba(255,255,255,.86); max-width: 48ch; }
.hero--bleed .hero__cta { margin-top: 30px; }
.hero--bleed .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.hero--bleed .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.7); }
.hero--bleed .btn--ghost .btn__ic { border-color: rgba(255,255,255,.42); }
@media (max-width: 900px) {
  .hero--bleed { min-height: clamp(380px, 74vw, 520px); }
  .hero--bleed .hero__bg img { object-position: 72% 50%; }
  .hero--bleed .hero__bg::after {
    background: linear-gradient(178deg, rgba(12,10,8,.62) 0%, rgba(12,10,8,.86) 62%, rgba(12,10,8,.94) 100%);
  }
  .hero--bleed .hero__copy { max-width: none; }
  .hero--bleed .hero__sub { max-width: none; }
}
.page-product section { padding-top: 0 !important; }
.page-product.page { padding-top: clamp(14px, 1.6vw, 22px); }
.page-product .container.product { padding-top: 0; }
.page:not(.page-categories):not(.page-product) .page__content .text-content {
  --measure: 42em;
}
.page:not(.page-categories):not(.page-product) .page__content .text-content p.subtitle {
  font-family: var(--f-display);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .005em;
  color: var(--ink);
  max-width: var(--measure);
  margin: clamp(44px, 4.5vw, 68px) 0 18px;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid var(--line);
}
.page:not(.page-categories):not(.page-product) .page__content .text-content p.subtitle:first-of-type {
  margin-top: 8px; padding-top: 0; border-top: 0;
}
.page:not(.page-categories):not(.page-product) .page__content .text-content p,
.page:not(.page-categories):not(.page-product) .page__content .text-content ul:not([class]),
.page:not(.page-categories):not(.page-product) .page__content .text-content ol:not([class]) {
  max-width: var(--measure);
}
.page:not(.page-categories):not(.page-product) .page__content .text-content p {
  margin: 0 0 14px; line-height: 1.68;
}
.page:not(.page-categories):not(.page-product) .page__content .text-content ul:not([class]) {
  list-style: none; padding-left: 0; margin: 0 0 18px;
}
.page:not(.page-categories):not(.page-product) .page__content .text-content ul:not([class]) > li {
  position: relative; padding-left: 26px; margin-bottom: 9px; line-height: 1.62;
  list-style: none;
}
.page:not(.page-categories):not(.page-product) .page__content .text-content ul:not([class]) > li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
}
.page:not(.page-categories):not(.page-product) .page__content .text-content img {
  border-radius: var(--r-inner);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 861px) {
  .page:not(.page-categories):not(.page-product) .page__content .text-content img.right {
    float: right; width: min(42%, 460px); margin: 4px 0 26px 34px;
  }
}
@media (max-width: 860px) {
  .page:not(.page-categories):not(.page-product) .page__content .text-content img.right {
    float: none; display: block; width: 100%; margin: 0 0 24px;
  }
}
.page:not(.page-categories):not(.page-product) .page__content .text-content > br { display: none; }
.page:not(.page-categories):not(.page-product) .page__content .text-content .strong { font-weight: 700; }
.page:not(.page-categories):not(.page-product) .page__content .text-content .italic { font-style: italic; }
.repair-slider:not(.slick-initialized) {
  overflow: hidden;
  padding-bottom: 29px;
}
.repair-slider:not(.slick-initialized) .repair-slider__slide ~ .repair-slider__slide {
  display: none;
}
.repair-controls {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; padding: 0; margin: 0 0 22px;
}
.repair-controls__item { width: auto; margin: 0; }
.repair-controls__link {
  display: inline-flex; align-items: center; height: 40px; padding: 0 20px;
  border-radius: var(--r-chip); background: var(--paper-2); color: var(--ink-2) !important;
  font-family: var(--f-text); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background-color .3s var(--spring), color .3s var(--spring);
}
.repair-controls__link:hover { background: var(--paper-3); color: var(--ink) !important; }
.repair-controls li.active .repair-controls__link,
.repair-controls__item.active .repair-controls__link {
  background: var(--ink); color: var(--white) !important;
}
.pick-res { display: flex; flex-direction: column; gap: 14px; padding: 22px; }
.pick-res__eyebrow {
  font-family: var(--f-text); font-size: 10.5px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--blue); font-weight: 500;
}
.pick-res__main {
  display: flex; gap: 16px; align-items: center; text-decoration: none;
  padding: 14px; border-radius: var(--r-inner); background: var(--paper-2);
  transition: background-color .3s var(--spring), transform .3s var(--spring);
}
.pick-res__main:hover { background: var(--paper-3); transform: translateY(-2px); }
.pick-res__img { width: 96px; height: 96px; object-fit: contain; flex: 0 0 auto; border-radius: 12px; background: var(--white); }
.pick-res__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pick-res__name { font-family: var(--f-display); font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.pick-res__spec { font-family: var(--f-text); font-size: 11.5px; color: var(--ink-2); }
.pick-res__price { font-size: 19px; font-weight: 700; color: var(--ink); }
.pick-res__cta { font-size: 13px; font-weight: 600; color: var(--blue); }
.pick-res__alt { display: flex; flex-direction: column; gap: 6px; }
.pick-res__alt-title {
  font-family: var(--f-text); font-size: 10.5px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink-3);
}
.pick-res__alt-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 9px 12px; border-radius: 12px; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink-2); font-size: 14px;
  transition: border-color .3s var(--spring), color .3s var(--spring);
}
.pick-res__alt-item:hover { border-color: var(--line-strong); color: var(--ink); }
.pick-res__alt-item b { font-weight: 700; color: var(--ink); white-space: nowrap; }
.pick-res--load, .pick-res--empty { color: var(--ink-2); font-size: 15px; }
.pick-res__note { margin: 6px 0 0; font-size: 14px; line-height: 1.6; }
@media (max-width: 560px) {
  .pick-res__main { flex-direction: column; align-items: flex-start; }
  .pick-res__img { width: 100%; height: 150px; }
}
.page-cart__content { padding-bottom: 40px; }
.page-cart__title, h1.page-cart__title {
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
}
h2.page-cart__title { max-width: none; margin-inline: 0; padding-inline: 0; }
.cart-sum {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 16px 20px; margin: 0 0 22px;
  border-radius: var(--r-inner); background: var(--paper-2);
  font-size: 15px; color: var(--ink-2);
}
.cart-sum span { font-family: var(--f-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.cart-products { list-style: none; margin: 0 0 34px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cart-product {
  position: relative;
  display: grid; grid-template-columns: 92px minmax(0,1fr) auto; gap: 18px; align-items: center;
  padding: 16px 46px 16px 16px;
  border: 1px solid var(--line); border-radius: var(--r-inner); background: var(--white);
}
.cart-product__img img { width: 92px; height: 92px; object-fit: contain; border-radius: 12px; background: var(--paper); }
.cart-product__title { font-family: var(--f-display); font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.cart-product__head p { margin: 5px 0 0; font-size: 13px; color: var(--ink-3); }
.cart-product__info { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.cart-product__block { font-size: 13px; color: var(--ink-3); }
.cart-product__price { font-size: 16px; font-weight: 700; color: var(--ink); }
.cart-product > form { position: absolute; top: 12px; right: 12px; margin: 0; z-index: 2; }
.cart-product__close {
  position: static;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: var(--paper-2); color: var(--ink-2); cursor: pointer;
  transition: background-color .3s var(--spring), color .3s var(--spring);
}
.cart-product__close:hover { background: var(--red); color: #fff; }
.page-cart__title { font-family: var(--f-display); margin: 0 0 20px; }
.checkout__order input[type=text], .checkout__order input[type=tel],
.checkout__order input[type=email], .checkout__order input:not([type]),
.checkout__order textarea, .checkout__order select {
  width: 100%; padding: 12px 14px; margin-bottom: 14px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
  font-family: var(--f-text); font-size: 15px; color: var(--ink);
  transition: border-color .25s var(--spring);
}
.checkout__order input:focus, .checkout__order textarea:focus, .checkout__order select:focus {
  outline: none; border-color: var(--blue);
}
.cart-form__real { margin: 6px 0 20px; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }
.cart-form__bot p { margin: 0 0 9px; font-size: 15px; }
.cart-form__check { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.cart-form__check > input[type="radio"],
.cart-form__check > input[type="checkbox"] { margin-top: 5.5px; flex: 0 0 auto; }
.cart-form__required { font-size: 12.5px; color: var(--ink-3); margin-bottom: 16px; }
.cart-form__button {
  border-radius: var(--r-chip); background: var(--ink); color: #fff;
  font-family: var(--f-text); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border: 0; cursor: pointer;
  transition: background-color .3s var(--spring), transform .3s var(--spring);
}
.cart-form__button:hover { background: var(--blue); transform: translateY(-1px); }
@media (max-width: 700px) {
  .cart-product { grid-template-columns: 72px minmax(0,1fr); }
  .cart-product__img img { width: 72px; height: 72px; }
  .cart-product__info { grid-column: 1 / -1; gap: 18px; }
}
.cart-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 16px);
  z-index: 9999; max-width: min(92vw, 460px);
  padding: 14px 22px; border-radius: var(--r-chip);
  background: var(--ink); color: var(--white);
  font-family: var(--f-text); font-size: 15px; font-weight: 600;
  box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none;
  transition: opacity .28s var(--spring), transform .28s var(--spring);
}
.cart-toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.cart-toast--err { background: var(--red); }
.breadcrumbs__content { max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter) 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumbs { list-style: none; margin: 0; padding: 0; }
.breadcrumbs__current { color: var(--ink-3); }
.breadcrumbs__item + .breadcrumbs__item::before { content: "/"; color: var(--ink-3); opacity: .6; }
.breadcrumbs__item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); }
.breadcrumbs__link { color: var(--ink-2); text-decoration: none; transition: color .25s var(--spring); }
.breadcrumbs__link:hover { color: var(--blue); }
.breadcrumbs .fa-angle-right { color: var(--ink-3); font-style: normal; opacity: .7; }
.breadcrumbs .fa-angle-right::before { content: "/"; }
@media (max-width: 620px) { .breadcrumbs__content { padding-top: 10px; } .breadcrumbs__item { font-size: 12px; } }
@media (min-width: 992px) {
  .filters-drawer-close { display: none !important; }
}
.filters__reset {
  display: block; margin: 14px auto 0; width: fit-content;
  padding: 9px 20px; border-radius: var(--r-chip);
  border: 1px solid var(--line); background: transparent;
  color: var(--ink-2); font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: border-color .25s var(--spring), color .25s var(--spring);
}
.filters__reset:hover { border-color: var(--line-strong); color: var(--ink); }
.filters__reset.is-idle { opacity: .55; }
html { background: var(--ink); }
body { background: var(--paper); }
.pcard { position: relative; }
.pcard__name::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit;
}
.pcard form,
.pcard button,
.pcard .add2cart,
.pcard .qty { position: relative; z-index: 2; }
.pcard { transition: transform .3s var(--spring), box-shadow .3s var(--spring); }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.embed-responsive:not(:has(iframe)) { display: none !important; }
.tile h3, .pcard__name, .bezel h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.tradein__form {
  border-radius: var(--r-outer);
  background: var(--white);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ink) 13%, transparent),
              var(--shadow-soft);
}
.tradein__steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 20px; align-items: start;
}
.tradein__steps > div { display: flex; flex-direction: column; gap: 6px; }
.tradein__steps b { font-family: var(--f-display); font-size: 26px; line-height: 1; }
.tradein__steps span { font-size: 13px; opacity: .82; }
@media (max-width: 560px) {
  .tradein__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .tradein__steps b { font-size: 21px; }
  .tradein__steps span { font-size: 12px; }
}
.pick-res__main { width: 100%; align-items: stretch; }
.pick-res__img { width: 132px; height: auto; min-height: 116px; align-self: center; }
.pick-res__body { flex: 1 1 auto; justify-content: center; }
.pick-res__name { font-size: 19px; }
.pick-res__price { font-size: 22px; }
.pick-res__alt-item { padding: 11px 14px; }
@media (max-width: 560px) { .pick-res__img { width: 100%; height: 150px; } }
.repair-service__title {
  white-space: normal; overflow: visible; text-overflow: clip;
  overflow-wrap: break-word; word-break: normal; line-height: 1.25;
}
.repair-service__title br { display: none; }
.repair-slider__item, .repair-service { height: auto; min-height: 0; }
@media (max-width: 900px) {
  .hero .hero__copy { padding-top: clamp(18px, 5vw, 34px); }
}
.picker__result .bezel__core { align-items: start; justify-items: stretch; }
.picker__result .pick-res { width: 100%; justify-self: stretch; grid-column: 1 / -1; }
.repair-service { overflow: hidden; }
.repair-service__title { overflow-wrap: break-word; hyphens: auto; }
@media (max-width: 700px) {
  .repair-slider .repair-slider__list {
    display: grid !important; grid-template-columns: 1fr; gap: 10px;
  }
  .repair-slider .repair-slider__item { width: 100% !important; max-width: none; }
  .repair-service { min-height: 0; padding: 14px 16px; }
}
.rcut { position: relative; }
.rcut.is-cut { max-height: 320px; overflow: hidden; }
.rcut.is-cut::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 96px;
  background: linear-gradient(to bottom, transparent, var(--paper) 88%);
  pointer-events: none;
}
.rcut-btn {
  display: block; margin: 14px auto 26px; padding: 11px 24px;
  border-radius: var(--r-chip); border: 1px solid var(--line);
  background: var(--white); color: var(--ink);
  font-family: var(--f-text); font-size: 14px; font-weight: 600; cursor: pointer;
}
.rcut-btn:hover { border-color: var(--line-strong); }
.page-repair__top .page-repair__subtitle:not(.page-repair__subtitle_red) {
  font-family: var(--f-text); font-size: 11px; letter-spacing: .03em;
  text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 10px;
}
.news-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.news-list-item { margin: 0; }
.news-list-item > .row { align-items: stretch; }
.news-list-item__block { height: 100%; display: flex; flex-direction: column; }
.news-list-item__img {
  width: 100%; flex: 1 1 auto; height: auto; min-height: 190px; object-fit: cover;
  border-radius: var(--r-inner); display: block; background: var(--paper-2);
}
.news-list-item__subtitle {
  margin-top: 8px; font-family: var(--f-text); font-size: 11px;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3);
}
.white-block {
  height: 100%; background: var(--white);
  border-radius: var(--r-inner); padding: 22px;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ink) 11%, transparent), var(--shadow-soft);
}
.white-block__content { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.news-list-item__title {
  font-family: var(--f-display); font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600; line-height: 1.28; color: var(--ink);
}
.news-list-item__text { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.news-list-item__text.is-stub { display: none; }
.news-list-item__link {
  margin-top: auto; align-self: flex-start;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue); text-decoration: none;
}
.news-list-item__link:hover { text-decoration: underline; }
@media (max-width: 991px) {
  .news-list-item__img { min-height: 170px; margin-bottom: 12px; }
  .white-block { padding: 18px; }
}
.head { position: sticky; top: 10px; }
.head::before {
  content: ""; position: absolute; z-index: -1;
  top: -1200px; bottom: -12px; left: -50vw; right: -50vw;
  background: var(--paper);
  pointer-events: none;
}
.modern-page-navigation {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 26px 0 0; padding: 0;
}
.modern-page-navigation a,
.modern-page-navigation span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 12px;
  border-radius: var(--r-chip); border: 1px solid var(--line);
  background: var(--white); color: var(--ink-2);
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: border-color .25s var(--spring), background .25s var(--spring);
}
.modern-page-navigation a:hover { border-color: var(--line-strong); color: var(--ink); }
.modern-page-navigation .modern-page-current {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}
.ulStr { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 26px 0 0; padding: 0; }
.ulStr .str { margin: 0; }
.ulStr .str a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--r-chip);
  border: 1px solid var(--line); background: var(--white);
  color: var(--ink-2); font-size: 13.5px; font-weight: 600 !important; text-decoration: none;
}
.ulStr .str a:hover { border-color: var(--line-strong); color: var(--ink); }
@media (max-width: 700px) {
  .cart-product { grid-template-columns: 84px minmax(0, 1fr); padding: 14px 14px 16px; gap: 12px; }
  .cart-product__img img { width: 84px; height: 84px; }
  .cart-product > form { top: 8px; right: 8px; }
  .cart-product__head { padding-right: 42px; }
  .cart-product__title { font-size: 15px; }
  .cart-product__info { grid-column: 1 / -1; gap: 14px; align-items: flex-end; }
  .cart-sum { padding: 14px 16px; }
  .cart-sum span { font-size: 19px; }
}
@media (max-width: 900px) {
  .hero--bleed .hero__bg::after {
    background:
      radial-gradient(120% 80% at 20% 30%, rgba(10,8,6,.55) 0%, transparent 70%),
      linear-gradient(178deg, rgba(12,10,8,.80) 0%, rgba(12,10,8,.90) 62%, rgba(12,10,8,.96) 100%);
  }
  .hero--bleed .hero__copy h1 {
    text-shadow: 0 2px 18px rgba(8,6,4,.65), 0 1px 3px rgba(8,6,4,.55);
  }
  .hero--bleed .hero__sub {
    color: rgba(255,255,255,.95);
    text-shadow: 0 1px 12px rgba(8,6,4,.6);
  }
}
@media (max-width: 900px) {
  .hero--bleed .hero__copy { position: relative; z-index: 2; }
  .hero--bleed .hero__copy::before {
    content: ""; position: absolute; z-index: -1;
    inset: -20px -20px -16px -20px;
    background: rgba(14, 12, 10, .80);
    border-radius: 20px;
    box-shadow: 0 10px 40px -18px rgba(0,0,0,.6);
  }
  .hero--bleed .hero__bg::after {
    background: linear-gradient(178deg, rgba(12,10,8,.52) 0%, rgba(12,10,8,.72) 62%, rgba(12,10,8,.88) 100%);
  }
  .hero--bleed .hero__copy h1,
  .hero--bleed .hero__sub { text-shadow: none; }
  .hero--bleed .hero__sub { color: rgba(255,255,255,.92); }
}
@media (hover: none), (pointer: coarse) {
  .btn:hover, .btn:hover .btn__ic,
  .nav > .navdrop--catalog > button:hover,
  .cartbtn:hover,
  .tile:hover, .tile:hover .tile__arrow, .tile:hover .tile__img,
  .tile--main:hover .tile__img, .tile--5:hover .tile__img, .tile--4:hover .tile__img,
  .bento .tile:hover, .bento .tile:hover .tile__img,
  .pcard:hover, .pcard:hover .pcard__photo img,
  .doc:hover, .shead__link:hover,
  .arelated a:hover, .blogcard:hover,
  .navdrop__panel > a:hover .navdrop__img,
  .pick-res__main:hover, .cart-form__button:hover,
  .cart-product__close:hover, .filters__reset:hover,
  .repair-controls__link:hover, .modern-page-navigation a:hover, .ulStr .str a:hover {
    transform: none !important;
  }
  .shead__link:hover { border: inherit; }
}
@media (max-width: 700px) {
  .picker__result { padding: 6px; }
  .picker__result .bezel__core { padding: 14px; }
  .picker__result .pick-res { padding: 0; gap: 12px; }
  .pick-res__main { padding: 12px; gap: 12px; flex-direction: column; align-items: stretch; }
  .pick-res__img { width: 100%; height: 210px; object-fit: contain; }
  .pick-res__name { font-size: 20px; }
  .pick-res__price { font-size: 24px; }
  .pick-res__alt-item { padding: 12px 14px; font-size: 14px; }
  .pick-res__alt-item span { min-width: 0; }
}
.tile h3, .pcard__name, .bezel h3,
.pick-res__name, .pick-res__alt-item span,
.news-list-item__title, .news-list-item__subtitle,
.cart-product__title, .repair-service__title,
.section-title, .s-four__title, h1, h2, h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.tradein__steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px 14px; }
.tradein__steps > div {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 12px 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.12);
}
.tradein__steps b {
  font-family: var(--f-display); font-size: 22px; line-height: 1; color: #fff;
}
.tradein__steps span { font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,.85); }
@media (max-width: 560px) {
  .tradein__steps { gap: 10px; }
  .tradein__steps > div { padding: 10px 10px 12px; }
  .tradein__steps b { font-size: 19px; }
  .tradein__steps span { font-size: 11.5px; }
}
.tradein {
  border-radius: var(--r-outer);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ink) 13%, transparent), var(--shadow-soft);
  overflow: hidden;
}
.tradein__form { box-shadow: none; border-radius: 0; }
@media (max-width: 900px) {
  .tradein { border-radius: var(--r-inner); }
}
.fancybox-slide {
  display: flex !important;
  align-items: center; justify-content: center;
  padding: 16px !important;
}
.fancybox-slide > * {
  margin: 0 !important;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.fancybox-content { width: min(460px, 100%); }
@media (max-width: 560px) {
  .fancybox-slide { padding: 12px !important; }
  .fancybox-content { padding: 22px 18px; }
}
.lead .bezel__core { overflow: hidden; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 992px) {
  .lead .bezel__core { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.lead__copy, .lead__form {
  box-sizing: border-box;
  width: 100%; max-width: 100%; margin: 0; min-width: 0;
}
.tradein {
  padding: 8px;
  border-radius: var(--r-outer);
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 13%, transparent),
              var(--shadow-soft);
  overflow: visible;
}
.tradein__copy {
  border-radius: var(--r-inner) 0 0 var(--r-inner);
  background: var(--blue);
  color: #fff;
}
.tradein__copy h2, .tradein__copy p, .tradein__copy .tradein__eyebrow { color: #fff; }
.tradein__copy p { color: rgba(255,255,255,.92); }
.tradein__form { border-radius: 0 var(--r-inner) var(--r-inner) 0; box-shadow: none; }
@media (max-width: 900px) {
  .tradein { border-radius: 22px; }
  .tradein__copy { border-radius: 15px 15px 0 0; }
  .tradein__form { border-radius: 0 0 15px 15px; }
}
.hero--bleed { padding-bottom: clamp(26px, 5vw, 48px); }
@media (max-width: 900px) {
  .pj-home > section { padding-block: 30px; }
  .pj-home > section + section { padding-top: 22px; }
  .shead { gap: 14px; margin-bottom: 18px; }
  .shead__link { margin-top: 2px; }
}
@media (min-width: 901px) {
  .pj-home > section:not(.hero):not(.hero--bleed) { padding-block: clamp(34px, 2.8vw, 44px); }
}
body.home .footer { margin-top: clamp(36px, 3.5vw, 56px); }
.pj-home #zayavka .lead__form { justify-content: center; }
.hero h1, .hero__copy h1, .shead h2, .s-four__title, .section-title {
  hyphens: none; -webkit-hyphens: none;
}
.tradein__copy p { color: #fff !important; }
.tradein__steps span { color: #fff !important; }
.tradein__steps > div { background: rgba(255,255,255,.16); }
h1, h2, h3, .section-title, .s-four__title, .shead h2, .lead__copy h2, .hero h1 {
  hyphens: none !important; -webkit-hyphens: none !important;
  text-wrap: balance;
}
.tile h3, .pcard__name, .pick-res__name, .pick-res__alt-item span,
.cart-product__title, .repair-service__title {
  hyphens: auto; -webkit-hyphens: auto; text-wrap: pretty;
}
:root {
  --z-dropdown: 100; --z-sticky: 200; --z-backdrop: 300;
  --z-modal: 400; --z-toast: 500; --z-tooltip: 600;
}
.cart-toast { z-index: var(--z-toast); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .cart-toast { transition: opacity .01ms !important; transform: translate(-50%, 0); }
}
.lead__copy p, .picker__lead, .tradein__copy p { max-width: 68ch; }
.tradein .tradein__steps {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  align-items: stretch;
}
.tradein .tradein__steps > div {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
}
@media (max-width: 420px) {
  .tradein .tradein__steps { gap: 7px; }
  .tradein .tradein__steps > div { padding: 9px 7px 10px; }
  .tradein .tradein__steps b { font-size: 17px; }
  .tradein .tradein__steps span { font-size: 10.5px; line-height: 1.3; }
}
.page-product__sidebar .accordion-menu > li.has-sub > .submenuItems {
  display: none !important;
}
.page-product__sidebar .accordion-menu > li.has-sub.is-open > .submenuItems {
  display: block !important;
}
.page-product__sidebar .accordion-menu > li.has-sub > .dropdownlink::after {
  content: ""; width: 9px; height: 9px; flex: none; margin-left: auto;
  border-right: 2px solid var(--ink-2); border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--spring);
}
.page-product__sidebar .accordion-menu > li.has-sub.is-open > .dropdownlink::after {
  transform: rotate(-135deg) translateY(-2px);
}
.page-product__sidebar .accordion-menu .dropdownlink { display: flex; align-items: center; gap: 10px; cursor: pointer; }
@media (max-width: 991px) {
  .page-product__sidebar-filter {
    margin-inline: 0;
    padding-inline: 0;
  }
  .page-product__sidebar-filter > .filters,
  .page-product__sidebar-filter > .filters-drawer-toggle {
    margin-inline: 0;
  }
}
.products-sort__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-block: 2px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.products-sort__list::-webkit-scrollbar { display: none; }
.products-sort__item { flex: 0 0 auto; }
.products-sort__link {
  display: inline-flex; align-items: center; white-space: nowrap;
  border-radius: var(--r-chip);
}
.catalog-filter-btn,
.page-product__sidebar-filter.is-inline .filters,
.filters-drawer-toggle {
  border-radius: var(--r-inner);
}
.products-controls .products-sort__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 2px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.products-controls .products-sort__list::-webkit-scrollbar { display: none; }
.products-controls .products-sort__item { flex: 0 0 auto; }
.products-controls .products-sort__link { white-space: nowrap; border-radius: var(--r-chip); }
.page-product__inner { width: 100%; min-width: 0; }
.products-controls .products-sort { min-width: 0; width: 100%; }
.products-controls .products-sort__list { min-width: 0; }
.tile h3,
.pcard__name,
.product-card__title,
.pick-res__name,
.cart-product__title {
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  overflow-wrap: break-word;
}
.repair-slider .slick-dots li,
.about-slider .slick-dots li {
  width: 24px; height: 24px; margin: 0;
  display: grid; place-items: center;
}
.repair-slider .slick-dots li button,
.about-slider .slick-dots li button {
  width: 24px; height: 24px; padding: 0; border: 0;
  background: transparent;
  display: grid; place-items: center;
  font-size: 0; line-height: 0; color: transparent; cursor: pointer;
}
.repair-slider .slick-dots li button::before,
.about-slider .slick-dots li button::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--line-strong);
  transition: background .3s var(--spring), transform .3s var(--spring);
}
.repair-slider .slick-dots li.slick-active button,
.about-slider .slick-dots li.slick-active button { background: transparent; transform: none; }
.repair-slider .slick-dots li.slick-active button::before,
.about-slider .slick-dots li.slick-active button::before {
  background: var(--blue); transform: scale(1.25);
}
.repair-slider .slick-dots,
.about-slider .slick-dots { gap: 0; }
.about-slider .slick-dots {
  display: flex; justify-content: center; align-items: center;
  margin: 20px 0 0; padding: 0; list-style: none;
  position: static; width: 100%;
}
.product-card__more,
.bx-sbb-empty-cart-desc a,
.crumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
@media (max-width: 560px) {
  .s-six__title { font-size: 23.4px; line-height: 1.15; }
}
@media (max-width: 991px) {
  .page-product__content { display: flex; flex-direction: column; }
  .page-product__content > .page-product__inner { order: 1; }
  .page-product__content > .page-product__sidebar { order: 2; margin-top: 28px; }
}
.hibcard-related .product-card__top {
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hibcard-related .product-card__top a { display: grid; place-items: center; min-height: 0; }
.hibcard-related .product-card__img {
  max-width: 100%;
  max-height: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo--static { cursor: default; }
.logo--static:hover { opacity: 1; }
.head__pill {
  background: var(--white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.mnav {
  background: var(--paper) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.head { background: var(--paper); }
.head.scrolled { top: 0; padding-top: 10px; }
html {
  scroll-padding-top: 132px;
}
@media (max-width: 1120px) { html { scroll-padding-top: 120px; } }
@media (max-width: 560px)  { html { scroll-padding-top: 104px; } }
.cart-product__price { font-size: 13px !important; font-weight: 400 !important; color: var(--ink-2) !important; }
.cart-product__sum .col_all_price,
.cart-product__sum .col_all_price span { font-size: 18px; font-weight: 700; color: var(--ink); }
.footer .logo--img { display: flex; flex-direction: column; align-items: flex-start !important; gap: 8px; }
.footer .logo--img img { height: 32px; width: auto; display: block; }
@media (max-width: 560px) { .footer .logo--img img { height: 26px; } }
.pcard__photo img { transition: none; }
.pcard:hover .pcard__photo img { transform: none; }
.tile__img,
.navdrop__img,
.pcard__photo img,
.product-card__img,
.menu-catalog__img {
  transition: none !important;
}
.products-controls .products-sort__list {
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 14px), transparent 100%);
}
.tile:hover .tile__img,
.tile--main:hover .tile__img,
.tile--5:hover .tile__img,
.tile--4:hover .tile__img,
.bento .tile:hover .tile__img,
.pj-card-ux .tile:hover .tile__img,
.navdrop__panel > a:hover .navdrop__img,
.pcard:hover .pcard__photo img,
.product-card:hover .product-card__img {
  transform: none !important;
}
@media (min-width: 1100px) {
  .page-product .prose:has(> .hiblow-matrix) {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }
  .page-product .prose:has(> .hiblow-matrix) > * { grid-column: 1; min-width: 0; }
  .page-product .prose > .hiblow-matrix {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 96px;
    margin: 0;
    align-self: start;
  }
}
.repair-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin: 18px 0 34px;
  padding: clamp(20px, 2.6vw, 32px);
  border-radius: var(--r-outer);
  background: var(--blue);
  color: #fff;
}
.repair-lead__pitch {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.18;
  color: #fff;
}
.repair-lead__sub { margin: 12px 0 0; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.8); }
.repair-lead__points { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.repair-lead__points li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; line-height: 1.45; color: rgba(255,255,255,.88);
}
.repair-lead__points li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 14px; height: 8px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg); opacity: .85;
}
.repair-lead__phone {
  display: inline-block; margin-top: 20px;
  font-family: var(--f-text); font-weight: 800; font-size: 20px; color: #fff;
}
.repair-lead__phone:hover { color: rgba(255,255,255,.82); }
.repair-lead__form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-inner);
  padding: clamp(16px, 2vw, 24px);
}
.repair-lead__form .mfeedback { width: 100%; }
.repair-lead__form .s-four__block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin-bottom: 12px; }
.repair-lead__form .s-four__left,
.repair-lead__form .s-four__right { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.repair-lead__form .s-four__textarea { min-height: 84px; }
.repair-lead__form .s-four__submit {
  width: 100%; margin-top: 14px; min-height: 50px; border: none;
  border-radius: var(--r-chip); background: var(--blue); color: #fff;
  font-family: var(--f-text); font-weight: 700; font-size: 15px; cursor: pointer;
}
.repair-lead__form .s-four__submit:hover { filter: brightness(1.08); }
@media (max-width: 900px) {
  .repair-lead { grid-template-columns: minmax(0, 1fr); }
  .repair-lead__form .s-four__block { grid-template-columns: minmax(0, 1fr); }
}
@media (min-width: 1200px) {
  .head__pill > .head__contact { flex: 0 0 auto; }
  .head__pill > .nav { min-width: 0; }
}
@media (min-width: 1200px) {
  .nav .header-menu li > a { padding: 9px 8px; font-size: 13.5px; }
  .nav .header-menu ul { gap: 0; }
  .head__pill { gap: 16px; }
}
.pick {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
}
.pick__q { margin-bottom: 22px; }
.pick__q:last-child { margin-bottom: 0; }
.pick__label { font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 10px; }
.pick__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pick__chip {
  font: inherit; font-size: 14.5px; font-weight: 600; line-height: 1;
  padding: 11px 16px; border-radius: var(--r-chip);
  border: 1px solid var(--line-strong); background: var(--white); color: var(--ink);
  cursor: pointer; transition: background .2s var(--spring), color .2s var(--spring), border-color .2s var(--spring);
}
.pick__chip:hover { border-color: var(--blue); color: var(--blue); }
.pick__chip.is-on { background: var(--blue); border-color: var(--blue); color: #fff; }
.pick__out {
  display: flex; flex-direction: column;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--r-outer);
  background: var(--ink); color: #fff;
}
.pick__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.pick__model { font-family: var(--f-display); font-weight: 600; font-size: clamp(20px, 2vw, 26px); line-height: 1.2; margin-top: 10px; overflow-wrap: anywhere; }
.pick__specs { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.72); }
.pick__price { margin-top: 16px; font-family: var(--f-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 30px); }
.pick__btn {
  margin-top: 18px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: var(--r-chip);
  background: var(--blue); color: #fff; font-weight: 700; font-size: 15px;
}
.pick__btn:hover { filter: brightness(1.1); color: #fff; }
.pick__note { margin: 16px 0 0; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.55); }
@media (max-width: 900px) {
  .pick { grid-template-columns: minmax(0, 1fr); }
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 2.4vw, 32px);
  margin: 22px 0 40px;
  align-items: stretch;
}
.about-hero__stats {
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--r-outer);
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column;
}
.about-hero__lead { font-family: var(--f-display); font-weight: 600; font-size: clamp(19px, 1.8vw, 24px); }
.about-hero__sub { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.65); }
.about-hero__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 24px; margin-top: 24px; }
.about-hero__grid b { display: block; font-family: var(--f-display); font-weight: 600; font-size: clamp(22px, 2vw, 28px); }
.about-hero__grid span { display: block; margin-top: 4px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.about-hero__btn {
  margin-top: 26px; align-self: flex-start;
  padding: 12px 22px; border-radius: var(--r-chip);
  background: #fff; color: var(--ink); font-weight: 700; font-size: 14.5px;
}
.about-hero__btn:hover { background: var(--paper-2); color: var(--ink); }
.about-hero__photos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: repeat(2, minmax(0,1fr)); gap: clamp(10px, 1.4vw, 16px); }
.about-hero__photos figure { position: relative; margin: 0; border-radius: var(--r-inner); overflow: hidden; background: var(--paper-2); min-height: 120px; }
.about-hero__photos img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero__photos figcaption {
  position: absolute; left: 12px; bottom: 10px;
  font-size: 12.5px; font-weight: 600; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: minmax(0, 1fr); }
  .about-hero__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.product__head { padding-top: 10px; }
.product__head h1 { margin-top: 10px; }
.product__head .product__lead { margin-top: 10px; }
.product { grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 4fr); padding-top: 24px; }
.product__specs { position: sticky; top: 96px; }
.product__specs-title { font-family: var(--f-display); font-weight: 600; font-size: 19px; margin-bottom: 16px; }
.specs-dotted { margin: 0; }
.specs-dotted__row {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.specs-dotted__row dt {
  flex: 1 1 0; min-width: 0; overflow: hidden; white-space: nowrap;
  color: var(--ink-2);
}
.specs-dotted__row dt::after {
  content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .";
  color: var(--line-strong);
}
.specs-dotted__row dd {
  margin: 0; flex: 0 1 auto; max-width: 55%;
  font-weight: 600; color: var(--ink); text-align: right;
  white-space: normal; overflow-wrap: break-word; word-break: normal;
}
.specs-dotted__more { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--blue); min-height: 24px; }
.specs-dotted__more:hover { text-decoration: underline; }
.product__buy { display: flex; flex-direction: column; }
.product__rating { margin-top: 8px; font-size: 13.5px; color: var(--ink-2); }
.product__buy .buybox { margin-top: 18px; position: sticky; top: 96px; }
@media (max-width: 1120px) {
  .product { grid-template-columns: minmax(0, 1fr); }
  .product__specs, .product__buy .buybox { position: static; }
}
.about-bot__title { margin-bottom: 32px; }
.s-four__title { margin-bottom: 24px; }
.about-slider__slide { box-sizing: border-box; padding: 0 10px; }
.about-slider__slide a {
  display: flex; align-items: center; justify-content: center;
  height: 96px; padding: 16px 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-inner);
}
.about-slider__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.repair-slider .repair-service { min-height: 82px; justify-content: flex-start; }
@media (max-width: 700px) {
  .repair-slider .repair-service { min-height: 0; }
}
.page.page-repair:not(.page-categories):not(.page-product) .page__content .text-content,
.page.page-delivery:not(.page-categories):not(.page-product) .page__content .text-content { --measure: 52em; }
.nav .header-menu li > a.is-current-page,
.nav .header-menu li > a[aria-current="page"] {
  color: var(--blue);
  background: color-mix(in oklab, var(--blue) 9%, transparent);
}
.btn--buy.is-added { background: oklch(62% 0.17 150); border-color: transparent; }
.btn--buy.is-added .btn__ic { background: rgba(255,255,255,.22); }
@keyframes hib-bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.16); }
  70%  { transform: scale(.96); }
  100% { transform: scale(1); }
}
.head__cart.is-bump, .mini-cart.is-bump { animation: hib-bump .55s var(--spring); }
@media (prefers-reduced-motion: reduce) {
  .head__cart.is-bump, .mini-cart.is-bump { animation: none; }
}
.page.page-payment:not(.page-categories):not(.page-product) .page__content .text-content p.subtitle:first-of-type {
  margin-top: 34px;
}
.roadmap-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px; align-self: flex-start; width: fit-content; height: auto;
}
.roadmap-link__ic { display: inline-flex; }
.kb--tabbed .kb__group { display: none; }
.kb--tabbed .kb__group.is-on { display: block; }
.kb__tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.kb__tabs a {
  padding: 11px 18px; border-radius: var(--r-chip);
  border: 1px solid var(--line-strong); background: var(--white);
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: background .2s var(--spring), color .2s var(--spring), border-color .2s var(--spring);
}
.kb__tabs a:hover { border-color: var(--blue); color: var(--blue); }
.kb__tabs a.is-on { background: var(--blue); border-color: var(--blue); color: #fff; }
@media (max-width: 340px) {
  .head__pill { gap: 6px; padding: 6px 6px 6px 14px; }
  .head__callbtn, .head__cart, .burger { width: 40px; height: 40px; }
}
.repair-why, .repair-reviews, .repair-map { padding-block: clamp(34px, 2.8vw, 44px); }
.repair-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 14px;
}
.repair-why__item {
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 18px);
  padding: clamp(18px, 2vw, 26px);
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.repair-why__item b { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.3; color: var(--ink); }
.repair-why__item span { font-size: clamp(13.5px, 1vw, 14.5px); line-height: 1.5; color: var(--ink-2); }
.repair-reviews__score {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  margin-bottom: 18px;
}
.repair-reviews__score b {
  font-size: clamp(28px, 3vw, 38px); line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.repair-reviews__score span { font-size: clamp(13.5px, 1vw, 15px); color: var(--ink-2); }
.repair-reviews__score a { font-size: clamp(13px, 1vw, 14px); color: var(--ink-2); text-decoration: underline; }
.repair-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
  align-items: start;
}
.repair-review {
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 18px);
  padding: clamp(18px, 2vw, 26px);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
}
.repair-review__stars { color: #e8a13a; letter-spacing: 2px; font-size: 14px; line-height: 1; }
.repair-review__text {
  margin: 0; color: var(--ink-2);
  font-size: clamp(15px, 1.05vw, 16px); line-height: 1.6;
  overflow-wrap: anywhere;
}
.repair-review__meta { display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; margin-top: auto; }
.repair-review__meta b { font-size: clamp(14px, 1.05vw, 15px); color: var(--ink); }
.repair-review__meta span { font-size: 12.5px; color: var(--ink-3, var(--ink-2)); }
.repair-reviews__empty {
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 18px);
  padding: clamp(22px, 2.6vw, 34px);
  max-width: 760px;
}
.repair-reviews__empty p { margin: 0 0 10px; color: var(--ink-2); line-height: 1.55; }
.repair-reviews__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.repair-map__wrap {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.repair-map__info { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.repair-map__info .mono-list { display: flex; flex-direction: column; gap: 10px; }
.repair-map__info .mono-list span { display: block; font-family: var(--f-mono, monospace);
  font-size: 13px; line-height: 1.45; color: var(--ink-2); letter-spacing: .01em; }
.repair-map__map {
  border-radius: var(--r-outer, 18px);
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 0;
}
.repair-map__map iframe,
.repair-map__map ymaps,
.repair-map__map > div { width: 100% !important; max-width: 100% !important; }
@media (max-width: 860px) {
  .repair-map__wrap { grid-template-columns: minmax(0, 1fr); }
  .repair-map__map { height: 320px; }
  .repair-map__map > div { height: 320px !important; }
}
@media (max-width: 380px) {
  .repair-reviews__cta { flex-direction: column; align-items: stretch; }
  .repair-reviews__cta .btn { justify-content: center; }
}
.section-intro {
  max-width: 78ch;
  margin: 0 0 clamp(20px, 2.2vw, 30px);
  color: var(--ink-2);
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.65;
}
.section-intro p { margin: 0 0 10px; }
.section-intro p:last-child { margin-bottom: 0; }
.section-intro strong { color: var(--ink); font-weight: 600; }
.section-intro {
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  color: var(--ink);
}
.section-outro {
  max-width: 78ch;
  margin: clamp(26px, 3vw, 40px) 0 0;
  padding-top: clamp(18px, 2vw, 26px);
  border-top: 1px solid var(--line, #e6e8ec);
  color: var(--ink-2);
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.65;
}
.section-outro p { margin: 0 0 10px; }
.section-outro p:last-child { margin-bottom: 0; }
.section-outro strong { color: var(--ink); font-weight: 600; }
.repair-brands { padding-block: clamp(34px, 2.8vw, 44px); }
.repair-brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 14px;
}
.repair-brand {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 18px);
  padding: clamp(18px, 2vw, 26px);
  min-width: 0;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.repair-brand:hover { border-color: var(--blue, #0063ab); transform: translateY(-2px); }
.repair-brand__name {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.2; color: var(--ink);
  letter-spacing: .02em;
}
.repair-brand__models {
  font-family: var(--f-mono, monospace);
  font-size: 12px; line-height: 1.5; color: var(--blue, #0063ab);
  overflow-wrap: anywhere;
}
.repair-brand__text {
  font-size: clamp(13.5px, 1vw, 14.5px); line-height: 1.55; color: var(--ink-2);
}
.repair-brands__note {
  margin: 18px 0 0; max-width: 70ch;
  font-size: clamp(13.5px, 1vw, 14.5px); line-height: 1.6; color: var(--ink-2);
}
.repair-brands__note a { color: var(--blue, #0063ab); }
@media (prefers-reduced-motion: reduce) {
  .repair-brand { transition: none; }
  .repair-brand:hover { transform: none; }
}
.alist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
  align-items: stretch;
}
.alist--compact {
  margin-top: 4px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.alist--compact .acard__media { aspect-ratio: 4 / 3; }
.alist--compact .acard__title { font-size: clamp(15px, 1.1vw, 16.5px); }
.alist__empty { color: var(--ink-2); font-size: 15px; }
.acard { min-width: 0; display: flex; }
.acard__link {
  display: flex; flex-direction: column; width: 100%;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 24px);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.acard__link:hover {
  border-color: var(--blue, #0063ab);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(25, 29, 36, .09);
}
.acard__media {
  aspect-ratio: 16 / 10;
  background: var(--paper-2, #efeee9);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.acard__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .35s ease;
}
.acard__link:hover .acard__media img { transform: scale(1.04); }
.acard__body {
  display: flex; flex-direction: column; gap: 9px;
  padding: clamp(16px, 1.7vw, 22px);
  flex: 1 1 auto;
}
.acard__eyebrow {
  font-family: var(--f-text); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue, #0063ab);
}
.acard__title {
  margin: 0; font-family: var(--f-display, inherit);
  font-size: clamp(16px, 1.25vw, 19px); line-height: 1.25; color: var(--ink);
  overflow-wrap: anywhere;
}
.acard__lead {
  margin: 0; color: var(--ink-2);
  font-size: clamp(13.5px, 1vw, 14.5px); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.acard__more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--blue, #0063ab);
}
.acard__more svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .18s ease;
}
.acard__link:hover .acard__more svg { transform: translateX(3px); }
.alist__pager { margin-top: clamp(26px, 3vw, 38px); }
.alist__pager .modern-page-navigation { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.alist__pager a, .alist__pager span.modern-page-current {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--r-chip, 999px);
  font-size: 14px; color: var(--ink-2); text-decoration: none;
  transition: border-color .18s ease, color .18s ease;
}
.alist__pager a:hover { border-color: var(--blue, #0063ab); color: var(--blue, #0063ab); }
.alist__pager span.modern-page-current {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}
.apost { max-width: 820px; margin: 0 auto; }
.apost__head { margin-bottom: clamp(18px, 2vw, 26px); }
.apost__eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue, #0063ab);
}
.apost__title {
  margin: 0; font-family: var(--f-display, inherit);
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; color: var(--ink);
  overflow-wrap: anywhere;
}
.apost__sub {
  margin: 14px 0 0; color: var(--ink-2);
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55;
}
.apost__cover {
  margin: clamp(20px, 2.4vw, 30px) 0;
  background: var(--paper-2, #efeee9);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 24px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
}
.apost__cover img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.apost__body { color: var(--ink-2); font-size: clamp(15.5px, 1.15vw, 17px); line-height: 1.7; }
.apost__body p { margin: 0 0 16px; }
.apost__body h2 {
  margin: clamp(30px, 3vw, 42px) 0 14px; color: var(--ink);
  font-family: var(--f-display, inherit); font-size: clamp(20px, 1.9vw, 26px); line-height: 1.25;
}
.apost__body h3 { margin: 26px 0 10px; color: var(--ink); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.3; }
.apost__body ul, .apost__body ol { margin: 0 0 18px; padding-left: 22px; }
.apost__body li { margin-bottom: 8px; }
.apost__body a { color: var(--blue, #0063ab); text-decoration: underline; }
.apost__body strong { color: var(--ink); font-weight: 600; }
.apost__body img { max-width: 100%; height: auto; border-radius: var(--r-inner, 16px); }
.apost__body table {
  width: 100%; border-collapse: collapse; margin: 0 0 20px;
  font-size: clamp(13.5px, 1vw, 15px);
}
.apost__body th, .apost__body td {
  border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top;
}
.apost__body th { background: var(--paper-2, #efeee9); color: var(--ink); font-weight: 600; }
.apost__body .table-wrap, .apost__body .prose { overflow-x: auto; }
.apost__related { margin-top: clamp(40px, 5vw, 64px); }
.apost__related .shead { margin-bottom: clamp(18px, 2vw, 26px); }
.apost__nav {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px; margin-top: clamp(28px, 3vw, 40px);
  padding-top: clamp(22px, 2.4vw, 30px); border-top: 1px solid var(--line);
}
.apost__nav-item {
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-inner, 18px);
  text-decoration: none; transition: border-color .18s ease;
}
.apost__nav-item:hover { border-color: var(--blue, #0063ab); }
.apost__nav-item--next { text-align: right; }
.apost__nav-dir {
  font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3, #6f757d);
}
.apost__nav-name { color: var(--ink); font-size: clamp(14px, 1.05vw, 15.5px); line-height: 1.35; overflow-wrap: anywhere; }
@media (prefers-reduced-motion: reduce) {
  .acard__link, .acard__media img, .acard__more svg { transition: none; }
  .acard__link:hover { transform: none; }
  .acard__link:hover .acard__media img { transform: none; }
}
.atopics { margin: 0 0 clamp(22px, 2.6vw, 34px); }
.atopics__nav { display: flex; flex-wrap: wrap; gap: 10px; }
.atopic {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip, 999px);
  background: var(--white, #fff);
  font-size: clamp(13.5px, 1vw, 14.5px); line-height: 1.2;
  color: var(--ink-2); text-decoration: none; white-space: nowrap;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.atopic b { font-weight: 600; font-size: 12px; color: var(--ink-3, #6f757d); }
.atopic:hover { border-color: var(--blue, #0063ab); color: var(--blue, #0063ab); }
.atopic:hover b { color: var(--blue, #0063ab); }
.atopic.is-active {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
  cursor: default;
}
.atopic.is-active b { color: rgba(255, 255, 255, .62); }
@media (max-width: 560px) {
  .atopics__nav {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .atopics__nav::-webkit-scrollbar { display: none; }
}
.apost__related .shead__link {
  background: none; border: 0; padding: 0;
  color: var(--ink-2); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding-bottom: 4px;
}
.apost__related .shead__link:hover {
  background: none; color: var(--blue, #0063ab);
  border-bottom-color: var(--blue, #0063ab); transform: none;
}
.acard__more {
  font-size: 13.5px; letter-spacing: 0; text-transform: none; font-weight: 600;
}
body.section-news .s-six,
.atopics + .s-six { padding-top: 0; }
.apost__topic {
  display: inline-flex; align-items: center;
  padding: 6px 13px; margin-bottom: 12px;
  border: 1px solid var(--line); border-radius: var(--r-chip, 999px);
  font-size: 12.5px; letter-spacing: .02em;
  color: var(--ink-2); text-decoration: none; background: var(--white, #fff);
  transition: border-color .18s ease, color .18s ease;
}
.apost__topic:hover { border-color: var(--blue, #0063ab); color: var(--blue, #0063ab); }
.apost__topic + .apost__eyebrow { display: block; margin-bottom: 10px; }
.acard__link,
.repair-brand,
.repair-review,
.repair-why__item {
  border: 0 !important;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.acard__link:hover,
.repair-brand:hover,
.repair-review:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-lift);
  border: 0 !important;
}
@media (prefers-reduced-motion: reduce) {
  .acard__link, .repair-brand, .repair-review, .repair-why__item { transition: none; }
  .acard__link:hover, .repair-brand:hover, .repair-review:hover { transform: none; }
}
.map-fallback {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 10px; height: 100%; min-height: 220px; padding: 28px 20px; text-align: center;
  background: var(--paper-2, #f2f1ee); border-radius: 14px;
}
.map-fallback p { margin: 0; font-size: 15px; }
.map-fallback a { color: var(--blue); text-decoration: underline; }
body:has(.pj-card-ux) .footer { margin-top: 56px; }
body:has(.pj-card-ux) .pj-card-ux { padding-bottom: 0; }
body:has(.pj-card-ux) section:has(> .pj-card-ux) { padding-bottom: 0; }
body:has(.pj-card-ux) .pj-card-ux .tabbody > .sec { padding-bottom: 0; }
body:has(.pj-card-ux) .pj-card-ux .tabbody > .sec:last-child > *:last-child { margin-bottom: 0; }
body:has(.pj-card-ux) section.page-product { padding-bottom: 24px; }
body:has(.pj-card-ux) .pj-card-ux .tabbody > .sec + .sec { padding-top: 40px !important; }
@media (max-width: 560px) {
  body:has(.pj-card-ux) .pj-card-ux .tabbody > .sec + .sec { padding-top: 28px !important; }
}
.repair-brands__note {
  margin-top: 20px;
  padding: 16px 20px;
  background: color-mix(in oklab, var(--blue, #0063ab) 6%, var(--white, #fff));
  border: 1px solid color-mix(in oklab, var(--blue, #0063ab) 22%, transparent);
  border-left: 3px solid var(--blue, #0063ab);
  border-radius: var(--r-inner, 14px);
  color: var(--ink);
}
.repair-brands__note a { color: var(--blue, #0063ab); font-weight: 600; }
.page-about .mfeedback form { max-width: 640px; }
.page-about .s-four__block { max-width: 640px; }
.page-about .s-four__block .s-four__input,
.page-about .s-four__block .s-four__textarea { margin-bottom: 12px; }
.page-about .s-four__block .s-four__textarea { margin-bottom: 16px; }
.acard__media { padding: 12px; }
.acard__media img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  padding: 0;
}
.acard__media { background: #fff; }
.repair-seo2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  max-width: var(--container, 1280px);
  margin-inline: auto;
  padding-inline: 16px;
}
.repair-seo2__text { min-width: 0; }
.repair-seo2__aside {
  order: 2;
  align-self: stretch;
  height: 100%;
}
.repair-cta {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2vw, 28px);
  background: var(--ink, #16181d);
  color: var(--paper, #f7f6f2);
  border-radius: var(--r-outer, 20px);
}
.repair-cta__eyebrow {
  font-family: var(--f-text, inherit);
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #7fc0f0;
}
.repair-cta__title {
  font-family: var(--f-display, inherit);
  font-size: clamp(20px, 1.6vw, 24px); line-height: 1.15;
  letter-spacing: -.01em; margin: 0; color: inherit;
}
.repair-cta__text { font-size: 14.5px; line-height: 1.55; opacity: .78; margin: 0; }
.repair-cta__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.repair-cta__points li {
  position: relative; padding-left: 24px; font-size: 14px; line-height: 1.45; opacity: .9;
}
.repair-cta__points li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 8px;
  border-left: 2px solid #4da3e8; border-bottom: 2px solid #4da3e8;
  transform: rotate(-45deg);
}
.repair-cta__btn {
  display: block; text-align: center; text-decoration: none;
  padding: 13px 18px; border-radius: 999px;
  background: var(--blue, #0063ab); color: #fff; font-weight: 600; font-size: 15px;
  transition: background .18s ease;
}
.repair-cta__btn:hover { background: #0074c8; }
.repair-cta__phone {
  display: block; text-align: center; text-decoration: none;
  font-family: var(--f-display, inherit); font-weight: 700;
  font-size: 19px; letter-spacing: -.01em; color: #fff;
}
.repair-cta__link {
  display: block; text-align: center; text-decoration: none;
  font-size: 14px; color: #7fc0f0;
}
.repair-cta__link:hover { color: #a9d5f5; }
@media (max-width: 1100px) {
  .repair-seo2 { grid-template-columns: minmax(0, 1fr); }
  .repair-seo2__aside { order: 0; height: auto; }
  .repair-cta { position: static; }
  .page-repair__seo-content .repair-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .repair-cta__btn { transition: none; }
}
.repair-map__info .btn--ghost {
  display: inline-flex;
  width: auto;
  max-width: max-content;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}
.card-seo2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(20px, 2.4vw, 40px);
  align-items: start;
}
.card-seo2__text { min-width: 0; }
.card-seo2__aside { order: 2; align-self: stretch; height: 100%; }
.card-cta { position: sticky; top: 180px; }
@media (max-width: 1100px) {
  .card-seo2 { grid-template-columns: minmax(0, 1fr); }
  .card-seo2__aside { order: 0; height: auto; }
  .card-cta { position: static; }
}
.pj-card-ux .bx_item_detail_rating,
.pj-card-ux .bx-catalog-tab-list { display: none !important; }
.hibcard-related { margin-top: 44px; padding-top: 40px; }
@media (max-width: 560px) { .hibcard-related { margin-top: 32px; padding-top: 28px; } }
.hibcard-related .product-card {
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: var(--r-outer, 18px);
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s ease, transform .18s ease;
}
.hibcard-related .product-card:hover {
  border-color: var(--blue, #0063ab);
  transform: translateY(-2px);
}
.hibcard-related .product-card__top { background: var(--paper-2, #efeee9); border-radius: var(--r-inner, 14px); }
.hibcard-related .product-card__img { width: auto; height: auto; max-width: 100%; max-height: 100%; }
@media (prefers-reduced-motion: reduce) {
  .hibcard-related .product-card { transition: none; }
}
@media (max-width: 620px) {
  .pj-card-ux .tabs a {
    padding: 12px 8px; font-size: 12px; letter-spacing: .04em;
    min-height: 40px; display: flex; align-items: center;
  }
}
@media (max-width: 900px) {
  .breadcrumbs__link { display: inline-block; padding: 6px 0; min-height: 32px; }
  .breadcrumbs__content { row-gap: 2px; }
}
@media (max-width: 900px) {
  .repair-cta__phone { padding: 7px 0; min-height: 44px; }
  .specs-dotted__more { padding: 6px 0; min-height: 36px; }
}
.page-contact .contact-map,
.page-contact .text-content { margin-top: clamp(18px, 2.4vw, 28px); }
@media (max-width: 900px) {
  .page-contact a[href^="tel"],
  .page-contact a[href^="mailto"],
  .repair-map a[href^="tel"],
  .repair-reviews a[href^="tel"] {
    display: inline-block; padding: 9px 0; min-height: 40px;
  }
  .product-card__more { display: inline-flex; align-items: center; min-height: 36px; }
  .blog-add-comment .bx_bt_button { min-height: 40px; padding: 10px 18px; }
  .repair-reviews__score a { display: inline-block; padding: 8px 0; min-height: 34px; }
}
.cart-form__check-text { flex: 1 1 auto; min-width: 0; }
.cart-form__bot .cart-form__check { font-size: 15px; font-weight: 500; color: var(--ink); }
.cart-form__bot p > .cart-form__check,
.cart-form__bot .what .cart-form__check { font-size: 15.5px; font-weight: 600; }
.cart-form__bot > div > p[style*="0063ab"],
.cart-form__bot p[style*="0063ab"] { font-size: 16px; font-weight: 700; }
.cart-form__consent-text { font-size: 14px; font-weight: 400; color: var(--ink-2); }
.cart-form__bot p,
.checkout__order p { max-width: none; }
@media (max-width: 620px) {
  .cart-form__bot .cart-form__check { font-size: 16px; }
  .cart-form__consent-text { font-size: 14.5px; line-height: 1.5; }
}
.page-product__sidebar .submenuItems a,
.page-product__sidebar .accordion-menu .submenuItems a {
  color: oklch(0.315 0.018 255) !important;
  font-weight: 600 !important;
}
.cart-page .cart-form__bot, .checkout__order + * { margin-top: clamp(16px, 2vw, 24px); }
.btn[style*="width:100%"],
.pcard__foot .add2cart .btn--buy,
.buybox__row:has(.add2cart) .btn--buy,
.pcard .pcard__foot .add2cart .btn--buy.btn--sm {
  justify-content: center;
}
@media (max-width: 900px) {
  .hero--bleed .hero__copy { padding-inline: 16px; }
  .hero--bleed .hero__copy::before { inset: -20px 0 -16px 0; }
}
@media (max-width: 900px) {
  .card-seo2__aside .repair-cta,
  .card-seo2__aside:has(.repair-cta) { display: none !important; }
}
:root {
  --f-display: "Manrope", system-ui, sans-serif;
}
h1, h2, h3,
.section-title, .s-four__title, .shead h2, .lead__copy h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
@media (min-width: 1360px) {
  .head > .container { max-width: 1440px; }
  .head .nav > .navdrop--catalog > button {
    padding: 18px 30px 18px 26px;
    font-size: 19px;
    font-weight: 800;
    border-radius: 999px;
    letter-spacing: -.01em;
    gap: 11px;
    background: var(--red);
    box-shadow: 0 14px 30px -12px rgba(188, 38, 44, .75);
  }
  .head .nav > .navdrop--catalog > button:hover { background: var(--red-deep); }
  .head .nav > .navdrop--catalog > button svg.navdrop__grid { width: 22px; height: 22px; }
  .head .nav > .navdrop--catalog > button svg:last-child { width: 14px; height: 14px; }
  .head .nav > a, .head .nav > .navdrop--sm > button { font-size: 15.5px; }
  .head .nav .header-menu li > a { font-size: 15.5px; }
  .head .nav { gap: 6px; }
}
.news-cluster {
  margin: 32px 0 8px;
  padding: 20px 24px;
  background: var(--paper-2, #f6f5f1);
  border: 1px solid var(--line);
  border-radius: var(--r-inner, 14px);
}
.news-cluster__h {
  font-family: var(--f-display); font-size: 15px; font-weight: 700;
  letter-spacing: -.01em; margin-bottom: 12px; color: var(--ink);
}
.news-cluster__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.news-cluster__list li { position: relative; padding-left: 16px; line-height: 1.35; }
.news-cluster__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}
.news-cluster__list a { font-size: 15px; font-weight: 600; color: var(--ink); }
.news-cluster__list a:hover { color: var(--blue); }
.news-cluster .ncl__topic {
  display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 11px; font-weight: 600; color: var(--muted, #6b7681); white-space: nowrap;
}
@media (max-width: 560px) {
  .news-cluster { padding: 16px 18px; margin: 24px 0 4px; }
  .news-cluster__list a { font-size: 14px; }
}
@media (max-width: 560px) {
  .head .head__contact {
    display: flex !important;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    margin-left: auto;
    text-align: right;
    flex: 0 0 auto;
    min-width: max-content;
  }
  .head .head__phones { display: contents; }
  .head .head__meta   { display: none !important; }
  .head .head__phone {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    font-family: var(--f-text);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    color: var(--ink);
    white-space: nowrap;
  }
  .head .head__phone--second { font-size: 12.5px; font-weight: 800; margin-top: 0; }
  .head .head__phone::before {
    content: "";
    flex: none;
    width: 13px; height: 13px;
    background: currentColor;
    opacity: .55;
    -webkit-mask: var(--ico) center / contain no-repeat;
            mask: var(--ico) center / contain no-repeat;
  }
  .head .head__phone[href="tel:+79859222715"] {
    --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 012 2v16a2 2 0 01-2 2H7a2 2 0 01-2-2V4a2 2 0 012-2zm3 17h4" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
  }
  .head .head__phone[href="tel:+74959609140"] {
    --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 10.8a15 15 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11 11 0 003.5.56 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.3a1 1 0 011 1 11 11 0 00.56 3.5 1 1 0 01-.24 1z" fill="black"/></svg>');
  }
  .head .head__callbtn { display: none !important; }
  .topbar__phone { display: none !important; }
  .head .head__pill { gap: 6px; padding: 6px 8px 6px 10px; }
  .head .head__cart, .head .burger { width: 40px; height: 40px; flex: none; }
  .head .head__cart { margin-left: 0; }
}
@media (max-width: 340px) {
  .head .head__phone, .head .head__phone--second { font-size: 11px; }
  .head .head__phone::before { width: 11px; height: 11px; }
  .head .head__pill { gap: 4px; padding: 6px 6px 6px 8px; }
  .head .head__cart, .head .burger { width: 36px; height: 36px; }
}
.tabbar { display: none; }
@media (max-width: 560px) {
  :root { --tabbar-row: 58px; --tabbar-h: 58px; }
  .tabbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1000;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -2px 14px rgba(0,0,0,.06);
  }
  .tabbar__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    min-height: var(--tabbar-row);
    padding: 6px 2px;
    border: 0; background: none;
    font-family: var(--f-text);
    font-size: 11px; font-weight: 600; line-height: 1;
    color: var(--ink-2);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  .tabbar__ico { width: 22px; height: 22px; flex: none; }
  .tabbar__label { white-space: nowrap; }
  .tabbar .tabbar__item.is-active { color: var(--blue); }
  .tabbar .tabbar__item.tabbar__item--cart { color: var(--red); }
  .tabbar__icowrap { position: relative; display: inline-flex; }
  .tabbar__badge {
    position: absolute; top: -6px; right: -8px;
    min-width: 16px; height: 16px; padding: 0 4px;
    border-radius: 999px;
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 800; font-style: normal; line-height: 16px;
    text-align: center;
  }
  .tabbar__badge[hidden] { display: none; }
  .head .head__cart { display: none !important; }
  body { padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px)); }
  .cookie-modal { bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px)) !important; }
  .mnav.open ~ .tabbar, .tabbar { z-index: 1000; }
}
@media (max-width: 340px) {
  .tabbar__item { font-size: 10px; gap: 2px; }
  .tabbar__ico { width: 20px; height: 20px; }
}
@media (max-width: 560px) {
  .head { top: 0; margin-top: 0; }
  .head::before { top: 0; }
  .head.scrolled { padding-top: 0; }
  .head > .container { padding-left: 0; padding-right: 0; max-width: none; }
  .head .head__pill {
    border-radius: 0;
    padding: 8px 12px;
    gap: 10px;
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: inset 0 -1px 0 var(--line);
  }
  .head.scrolled .head__pill { box-shadow: inset 0 -1px 0 var(--line), 0 2px 12px rgba(0,0,0,.06); }
  .head .head__contact { margin-right: 8px; }
}
@media (max-width: 340px) {
  .head .head__pill { padding: 8px 10px; gap: 8px; }
  .head .head__contact { margin-right: 6px; }
}
@media (max-width: 699px) {
  .cookie-modal .cookie-modal__consent { flex: 0 0 auto; }
}
.topbar__phones { display: inline-flex; align-items: center; gap: 16px; }
@media (max-width: 560px) {
  .topbar__inner { justify-content: center; padding-block: 9px; }
  .topbar__phones {
    display: flex; align-items: center; justify-content: center;
    gap: 18px; flex-wrap: nowrap;
  }
  .topbar .topbar__phone {
    display: inline-flex !important; align-items: center; gap: 6px;
    color: var(--paper);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
    text-decoration: none;
  }
  .topbar .topbar__phone::before {
    content: ""; flex: none; width: 13px; height: 13px;
    background: currentColor; opacity: .75;
    -webkit-mask: var(--ico) center / contain no-repeat;
            mask: var(--ico) center / contain no-repeat;
  }
  .topbar .topbar__phone--land {
    --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 10.8a15 15 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11 11 0 003.5.56 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.3a1 1 0 011 1 11 11 0 00.56 3.5 1 1 0 01-.24 1z" fill="black"/></svg>');
  }
  .topbar .topbar__phone--cell {
    --ico: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a2 2 0 012 2v16a2 2 0 01-2 2H7a2 2 0 01-2-2V4a2 2 0 012-2zm3 17h4" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
  }
  .head .head__contact { display: none !important; }
  .head .head__cart { display: block !important; margin-left: auto; }
}
@media (max-width: 344px) {
  .topbar__phones { gap: 12px; }
  .topbar .topbar__phone { font-size: 12.5px; gap: 5px; }
  .topbar .topbar__phone::before { width: 12px; height: 12px; }
}
@media (min-width: 1121px) {
  .head .nav > .navdrop--catalog > button {
    background: var(--red);
    box-shadow: 0 10px 24px -12px rgba(188, 38, 44, .7);
  }
  .head .nav > .navdrop--catalog > button:hover {
    background: var(--red-deep);
    color: #fff;
  }
}
@media (min-width: 901px) {
  .hero--bleed .hero__copy {
    position: relative; z-index: 2;
    padding: clamp(26px, 2.6vw, 40px) clamp(24px, 2.6vw, 42px);
  }
  .hero--bleed .hero__copy::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(14, 12, 10, .80);
    border-radius: 20px;
    box-shadow: 0 10px 40px -18px rgba(0,0,0,.6);
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .hero--bleed .hero__copy { max-width: 62%; }
  .hero--bleed .hero__bg img { object-position: 78% 50%; }
}
.hero--bleed .hero__bg picture { display: block; width: 100%; height: 100%; }
.tile picture { display: contents; }
