/* ============================================================
   МАЙСТЕР-ПРОЦЕВ — оновлений інтернет-магазин
   Design tokens + base + components
   ============================================================ */

:root {
  /* warm construction palette */
  --bg:        oklch(0.982 0.006 80);
  --surface:   oklch(1 0 0);
  --surface-2: oklch(0.967 0.008 80);
  --line:      oklch(0.905 0.010 75);
  --line-soft: oklch(0.935 0.008 78);

  --ink:       oklch(0.235 0.012 60);
  --ink-2:     oklch(0.43 0.014 62);
  --ink-3:     oklch(0.60 0.012 65);

  /* primary accent — construction amber (tweakable) */
  --brand-h: 56;
  --brand:      oklch(0.715 0.165 var(--brand-h));
  --brand-700:  oklch(0.605 0.155 var(--brand-h));
  --brand-600:  oklch(0.665 0.162 var(--brand-h));
  --brand-soft: oklch(0.945 0.045 var(--brand-h));
  --brand-tint: oklch(0.965 0.030 var(--brand-h));
  --on-brand:   oklch(0.22 0.03 var(--brand-h));

  --steel:     oklch(0.45 0.035 250);
  --steel-soft:oklch(0.95 0.012 250);

  --ok:        oklch(0.62 0.13 150);
  --ok-soft:   oklch(0.95 0.04 150);
  --warn:      oklch(0.70 0.16 40);
  --danger:    oklch(0.58 0.18 25);

  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px oklch(0.3 0.02 60 / 0.06), 0 1px 3px oklch(0.3 0.02 60 / 0.05);
  --shadow:    0 2px 6px oklch(0.3 0.02 60 / 0.07), 0 8px 24px oklch(0.3 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.3 0.02 60 / 0.09), 0 10px 28px oklch(0.3 0.02 60 / 0.08);
  --shadow-lg: 0 12px 40px oklch(0.3 0.02 60 / 0.12);

  --maxw: 1280px;
  --ff-head: "Archivo", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;
  --ff-mono: "Spline Sans Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--brand-soft); }

h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; margin: 0; }
.mono { font-family: var(--ff-mono); font-feature-settings: "tnum" 1; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.app-shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ---------- utility ---------- */
.row { display: flex; align-items: center; }
.row.gap { gap: 12px; }
.col { display: flex; flex-direction: column; }
.spacer { flex: 1; }
.muted { color: var(--ink-3); }
.eyebrow {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-700); font-weight: 500;
}
.eyebrow.steel { color: var(--steel); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 12px 20px;
  border-radius: var(--radius-sm); transition: transform .08s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: 0 1px 0 oklch(1 0 0 / .25) inset, var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-600); }
.btn-dark { background: var(--ink); color: var(--surface); }
.btn-dark:hover { background: oklch(0.32 0.012 60); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); background: var(--surface-2); }
.btn-soft { background: var(--brand-tint); color: var(--brand-700); }
.btn-soft:hover { background: var(--brand-soft); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 999px; font-size: 13px; font-weight: 600; border: 1.5px solid var(--line);
  background: var(--surface); color: var(--ink-2); transition: all .14s;
}
.chip:hover { border-color: var(--ink-3); }
.chip.active { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 7px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
  font-family: var(--ff-head);
}
.badge-new  { background: var(--ink); color: var(--surface); }
.badge-hit  { background: var(--brand); color: var(--on-brand); }
.badge-sale { background: var(--danger); color: white; }
.badge-stock{ background: var(--ok-soft); color: var(--ok); text-transform: none; letter-spacing: 0; font-weight: 700; }
.badge-bonus{ background: var(--brand-soft); color: var(--brand-700); text-transform: none; letter-spacing: 0; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

/* product card */
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-soft); }
.pcard__imgwrap { position: relative; aspect-ratio: 1 / 1; background: var(--surface-2); }
.pcard__badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; z-index: 2; flex-wrap: wrap; }
.pcard__fav {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px;
  border-radius: 50%; background: oklch(1 0 0 / .9); display: grid; place-items: center;
  color: var(--ink-3); box-shadow: var(--shadow-sm); transition: all .14s; backdrop-filter: blur(4px);
}
.pcard__fav:hover { color: var(--danger); }
.pcard__fav.on { color: var(--danger); }
.pcard__cmp {
  position: absolute; top: 50px; right: 10px; z-index: 2; width: 34px; height: 34px;
  border-radius: 50%; background: oklch(1 0 0 / .9); display: grid; place-items: center;
  color: var(--ink-3); box-shadow: var(--shadow-sm); transition: all .14s; backdrop-filter: blur(4px);
}
.pcard__cmp:hover { color: var(--brand-700); }
.pcard__cmp.on { color: var(--on-brand); background: var(--brand); }
.pcard__body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.pcard__cat { font-size: 11.5px; color: var(--ink-3); font-family: var(--ff-mono); letter-spacing: .04em; }
.pcard__name { font-size: 14.5px; font-weight: 600; line-height: 1.3; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.pcard__name:hover { color: var(--brand-700); }
.pcard__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.pcard__price b { font-family: var(--ff-head); font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.pcard__unit { font-size: 12.5px; color: var(--ink-3); }
.pcard__old { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }
.pcard__foot { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.pcard__add { flex: 1; }
.qbtn { width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--surface); display: grid; place-items: center; color: var(--ink-2); transition: all .14s; }
.qbtn:hover { border-color: var(--ink-3); color: var(--ink); }

/* rating */
.rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--ink-3); }
.stars { color: var(--brand); letter-spacing: 1px; }

/* product image placeholder */
.ph {
  width: 100%; height: 100%; position: relative; display: grid; place-items: center; overflow: hidden;
}
.ph__label { position: absolute; bottom: 9px; left: 9px; font-family: var(--ff-mono); font-size: 10px; color: var(--ink-3); letter-spacing: .03em; background: oklch(1 0 0 / .72); padding: 2px 6px; border-radius: 5px; backdrop-filter: blur(2px); }
.ph__glyph { width: 42%; height: 42%; opacity: .82; }
.ph--photo { background: #fff; }
.ph__img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* PDP main image zoom affordance */
.pdp__main-img.zoomable { cursor: zoom-in; }
.pdp__zoom-hint {
  position: absolute; bottom: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--ink-2); background: oklch(1 0 0 / .82);
  padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(3px); pointer-events: none;
  opacity: 0; transition: opacity .15s; box-shadow: 0 2px 8px oklch(0 0 0 / .08);
}
.pdp__main-img.zoomable:hover .pdp__zoom-hint { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: oklch(0.18 0.01 60 / .92);
  display: grid; grid-template-rows: 1fr auto auto; place-items: center;
  padding: 24px; animation: lb-in .16s ease-out;
}
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage {
  margin: 0; grid-row: 1; max-width: min(1100px, 92vw); max-height: 74vh; display: grid; place-items: center;
  cursor: zoom-in; overflow: hidden; border-radius: 12px;
}
.lightbox__stage.zoomed { cursor: zoom-out; }
.lightbox__stage img {
  max-width: min(1100px, 92vw); max-height: 74vh; object-fit: contain; display: block;
  background: #fff; border-radius: 12px; transition: transform .12s ease-out;
}
.lightbox__close {
  position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: oklch(1 0 0 / .12);
  border: none; cursor: pointer; transition: background .14s;
}
.lightbox__close:hover { background: oklch(1 0 0 / .22); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: oklch(1 0 0 / .12); border: none; cursor: pointer; transition: background .14s;
}
.lightbox__nav:hover { background: oklch(1 0 0 / .24); }
.lightbox__nav.prev { left: 18px; }
.lightbox__nav.next { right: 18px; }
.lightbox__bar { grid-row: 2; color: oklch(1 0 0 / .82); font-family: var(--ff-mono); font-size: 13px; padding: 14px 0 6px; }
.lightbox__thumbs { grid-row: 3; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; max-width: 92vw; }
.lightbox__thumb {
  width: 60px; height: 60px; border-radius: 9px; overflow: hidden; padding: 0; cursor: pointer;
  background: #fff; border: 2px solid transparent; opacity: .55; transition: opacity .14s, border-color .14s;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lightbox__thumb.active, .lightbox__thumb:hover { opacity: 1; border-color: var(--brand); }

/* inputs */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.input, .select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); transition: border-color .14s, box-shadow .14s;
}
.input:focus, .select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.input::placeholder { color: var(--ink-3); }

/* divider */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* section headers */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }
.section-head .sub { color: var(--ink-3); font-size: 14px; margin-top: 6px; }

/* grid */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(218px, 1fr)); gap: 18px; }

/* skeleton link reset for clickable */
.clickable { cursor: pointer; }

/* scroll row */
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 18px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.hscroll > * { scroll-snap-align: start; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }

/* toast */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  background: var(--ink); color: var(--surface); padding: 13px 18px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  animation: toastIn .25s cubic-bezier(.2,.9,.3,1.3);
}
.toast .t-thumb { width: 34px; height: 34px; border-radius: 8px; overflow: hidden; flex: none; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* modal */
.modal-back { position: fixed; inset: 0; background: oklch(0.2 0.01 60 / .45); backdrop-filter: blur(3px); z-index: 150; display: grid; place-items: center; padding: 20px; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; padding: 30px; animation: pop .25s cubic-bezier(.2,.9,.3,1.2); position: relative; }
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); }
.modal__close:hover { background: var(--surface-2); color: var(--ink); }

/* breadcrumbs */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); flex-wrap: wrap; padding: 18px 0; }
.crumbs a:hover { color: var(--brand-700); }
.crumbs .sep { opacity: .5; }

/* keep scrollbar gutter stable */
.scroll-y { overflow-y: auto; }

/* ============================================================
   LOGO
   ============================================================ */
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { flex: none; width: 52px; height: 40px; background-color: currentColor;
  -webkit-mask: url(assets/logo-emblem.png) center / contain no-repeat;
  mask: url(assets/logo-emblem.png) center / contain no-repeat; }
.logo__name { font-family: var(--ff-head); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.logo__txt { min-width: 0; }
.logo__tag { font-family: var(--ff-mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: .02em; margin-top: 3px; }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar { background: var(--ink); color: oklch(0.85 0.01 70); font-size: 13px; }
.topbar .container { display: flex; align-items: center; gap: 22px; height: 38px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: inherit; white-space: nowrap; }
.topbar a:hover { color: var(--brand); }
.topbar .tb-phone { font-weight: 700; color: #fff; font-family: var(--ff-mono); }

.header { position: sticky; top: 0; z-index: 90; background: var(--surface); border-bottom: 1px solid var(--line); }
.header__main { display: flex; align-items: center; gap: 22px; height: 76px; }
.header__icons { display: flex; align-items: center; gap: 2px; flex: none; }
.s-go__ic { display: none; }
.searchbar { flex: 1; display: flex; align-items: center; gap: 10px; background: var(--surface-2); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0 8px 0 16px; height: 52px; transition: border-color .15s, box-shadow .15s; }
.searchbar:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); background: var(--surface); }
.searchbar input { flex: 1; border: none; background: none; outline: none; font-size: 15px; color: var(--ink); }
.searchbar .s-btn { color: var(--ink-3); display: grid; place-items: center; }
.searchbar .s-go { background: var(--brand); color: var(--on-brand); border-radius: 8px; padding: 9px 18px; font-weight: 700; font-size: 14px; }

.hicon { position: relative; width: 46px; height: 46px; border-radius: var(--radius-sm); display: grid; place-items: center; color: var(--ink-2); transition: background .14s, color .14s; }
.hicon:hover { background: var(--surface-2); color: var(--ink); }
.hicon__txt { font-size: 11px; font-weight: 600; }
.hicon-lg { display: flex; width: auto; padding: 0 12px; gap: 4px; flex-direction: column; height: 54px; justify-content: center; }
.hicon-lg svg { display: block; }
.hicon__txt { font-size: 11px; font-weight: 600; line-height: 1; }
.hcount { position: absolute; top: 6px; right: 6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--brand); color: var(--on-brand); font-size: 11px; font-weight: 800; display: grid; place-items: center; font-family: var(--ff-head); }

/* catalog nav */
.catnav { border-bottom: 1px solid var(--line); background: var(--surface); }
.catnav .container { display: flex; align-items: stretch; gap: 4px; height: 52px; position: relative; }
.catnav__cat { position: relative; display: flex; align-items: center; flex: none; }
.catnav__links { display: flex; align-items: stretch; gap: 2px; flex: 1; min-width: 0; }
.catnav__all-chev { transition: transform .18s; margin-left: 2px; opacity: .8; }
.catnav__all.open .catnav__all-chev { transform: rotate(180deg); }
.catnav__all { display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff; font-weight: 700; font-size: 14.5px; padding: 0 16px; align-self: center; height: 40px; border: none; border-radius: var(--radius-sm); margin-right: 8px; flex: none; cursor: pointer; white-space: nowrap; }
.catnav__all:hover { background: var(--brand); color: var(--on-brand); }
.catnav__all:hover { background: var(--brand); color: var(--on-brand); }
.catnav__link { display: inline-flex; align-items: center; padding: 0 14px; font-size: 14px; font-weight: 600; color: var(--ink-2); white-space: nowrap; border-bottom: 2.5px solid transparent; transition: color .14s, border-color .14s; }
.catnav__link:hover { color: var(--ink); }
.catnav__link.active { color: var(--brand-700); border-color: var(--brand); }

/* catnav: mega category menu */
.megacat { position: absolute; top: calc(100% + 6px); left: 0; width: min(760px, calc(100vw - 32px)); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px; z-index: 70; }
.megacat__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.megacat__item { display: flex; align-items: center; gap: 13px; padding: 11px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: background .12s; }
.megacat__item:hover { background: var(--surface-2); }
.megacat__item.active { background: var(--brand-tint); }
.megacat__ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.megacat__txt { min-width: 0; }
.megacat__txt b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.megacat__item:hover .megacat__txt b { color: var(--brand-700); }
.megacat__txt small { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.megacat__all { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; padding: 12px; border-radius: var(--radius-sm); background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; transition: background .14s; }
.megacat__all:hover { background: var(--brand); color: var(--on-brand); }
@media (max-width: 640px) {
  .megacat__grid { grid-template-columns: 1fr; }
  .catnav__links { gap: 0; }
  .catnav__link { padding: 0 10px; font-size: 13px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center; padding: 56px 0 60px; position: relative; z-index: 2; }
.hero__eyebrow { font-family: var(--ff-mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); line-height: 0.98; margin: 16px 0 18px; letter-spacing: -0.02em; }
.hero p.lead { font-size: 18px; color: oklch(0.84 0.01 70); max-width: 30ch; margin: 0 0 26px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 34px; }
.hero__stat b { font-family: var(--ff-head); font-size: 30px; display: block; white-space: nowrap; }
.hero__stat { flex: none; }
.hero__stat span { font-size: 13px; color: oklch(0.78 0.01 70); }
.hero__art { position: relative; height: 360px; border-radius: var(--radius-lg); overflow: hidden; }
.hero__grid-bg { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(oklch(1 0 0 / .06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / .06) 1px, transparent 1px);
  background-size: 38px 38px; z-index: 1; }

/* perk strip */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perk { display: flex; gap: 13px; align-items: flex-start; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.perk__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.perk b { font-size: 14.5px; display: block; }
.perk span { font-size: 12.5px; color: var(--ink-3); }

/* category tiles */
.cattiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cattile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1 / 0.92; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; transition: transform .16s, box-shadow .16s; background: var(--surface-2); }
.cattile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .3s ease; }
.cattile:hover .cattile__img { transform: scale(1.05); }
.cattile__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, oklch(0.18 0.012 60 / 0.85) 0%, oklch(0.18 0.012 60 / 0.38) 44%, oklch(0.18 0.012 60 / 0.04) 72%); }
.cattile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cattile__glyph { position: absolute; top: 12px; right: 12px; opacity: .85; }
.cattile b { font-size: 15px; font-family: var(--ff-head); position: relative; z-index: 2; color: #fff; }
.cattile span { font-size: 11.5px; color: oklch(0.86 0.01 70); position: relative; z-index: 2; margin-top: 2px; }

/* bonus / loyalty banner */
.loyalty { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.loyalty h2 { font-size: clamp(26px, 3vw, 38px); }
.loyalty .lead { color: oklch(0.84 0.01 70); font-size: 16px; margin: 12px 0 22px; max-width: 46ch; }
.loyalty__steps { display: flex; flex-direction: column; gap: 14px; }
.lstep { display: flex; gap: 13px; align-items: center; }
.lstep__n { width: 34px; height: 34px; border-radius: 9px; background: oklch(1 0 0 / .1); color: var(--brand); font-family: var(--ff-head); font-weight: 800; display: grid; place-items: center; flex: none; }
.bcard { background: linear-gradient(150deg, var(--brand), var(--brand-700)); border-radius: var(--radius); padding: 24px; color: var(--on-brand); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.bcard__chip { width: 42px; height: 32px; border-radius: 6px; background: oklch(1 0 0 / .35); margin-bottom: 26px; }
.bcard__label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; opacity: .8; }
.bcard__num { font-family: var(--ff-mono); font-size: 17px; letter-spacing: .12em; margin-top: 4px; }
.bcard__foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: oklch(0.8 0.01 70); margin-top: 64px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding: 52px 0 40px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-family: var(--ff-head); }
.footer a { display: block; padding: 5px 0; font-size: 14px; }
.footer a:hover { color: var(--brand); }
.footer__contact { font-size: 14px; line-height: 1.7; }
.footer__phone { font-family: var(--ff-mono); font-size: 18px; color: #fff; font-weight: 600; }
.footer__bottom { border-top: 1px solid oklch(1 0 0 / .1); padding: 20px 0; font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.drawer-back { position: fixed; inset: 0; background: oklch(0.2 0.01 60 / .45); backdrop-filter: blur(3px); z-index: 120; animation: fade .2s; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: var(--bg); z-index: 121; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); animation: slideIn .28s cubic-bezier(.2,.8,.2,1); }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); background: var(--surface); }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 22px; background: var(--surface); }

.citem { display: grid; grid-template-columns: 66px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.citem__img { width: 66px; height: 66px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.citem__name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.citem__meta { font-size: 12px; color: var(--ink-3); font-family: var(--ff-mono); margin-top: 3px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 9px; overflow: hidden; }
.qty button { width: 32px; height: 34px; display: grid; place-items: center; color: var(--ink-2); }
.qty button:hover { background: var(--surface-2); color: var(--ink); }
.qty input { width: 38px; height: 34px; text-align: center; border: none; outline: none; font-weight: 700; background: none; font-family: var(--ff-head); }

.freeprog { background: var(--brand-tint); border-radius: var(--radius-sm); padding: 13px 15px; margin-bottom: 16px; }
.freeprog__bar { height: 7px; border-radius: 99px; background: oklch(1 0 0 / .6); overflow: hidden; margin-top: 9px; }
.freeprog__fill { height: 100%; background: var(--brand); border-radius: 99px; transition: width .4s; }

/* summary rows */
.sumrow { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.sumrow.total { font-size: 19px; font-weight: 800; font-family: var(--ff-head); padding-top: 12px; border-top: 1px solid var(--line); margin-top: 8px; }

/* ============================================================
   CATALOG PAGE (category)
   ============================================================ */
.catalog { display: grid; grid-template-columns: 256px 1fr; gap: 28px; align-items: start; padding: 8px 0 40px; }
.filters { position: sticky; top: 96px; }
.filter-toggle { display: none; }
.fgroup { padding: 18px 0; border-bottom: 1px solid var(--line); }
.fgroup:first-child { padding-top: 0; }
.fgroup h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; color: var(--ink-2); }
.fcheck { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; cursor: pointer; color: var(--ink-2); }
.fcheck:hover { color: var(--ink); }
.fbox { width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; transition: all .14s; color: transparent; }
.fcheck input { display: none; }
.fcheck input:checked + .fbox { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.fcount { margin-left: auto; font-size: 12px; color: var(--ink-3); font-family: var(--ff-mono); }

.toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.toolbar .count { font-size: 14px; color: var(--ink-3); }

/* range slider */
.range { display: flex; align-items: center; gap: 10px; }
.range input[type=range] { flex: 1; accent-color: var(--brand); }
.range .rv { font-family: var(--ff-mono); font-size: 12.5px; color: var(--ink-2); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; padding: 8px 0 30px; align-items: start; }
.pdp__gallery { position: sticky; top: 96px; }
.pdp__main-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp__thumb { width: 76px; height: 76px; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); cursor: pointer; }
.pdp__thumb.active { border-color: var(--brand); }
.pdp__title { font-size: clamp(24px, 2.6vw, 33px); margin: 12px 0; line-height: 1.08; }
.pdp__buybox { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-top: 22px; }
.specrow { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.specrow span:first-child { color: var(--ink-3); }
.specrow span:last-child { font-weight: 600; text-align: right; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin: 40px 0 24px; }
.tab { padding: 13px 18px; font-weight: 700; color: var(--ink-3); border-bottom: 2.5px solid transparent; }
.tab.active { color: var(--ink); border-color: var(--brand); }
.tab:hover { color: var(--ink); }

/* checkout */
.checkout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; padding: 8px 0 40px; }
.cstep { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.cstep__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cstep__n { width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: var(--on-brand); font-family: var(--ff-head); font-weight: 800; display: grid; place-items: center; }
.radio-card { display: flex; gap: 12px; align-items: flex-start; padding: 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; transition: all .14s; margin-bottom: 10px; }
.radio-card:hover { border-color: var(--ink-3); }
.radio-card.active { border-color: var(--brand); background: var(--brand-tint); }
.radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; margin-top: 2px; transition: all .14s; }
.radio-card.active .radio-dot { border-color: var(--brand); border-width: 6px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   AUTH — вхід / реєстрація / відновлення
   ============================================================ */
.authwrap { display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden; margin: 6px 0 0; max-width: 1000px; margin-inline: auto; }

.auth__aside { position: relative; background: var(--ink); color: #fff; padding: 40px 38px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; overflow: hidden; }
.auth__grid-bg { position: absolute; inset: 0; opacity: .5; z-index: 1;
  background-image: linear-gradient(oklch(1 0 0 / .06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / .06) 1px, transparent 1px);
  background-size: 36px 36px; }
.auth__aside-h { font-size: 27px; line-height: 1.08; margin: 28px 0 26px; color: #fff; max-width: 16ch; }
.auth__perks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.auth__perks li { display: flex; gap: 14px; align-items: flex-start; }
.auth__perk-ic { width: 40px; height: 40px; border-radius: 11px; background: oklch(1 0 0 / .1); color: var(--brand); display: grid; place-items: center; flex: none; }
.auth__perks b { display: block; font-family: var(--ff-head); font-size: 15.5px; font-weight: 700; }
.auth__perks span { font-size: 13px; color: oklch(0.82 0.01 70); line-height: 1.45; }
.auth__aside-foot { position: relative; z-index: 2; display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: oklch(0.78 0.01 70); border-top: 1px solid oklch(1 0 0 / .12); padding-top: 18px; }
.auth__aside-foot svg { color: var(--brand); flex: none; }

.auth__form { padding: 40px 42px 34px; display: flex; flex-direction: column; }
.auth__h { font-size: 30px; margin: 10px 0 8px; }
.auth__p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0 0 22px; max-width: 42ch; }

.auth-tabs { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px; margin-bottom: 26px; }
.auth-tab { position: relative; z-index: 2; padding: 11px; font-family: var(--ff-head); font-weight: 700; font-size: 14.5px; color: var(--ink-3); border-radius: 8px; transition: color .18s; }
.auth-tab.active { color: var(--ink); }
.auth-tabs__slider { position: absolute; z-index: 1; top: 4px; left: 4px; width: calc(50% - 4px); height: calc(100% - 8px); background: var(--surface); border-radius: 8px; box-shadow: var(--shadow-sm); transition: transform .22s cubic-bezier(.3,.8,.3,1); }

.auth-field { margin-bottom: 15px; }
.auth-input { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 0 12px; transition: border-color .14s, box-shadow .14s; }
.auth-input:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.auth-input.has-error { border-color: var(--danger); }
.auth-input__ic { color: var(--ink-3); display: grid; place-items: center; flex: none; }
.auth-input input { flex: 1; border: none; outline: none; background: none; padding: 12px 0; font-size: 15px; color: var(--ink); min-width: 0; }
.auth-input input::placeholder { color: var(--ink-3); }
.auth-input__eye { color: var(--ink-3); display: grid; place-items: center; flex: none; padding: 4px; border-radius: 6px; }
.auth-input__eye:hover { color: var(--ink); }
.auth-err { font-size: 12.5px; color: var(--danger); font-weight: 600; }
.auth-hint { font-size: 12px; color: var(--ink-3); }
.auth-grid2 { gap: 14px; }

.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 6px 0 4px; flex-wrap: wrap; }
.auth-link { color: var(--brand-700); font-weight: 700; }
.auth-link:hover { text-decoration: underline; }
.auth-agree { align-items: flex-start; margin-top: 8px; }
.auth-agree .fbox { margin-top: 1px; }
.auth-agree.has-error .fbox { border-color: var(--danger); }

.auth__switch { text-align: center; font-size: 14px; color: var(--ink-2); margin: 20px 0 0; }
.auth__help { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-3); border-top: 1px solid var(--line); margin-top: 24px; }
.auth__help svg { color: var(--brand-700); flex: none; }
.auth__help a { color: var(--ink); font-weight: 600; }

.auth-sent { text-align: center; padding: 12px 0 6px; }
.auth-sent__ic { width: 72px; height: 72px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; margin: 0 auto 18px; }
.auth-sent h3 { font-size: 22px; margin-bottom: 10px; }
.auth-sent p { font-size: 14.5px; line-height: 1.6; max-width: 40ch; margin: 0 auto; }

@media (max-width: 860px) {
  .authwrap { grid-template-columns: 1fr; max-width: 520px; }
  .auth__aside { display: none; }
  .auth__form { padding: 32px 26px 28px; }
}

/* ============================================================
   CONTACTS — сторінка контактів
   ============================================================ */
.contacts-head { padding: 4px 0 28px; }
.contacts-grid { display: grid; grid-template-columns: 380px 1fr; gap: 22px; align-items: start; }
.contacts-col { display: flex; flex-direction: column; gap: 16px; }

.contact-card { display: flex; gap: 15px; align-items: flex-start; padding: 18px 20px; }
.contact-card__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.contact-card__title { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--ink-2); }
.contact-phone { display: inline-block; font-size: 19px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); margin-top: 3px; white-space: nowrap; }
.contact-phone:hover { color: var(--brand-700); }
.contact-link { color: var(--brand-700); font-weight: 600; font-size: 15px; }
.contact-link:hover { text-decoration: underline; }

.contact-hours { padding: 20px; }
.contact-hours__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.contact-hours__row:last-of-type { border-bottom: none; }
.contact-hours__row span { color: var(--ink-2); }
.contact-hours__row b { white-space: nowrap; }

/* map placeholder */
.contact-map { position: relative; display: block; height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: oklch(0.95 0.012 200); }
.contact-map__grid { position: absolute; inset: 0; opacity: .7;
  background-image: linear-gradient(oklch(0.55 0.02 200 / .12) 1px, transparent 1px), linear-gradient(90deg, oklch(0.55 0.02 200 / .12) 1px, transparent 1px);
  background-size: 30px 30px; }
.contact-map__road { position: absolute; background: oklch(1 0 0 / .9); box-shadow: 0 0 0 1px oklch(0.6 0.02 200 / .15); }
.contact-map__road--h { left: 0; right: 0; top: 54%; height: 16px; transform: rotate(-4deg); }
.contact-map__road--v { top: 0; bottom: 0; left: 38%; width: 13px; }
.contact-map__pin { position: absolute; top: 50%; left: 41%; transform: translate(-50%, -100%); color: var(--danger); filter: drop-shadow(0 4px 6px oklch(0.3 0.02 60 / .35)); }
.contact-map__pin svg { fill: var(--danger); stroke: #fff; stroke-width: 1.6; }
.contact-map__label { position: absolute; bottom: 12px; left: 12px; font-size: 11px; color: var(--ink-2); background: oklch(1 0 0 / .82); padding: 4px 9px; border-radius: 6px; backdrop-filter: blur(2px); }
.contact-map__open { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--ink); background: var(--surface); padding: 8px 13px; border-radius: 8px; box-shadow: var(--shadow-sm); transition: background .14s; }
.contact-map:hover .contact-map__open { background: var(--brand); color: var(--on-brand); }

/* requisites */
.contact-req { margin-top: 22px; padding: 24px 26px; }
.contact-req__head { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-bottom: 18px; }
.contact-req__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.contact-req__grid > div { display: flex; flex-direction: column; gap: 3px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.contact-req__grid span { font-size: 12.5px; color: var(--ink-3); }
.contact-req__grid b { font-size: 15px; }
.contact-req__wide { grid-column: 1 / -1; }

@media (max-width: 860px) {
  .contacts-grid { grid-template-columns: 1fr; }
  .contact-req__grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 0 44px; }
  .hero__art { display: block; height: 300px; order: 2; }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .cattiles { grid-template-columns: repeat(3, 1fr); }
  .loyalty { grid-template-columns: 1fr; }
  .catalog { grid-template-columns: 1fr; }
  .filters { position: static; display: none; margin-bottom: 18px; }
  .catalog.filters-open .filters { display: block; }
  .filter-toggle { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 13px 16px; margin-bottom: 14px; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--ink); cursor: pointer; }
  .filter-toggle span { display: inline-flex; align-items: center; gap: 9px; }
  .filter-toggle svg { color: var(--brand-700); }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .checkout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { padding: 0 14px; }
  .section { padding: 38px 0; }
  .section-head { gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cattiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .perks { grid-template-columns: 1fr 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .loyalty { padding: 26px 22px; }
  .hide-sm { display: none !important; }

  /* topbar — slim */
  .topbar .container { gap: 16px; height: 34px; font-size: 12px; }

  /* header — two rows, not sticky (saves height) */
  .header { position: static; }
  .header__main { height: auto; flex-wrap: wrap; gap: 10px 12px; padding: 10px 0; }
  .header__main > .logo, .header__main > a:first-child { flex: none; order: 1; }
  .header__icons { order: 2; margin-left: auto; gap: 0; }
  .searchbar { order: 3; flex: 1 0 100%; height: 48px; padding: 0 6px 0 14px; }
  .hicon-lg { height: 44px; width: 44px; padding: 0; gap: 0; }
  .hicon-lg .hicon__txt { display: none; }
  .hcount { top: 3px; right: 3px; }

  /* catnav — horizontal scroll for service links */
  .catnav .container { gap: 6px; }
  .catnav__all { font-size: 13.5px; padding: 0 13px; height: 38px; margin-right: 4px; }
  .catnav__links { overflow-x: auto; scrollbar-width: none; gap: 0; flex: 1; }
  .catnav__links::-webkit-scrollbar { height: 0; }
  .catnav__link { padding: 0 11px; font-size: 13.5px; white-space: nowrap; }
  .megacat { width: calc(100vw - 28px); }

  /* hero */
  .hero__art { height: 230px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); margin: 12px 0 14px; }
  .hero p.lead { font-size: 16px; max-width: none; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .hero__stats { gap: 22px; margin-top: 26px; flex-wrap: wrap; }

  /* section hero banners (offer/faq/jobs/promo/brand) */
  .offer-hero, .faq-hero, .job-hero, .promo-hero, .brand-hero { padding: 26px 20px; }
  .offer-hero__actions, .hero__cta { gap: 10px; }

  /* tables / compare sticky head reset (header is static now) */
  .cmp thead th { top: 0; }

  /* modal a touch tighter */
  .modal { padding: 24px 20px; }

  /* article / blog */
  .article__cover { height: 200px; }
}

@media (max-width: 440px) {
  .perks { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 16px; }
  .hero__stat b { font-size: 22px; }
  .section-head h2 { font-size: 24px; }
  .btn-lg { padding: 13px 20px; font-size: 15px; }
  .topbar .container { gap: 12px; }
}

/* ============================================================
   ПУБЛІЧНА ОФЕРТА — юридичний документ
   ============================================================ */
.offer-head { padding: 4px 0 0; }
.offer-hero {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 40px 42px; position: relative; overflow: hidden; margin-bottom: 30px;
}
.offer-hero__grid {
  position: absolute; inset: 0; opacity: .5; z-index: 0;
  background-image: linear-gradient(oklch(1 0 0 / .06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / .06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.offer-hero > * { position: relative; z-index: 1; }
.offer-hero h1 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); margin: 14px 0 12px; max-width: 20ch; }
.offer-hero .lead { color: oklch(0.84 0.01 70); font-size: 16px; line-height: 1.6; max-width: 60ch; margin: 0; }
.offer-hero .eyebrow { color: var(--brand); }

.offer-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.offer-meta__chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 10px;
  background: oklch(1 0 0 / .08); border: 1px solid oklch(1 0 0 / .14); font-size: 13px;
  color: oklch(0.9 0.01 70);
}
.offer-meta__chip b { color: #fff; font-family: var(--ff-mono); font-weight: 500; letter-spacing: .01em; }
.offer-meta__chip svg { color: var(--brand); flex: none; }
.offer-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.offer-hero__actions .btn-ghost { background: oklch(1 0 0 / .06); border-color: oklch(1 0 0 / .2); color: #fff; }
.offer-hero__actions .btn-ghost:hover { background: oklch(1 0 0 / .12); border-color: oklch(1 0 0 / .35); }

/* layout: sticky TOC + body */
.offer-doc { display: grid; grid-template-columns: 268px 1fr; gap: 40px; align-items: start; padding-bottom: 30px; }
.offer-toc { position: sticky; top: 96px; }
.offer-toc__title {
  font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); padding: 0 0 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.offer-toc__list { max-height: calc(100vh - 220px); overflow-y: auto; padding-right: 4px; margin: 0 -4px 0 0; }
.offer-toc__list::-webkit-scrollbar { width: 7px; }
.offer-toc__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.offer-toc__link {
  display: flex; gap: 11px; align-items: baseline; padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; line-height: 1.35; color: var(--ink-2); cursor: pointer;
  transition: background .14s, color .14s; border-left: 2.5px solid transparent;
}
.offer-toc__link:hover { background: var(--surface-2); color: var(--ink); }
.offer-toc__link.active { background: var(--brand-tint); color: var(--brand-700); font-weight: 600; border-left-color: var(--brand); }
.offer-toc__n { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); flex: none; min-width: 18px; }
.offer-toc__link.active .offer-toc__n { color: var(--brand-700); }

.offer-body { min-width: 0; max-width: 800px; }

/* acceptance notice */
.offer-notice {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; margin-bottom: 34px;
  background: var(--brand-tint); border: 1px solid var(--brand-soft); border-radius: var(--radius);
}
.offer-notice__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: var(--on-brand); display: grid; place-items: center; flex: none; }
.offer-notice h3 { font-size: 16px; margin-bottom: 6px; }
.offer-notice p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* sections */
.offer-sec { padding-top: 14px; margin-bottom: 34px; scroll-margin-top: 110px; }
.offer-sec__head { display: flex; gap: 14px; align-items: baseline; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.offer-sec__num {
  font-family: var(--ff-head); font-weight: 800; font-size: 18px; color: var(--on-brand);
  background: var(--brand); border-radius: 9px; min-width: 38px; height: 38px; padding: 0 8px;
  display: grid; place-items: center; flex: none;
}
.offer-sec__head h2 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.15; }

/* clauses */
.clause { display: grid; grid-template-columns: 46px 1fr; gap: 4px; margin-bottom: 13px; }
.clause__n { font-family: var(--ff-mono); font-size: 14px; color: var(--brand-700); font-weight: 500; padding-top: 1px; }
.clause__txt { font-size: 15.5px; line-height: 1.72; color: var(--ink-2); }
.clause__txt b, .clause__txt strong { color: var(--ink); font-weight: 700; }
.clause__lead { margin-bottom: 8px; }
.clause__list { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.clause__list li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.62; color: var(--ink-2); }
.clause__list li::before {
  content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px;
  border-radius: 2px; background: var(--brand); transform: rotate(45deg);
}

/* definition list */
.offer-defs { display: flex; flex-direction: column; gap: 0; }
.offer-def { display: grid; grid-template-columns: 46px 1fr; gap: 4px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.offer-def:last-child { border-bottom: none; }
.offer-def__n { font-family: var(--ff-mono); font-size: 14px; color: var(--brand-700); }
.offer-def__term { font-weight: 700; color: var(--ink); }
.offer-def__def { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin-top: 3px; }

/* requisites card at end */
.offer-req { margin-top: 12px; padding: 28px 30px; background: var(--surface-2); border: 1px solid var(--line); }
.offer-req__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.offer-req__head .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; flex: none; }
.offer-req__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.offer-req__grid > div { display: flex; flex-direction: column; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.offer-req__grid span { font-size: 12.5px; color: var(--ink-3); font-family: var(--ff-mono); letter-spacing: .03em; }
.offer-req__grid b { font-size: 15.5px; color: var(--ink); }
.offer-req__wide { grid-column: 1 / -1; }

/* closing block */
.offer-close { margin-top: 32px; padding: 28px 30px; border-radius: var(--radius); background: var(--ink); color: oklch(0.86 0.01 70); display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.offer-close h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.offer-close p { font-size: 14px; line-height: 1.6; margin: 0; max-width: 46ch; }
.offer-close .spacer { flex: 1; min-width: 20px; }

@media (max-width: 980px) {
  .offer-doc { grid-template-columns: 1fr; gap: 0; }
  .offer-toc {
    position: static; margin-bottom: 28px; padding: 16px 18px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  }
  .offer-toc__list { max-height: 280px; }
  .offer-req__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .offer-hero { padding: 28px 22px; }
  .clause { grid-template-columns: 40px 1fr; }
  .offer-def { grid-template-columns: 40px 1fr; }
  .offer-req { padding: 22px 18px; }
}

/* return process steps */
.ret-steps { display: grid; gap: 12px; margin: 4px 0 2px; }
.ret-step { display: flex; gap: 15px; align-items: flex-start; padding: 15px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.ret-step__n { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-tint); color: var(--brand-700); font-family: var(--ff-head); font-weight: 800; font-size: 17px; display: grid; place-items: center; flex: none; }
.ret-step b { display: block; font-size: 15.5px; margin-bottom: 3px; color: var(--ink); }
.ret-step span { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* print — clean legal document */
@media print {
  .topbar, .header, .footer, .offer-hero__actions, .offer-toc,
  .toast-wrap, .drawer, .drawer-back, .modal-back, [data-tweaks-root] { display: none !important; }
  body { background: #fff; }
  .offer-doc { display: block; }
  .offer-body { max-width: none; }
  .offer-hero { background: #fff; color: #000; border: 1px solid #999; padding: 18px 0; border-radius: 0; }
  .offer-hero h1, .offer-close h3 { color: #000; }
  .offer-hero .lead, .offer-meta__chip { color: #333; }
  .offer-meta__chip { background: none; border-color: #ccc; }
  .offer-meta__chip svg, .offer-hero .eyebrow { color: #000; }
  .offer-sec { break-inside: avoid; page-break-inside: avoid; }
  .offer-sec__num { background: #000 !important; color: #fff !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .offer-notice, .offer-req, .offer-close { border: 1px solid #999; background: #fff !important; color: #000; }
  .ret-step { border: 1px solid #999; break-inside: avoid; }
  .ret-step__n { background: #eee !important; color: #000 !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .offer-close p, .clause__txt, .offer-def__def, .clause__list li { color: #222; }
}

/* ============================================================
   АКЦІЇ / РОЗПРОДАЖ
   ============================================================ */
.promo-hero {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: 44px 46px; color: var(--on-brand); margin-bottom: 30px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  box-shadow: var(--shadow-lg);
}
.promo-hero__bg {
  position: absolute; inset: 0; opacity: .4; z-index: 0;
  background-image: repeating-linear-gradient(45deg, oklch(0.22 0.03 var(--brand-h) / .07) 0 18px, transparent 18px 40px);
}
.promo-hero > * { position: relative; z-index: 1; }
.promo-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-mono);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  background: var(--ink); color: #fff; padding: 7px 13px; border-radius: 999px;
}
.promo-hero h1 { color: var(--on-brand); font-size: clamp(34px, 5vw, 58px); line-height: 0.98; margin: 18px 0 12px; letter-spacing: -0.02em; }
.promo-hero .lead { font-size: 17px; color: oklch(0.28 0.04 var(--brand-h)); max-width: 46ch; margin: 0; font-weight: 500; }

.promo-count { display: flex; gap: 10px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.promo-count__lbl { font-size: 13px; font-weight: 700; color: oklch(0.28 0.04 var(--brand-h)); margin-right: 6px; }
.promo-count__box { background: var(--ink); color: #fff; border-radius: 12px; padding: 9px 6px; min-width: 62px; text-align: center; box-shadow: var(--shadow-sm); }
.promo-count__n { font-family: var(--ff-head); font-size: 28px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.promo-count__l { font-size: 10.5px; opacity: .65; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.promo-count__sep { font-family: var(--ff-head); font-size: 26px; font-weight: 800; color: var(--ink); opacity: .5; }

/* offer/campaign tiles */
.promo-offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0 14px; }
.promo-offer {
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); padding: 22px; display: flex; flex-direction: column; gap: 11px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
}
.promo-offer:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-soft); }
.promo-offer__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; }
.promo-offer__disc { position: absolute; top: 20px; right: 22px; font-family: var(--ff-head); font-weight: 900; font-size: 26px; color: var(--danger); letter-spacing: -.02em; }
.promo-offer b { font-size: 17px; font-family: var(--ff-head); letter-spacing: -.01em; }
.promo-offer p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; flex: 1; margin: 0; }
.promo-offer__go { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--brand-700); }
.promo-offer:hover .promo-offer__go { gap: 9px; }

/* free shipping strip */
.promo-strip {
  display: flex; gap: 16px; align-items: center; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 18px 24px; margin: 6px 0 34px; flex-wrap: wrap;
}
.promo-strip__ic { width: 44px; height: 44px; border-radius: 12px; background: oklch(1 0 0 / .1); color: var(--brand); display: grid; place-items: center; flex: none; }
.promo-strip b { font-size: 16px; font-family: var(--ff-head); }
.promo-strip span { font-size: 13.5px; color: oklch(0.82 0.01 70); }

/* sale section head + chips */
.promo-grid-head { margin-bottom: 16px; }
.promo-grid-head h2 { line-height: 1.1; }
.promo-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }

/* discount ribbon on product card price */
.pcard__disc { font-family: var(--ff-head); font-size: 12px; font-weight: 800; color: #fff; background: var(--danger); border-radius: 6px; padding: 2px 7px; letter-spacing: .01em; }

@media (max-width: 980px) {
  .promo-offers { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .promo-hero { padding: 28px 22px; }
  .promo-count__box { min-width: 54px; }
}

/* ============================================================
   ВІДГУКИ ПРО ТОВАР
   ============================================================ */
.rv-summary { display: grid; grid-template-columns: 230px 1fr; gap: 30px; align-items: center; padding: 24px 26px; margin-bottom: 20px; }
.rv-score { text-align: center; border-right: 1px solid var(--line); padding-right: 20px; }
.rv-score__n { font-family: var(--ff-head); font-size: 54px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.rv-score__stars { margin-top: 6px; font-size: 18px; }
.rv-score__sub { color: var(--ink-3); font-size: 13px; margin-top: 8px; }
.rv-score__rec { margin-top: 12px; font-size: 12.5px; color: var(--ok); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.rv-bars { display: flex; flex-direction: column; gap: 7px; }
.rv-bar { display: grid; grid-template-columns: 46px 1fr 36px; gap: 12px; align-items: center; cursor: pointer; }
.rv-bar__lbl { font-size: 13px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 3px; justify-content: flex-end; }
.rv-bar__lbl .st { color: var(--brand); }
.rv-bar__track { height: 8px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.rv-bar__fill { height: 100%; background: var(--brand); border-radius: 99px; transition: width .45s cubic-bezier(.2,.8,.2,1); }
.rv-bar__n { font-size: 12.5px; color: var(--ink-3); font-family: var(--ff-mono); text-align: right; }
.rv-bar:hover .rv-bar__fill { background: var(--brand-600); }
.rv-bar.active .rv-bar__lbl { color: var(--ink); font-weight: 700; }
.rv-summary__cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

.rv-toolbar { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.rv-filters { display: flex; gap: 7px; flex-wrap: wrap; }

.rv-card { padding: 20px 22px; margin-bottom: 14px; }
.rv-card__head { display: flex; gap: 13px; align-items: flex-start; }
.rv-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 16px; flex: none; }
.rv-meta { flex: 1; min-width: 0; }
.rv-name { font-weight: 700; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rv-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; color: var(--ok); background: var(--ok-soft); padding: 2px 8px; border-radius: 99px; white-space: nowrap; }
.rv-subline { display: flex; align-items: center; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.rv-date { color: var(--ink-3); font-size: 13px; white-space: nowrap; }
.rv-title { font-family: var(--ff-head); font-weight: 700; font-size: 16px; margin: 13px 0 6px; }
.rv-text { color: var(--ink-2); line-height: 1.65; font-size: 14.5px; }
.rv-pc { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 14px; }
.rv-pc__col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 7px; color: var(--ink-3); font-family: var(--ff-head); }
.rv-pc__item { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--ink-2); padding: 2px 0; line-height: 1.45; }
.rv-pc__item .ic { flex: none; margin-top: 2px; }
.rv-pc--pro .ic { color: var(--ok); }
.rv-pc--con .ic { color: var(--danger); }
.rv-photos { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.rv-photo { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }
.rv-reply { margin-top: 15px; padding: 14px 16px; background: var(--brand-tint); border-radius: var(--radius-sm); border-left: 3px solid var(--brand); }
.rv-reply__head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; }
.rv-reply__tag { font-size: 10.5px; background: var(--brand); color: var(--on-brand); padding: 2px 7px; border-radius: 5px; font-family: var(--ff-head); letter-spacing: .02em; }
.rv-reply p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 7px 0 0; }
.rv-foot { display: flex; align-items: center; gap: 10px; margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line-soft); }
.rv-foot__q { font-size: 13px; color: var(--ink-3); margin-right: 2px; }
.rv-helpful { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-2); border: 1.5px solid var(--line); border-radius: 99px; padding: 6px 13px; transition: .14s; }
.rv-helpful:hover { border-color: var(--ink-3); color: var(--ink); }
.rv-helpful.on { border-color: var(--brand); background: var(--brand-tint); color: var(--brand-700); }

/* leave-review form */
.rv-form { padding: 24px 26px; margin-bottom: 22px; border: 1.5px solid var(--brand-soft); background: var(--surface); }
.rv-form h3 { font-size: 20px; margin-bottom: 4px; }
.rv-form__sub { color: var(--ink-3); font-size: 13.5px; margin-bottom: 16px; }
.rv-pick { display: inline-flex; gap: 5px; align-items: center; }
.rv-pick__star { font-size: 32px; line-height: 1; color: var(--line); cursor: pointer; transition: transform .1s, color .1s; }
.rv-pick__star:hover { transform: scale(1.12); }
.rv-pick__star.on { color: var(--brand); }
.rv-pick__hint { margin-left: 12px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.rv-uploads { display: flex; gap: 8px; flex-wrap: wrap; }
.rv-addphoto { width: 72px; height: 72px; border-radius: 10px; border: 1.5px dashed var(--line); display: grid; place-items: center; color: var(--ink-3); cursor: pointer; transition: .14s; gap: 2px; flex-direction: column; font-size: 11px; }
.rv-addphoto:hover { border-color: var(--brand); color: var(--brand-700); background: var(--brand-tint); }
.rv-uploaded { position: relative; width: 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.rv-uploaded img { width: 100%; height: 100%; object-fit: cover; }
.rv-uploaded button { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: oklch(0.2 0.01 60 / .7); color: #fff; display: grid; place-items: center; }
.rv-sent { display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: var(--ok-soft); border: 1px solid var(--ok); border-radius: var(--radius); margin-bottom: 16px; }
.rv-sent__ic { width: 42px; height: 42px; border-radius: 50%; background: var(--ok); color: #fff; display: grid; place-items: center; flex: none; }
.rv-empty { padding: 36px; text-align: center; color: var(--ink-3); }

@media (max-width: 720px) {
  .rv-summary { grid-template-columns: 1fr; gap: 18px; }
  .rv-score { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 18px; }
  .rv-pc { grid-template-columns: 1fr; }
}

/* ============================================================
   ПОРІВНЯННЯ ТОВАРІВ
   ============================================================ */
/* floating tray */
.cmp-tray {
  position: fixed; left: 22px; bottom: 22px; z-index: 110; max-width: calc(100vw - 44px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px 14px; display: flex; align-items: center; gap: 14px;
  animation: cmpUp .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes cmpUp { from { transform: translateY(16px); } to { transform: none; } }
.cmp-tray__lbl { font-family: var(--ff-head); font-weight: 800; font-size: 14px; white-space: nowrap; }
.cmp-tray__thumbs { display: flex; gap: 8px; }
.cmp-tray__thumb { position: relative; width: 46px; height: 46px; border-radius: 9px; overflow: hidden; border: 1px solid var(--line); flex: none; }
.cmp-tray__rm { position: absolute; inset: 0; background: oklch(0.2 0.01 60 / .55); color: #fff; display: grid; place-items: center; opacity: 0; transition: opacity .14s; }
.cmp-tray__thumb:hover .cmp-tray__rm { opacity: 1; }
.cmp-tray__slot { width: 46px; height: 46px; border-radius: 9px; border: 1.5px dashed var(--line); display: grid; place-items: center; color: var(--ink-3); flex: none; }
.cmp-tray__clear { font-size: 13px; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.cmp-tray__clear:hover { color: var(--ink); }

/* compare page */
.cmp-controls { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.cmp-toggle { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.cmp-toggle input { display: none; }
.cmp-switch { width: 42px; height: 24px; border-radius: 99px; background: var(--line); position: relative; transition: background .16s; flex: none; }
.cmp-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .16s; }
.cmp-toggle input:checked + .cmp-switch { background: var(--brand); }
.cmp-toggle input:checked + .cmp-switch::after { transform: translateX(18px); }

.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.cmp-wrap::-webkit-scrollbar { height: 9px; }
.cmp-wrap::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.cmp { border-collapse: collapse; width: 100%; }
.cmp th, .cmp td { border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); padding: 13px 16px; text-align: left; vertical-align: middle; font-size: 14px; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
.cmp .cmp-rowlbl {
  position: sticky; left: 0; z-index: 2; background: var(--surface-2); font-weight: 700;
  color: var(--ink-2); font-size: 13px; width: 188px; min-width: 188px;
}
.cmp tbody tr:hover td { background: var(--surface-2); }
.cmp thead th { position: sticky; top: 128px; background: var(--surface); z-index: 3; vertical-align: top; padding: 16px; }
.cmp thead .cmp-corner { left: 0; z-index: 5; background: var(--surface-2); vertical-align: bottom; }
.cmp-prodhead { min-width: 226px; width: 226px; }
.cmp-remove { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); background: var(--surface-2); }
.cmp-remove:hover { color: var(--danger); background: var(--ok-soft); }
.cmp-prodhead { position: relative; }
.cmp-prodimg { width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); margin-bottom: 10px; }
.cmp-prodname { font-weight: 600; font-size: 14px; line-height: 1.35; min-height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cmp-prodname:hover { color: var(--brand-700); }
.cmp-prodprice { font-family: var(--ff-head); font-size: 21px; font-weight: 800; margin: 9px 0 11px; letter-spacing: -.02em; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cmp-prodprice small { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--ink-3); white-space: nowrap; }
.cmp-prodprice__best { font-family: var(--ff-head); font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--ok); background: var(--ok-soft); padding: 2px 7px; border-radius: 6px; }
.cmp-addslot { min-width: 200px; text-align: center; color: var(--ink-3); vertical-align: middle !important; }
.cmp-best { background: var(--ok-soft) !important; position: relative; }
.cmp-best__v { font-weight: 800; color: oklch(0.42 0.12 150); display: inline-flex; align-items: center; gap: 6px; }
.cmp-best__tag { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--ok); margin-left: 7px; font-family: var(--ff-head); vertical-align: 1px; }
.cmp-na { color: var(--ink-3); }

@media (max-width: 720px) {
  .cmp-tray { left: 12px; right: 12px; bottom: 12px; }
  .cmp thead th { top: 116px; }
}

/* ============================================================
   ДЕТАЛІ ЗАМОВЛЕННЯ + ТРЕКІНГ
   ============================================================ */
.ord-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.ord-status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 99px; font-weight: 700; font-size: 13.5px; }
.ord-status--delivered { background: var(--ok-soft); color: var(--ok); }
.ord-status--shipping { background: var(--brand-soft); color: var(--brand-700); }
.ord-status--assembling { background: var(--steel-soft); color: var(--steel); }
.ord-status--processing { background: oklch(0.96 0.05 70); color: oklch(0.52 0.14 60); }
.ord-status--cancelled { background: oklch(0.95 0.03 25); color: var(--danger); }

.ord-stepper { padding: 28px 26px 24px; margin-bottom: 18px; }
.ord-track { display: grid; grid-template-columns: repeat(4, 1fr); }
.ord-step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; padding: 0 6px; }
.ord-step::before { content: ""; position: absolute; top: 19px; right: 50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.ord-step:first-child::before { display: none; }
.ord-step.s-done::before, .ord-step.s-curr::before { background: var(--brand); }
.ord-step__dot { position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); border: 2px solid var(--line); display: grid; place-items: center; color: var(--ink-3); font-family: var(--ff-head); font-weight: 800; font-size: 15px; }
.ord-step.s-done .ord-step__dot { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.ord-step.s-curr .ord-step__dot { background: var(--surface); border-color: var(--brand); color: var(--brand-700); box-shadow: 0 0 0 4px var(--brand-soft); }
.ord-step__lbl { font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.ord-step.s-todo .ord-step__lbl { color: var(--ink-3); font-weight: 600; }
.ord-step__time { font-size: 11.5px; color: var(--ink-3); font-family: var(--ff-mono); }
.ord-step.s-curr .ord-step__time { color: var(--brand-700); font-weight: 600; }

.ord-ttn { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--brand-tint); border: 1px solid var(--brand-soft); border-radius: var(--radius); margin-bottom: 18px; flex-wrap: wrap; }
.ord-ttn__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.ord-ttn__num { font-family: var(--ff-mono); font-size: 17px; font-weight: 600; letter-spacing: .05em; }
.ord-copy { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: var(--surface); color: var(--ink-2); border: 1px solid var(--line); }
.ord-copy:hover { color: var(--ink); border-color: var(--ink-3); }
.ord-copy.ok { color: var(--ok); border-color: var(--ok); }

.ord-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.ord-item:last-child { border-bottom: none; }
.ord-item__img { width: 60px; height: 60px; border-radius: 9px; overflow: hidden; border: 1px solid var(--line); }
.ord-item__name { font-size: 14px; font-weight: 600; line-height: 1.35; }
.ord-item__name:hover { color: var(--brand-700); }
.ord-item__meta { font-size: 12.5px; color: var(--ink-3); font-family: var(--ff-mono); margin-top: 3px; }
.ord-item__sum { text-align: right; white-space: nowrap; }
.ord-item__sum b { font-family: var(--ff-head); font-size: 15px; }
.ord-item__sum span { display: block; font-size: 12px; color: var(--ink-3); }

.ord-info__row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.ord-info__row > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ord-info__row:last-child { border-bottom: none; }
.ord-info__row > .ic { color: var(--brand-700); flex: none; margin-top: 1px; }
.ord-info__row b { display: block; font-size: 14.5px; }
.ord-info__row .lbl { color: var(--ink-3); font-size: 12.5px; }

@media (max-width: 720px) {
  .ord-step__lbl { font-size: 11px; }
  .ord-step__time { font-size: 10px; }
  .ord-step__dot { width: 34px; height: 34px; font-size: 13px; }
  .ord-step::before { top: 16px; }
}

/* ============================================================
   БРЕНДИ
   ============================================================ */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 16px; }
.brand-tile { display: flex; flex-direction: column; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform .16s ease, box-shadow .16s ease, border-color .16s; height: 100%; }
.brand-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-soft); }
.brand-mono { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 21px; flex: none; letter-spacing: -.02em; }
.brand-tile__name { font-family: var(--ff-head); font-weight: 700; font-size: 16.5px; }
.brand-tile__tag { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; flex: 1; }
.brand-tile__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.brand-tile__count { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.brand-tile__go { color: var(--brand-700); display: inline-flex; }
.brand-tile:hover .brand-tile__go { transform: translateX(2px); }

.brands-letters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.brands-letter { width: 34px; height: 34px; border-radius: 9px; border: 1.5px solid var(--line); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--ink-2); background: var(--surface); }
.brands-letter:hover { border-color: var(--ink-3); color: var(--ink); }
.brands-letter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* single brand hero */
.brand-hero { display: flex; gap: 26px; align-items: center; padding: 30px 32px; margin-bottom: 26px; flex-wrap: wrap; }
.brand-hero__mono { width: 96px; height: 96px; border-radius: 22px; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 900; font-size: 38px; flex: none; letter-spacing: -.02em; }
.brand-hero__body { flex: 1; min-width: 280px; }
.brand-hero__country { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700); }
.brand-hero h1 { font-size: clamp(28px, 3.4vw, 40px); margin: 8px 0; }
.brand-hero__desc { color: var(--ink-2); line-height: 1.7; margin: 6px 0 0; max-width: 72ch; font-size: 15.5px; }
.brand-stats { display: flex; gap: 30px; margin-top: 18px; flex-wrap: wrap; }
.brand-stat b { font-family: var(--ff-head); font-size: 24px; font-weight: 800; display: block; line-height: 1; }
.brand-stat span { font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 720px) {
  .brand-hero { padding: 22px; gap: 18px; }
  .brand-hero__mono { width: 72px; height: 72px; font-size: 30px; border-radius: 18px; }
}

/* ============================================================
   КАЛЬКУЛЯТОРИ МАТЕРІАЛІВ
   ============================================================ */
.calc-wrap { display: grid; grid-template-columns: 268px 1fr; gap: 26px; align-items: start; }
.calc-menu { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 150px; }
.calc-menu__item { display: flex; gap: 13px; align-items: center; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; transition: border-color .14s, background .14s; }
.calc-menu__item:hover { border-color: var(--ink-3); }
.calc-menu__item.active { border-color: var(--brand); background: var(--brand-tint); }
.calc-menu__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.calc-menu__item.active .calc-menu__ic { background: var(--brand); color: var(--on-brand); }
.calc-menu__t { font-family: var(--ff-head); font-weight: 700; font-size: 14.5px; }
.calc-menu__s { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }

.calc-panel { padding: 28px 30px; }
.calc-panel__head { display: flex; gap: 14px; align-items: center; margin-bottom: 6px; }
.calc-panel__ic { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.calc-panel h2 { font-size: 24px; }
.calc-panel__intro { color: var(--ink-3); font-size: 14px; margin: 0 0 22px; line-height: 1.55; }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-bottom: 24px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field > label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); display: flex; justify-content: space-between; gap: 8px; }
.calc-field__val { font-family: var(--ff-mono); color: var(--brand-700); font-weight: 500; }
.calc-field--wide { grid-column: 1 / -1; }
.calc-slider { width: 100%; accent-color: var(--brand); }

.calc-result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px 28px; }
.calc-result__lbl { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: oklch(0.78 0.01 70); }
.calc-result__big { font-family: var(--ff-head); font-size: 46px; font-weight: 800; line-height: 1; margin: 8px 0 2px; letter-spacing: -.02em; }
.calc-result__big span { font-size: 20px; font-weight: 700; color: var(--brand); margin-left: 6px; }
.calc-result__rows { margin-top: 20px; padding-top: 18px; border-top: 1px solid oklch(1 0 0 / .12); display: flex; flex-direction: column; gap: 11px; }
.calc-rrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 14px; }
.calc-rrow span { color: oklch(0.82 0.01 70); }
.calc-rrow b { font-family: var(--ff-head); font-size: 16px; white-space: nowrap; }
.calc-result__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.calc-note { font-size: 12.5px; color: var(--ink-3); margin-top: 16px; line-height: 1.5; display: flex; gap: 8px; }
.calc-note svg { flex: none; margin-top: 1px; color: var(--brand-700); }

@media (max-width: 980px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-menu { position: static; flex-direction: row; flex-wrap: wrap; }
  .calc-menu__item { flex: 1; min-width: 200px; }
}
@media (max-width: 620px) {
  .calc-fields { grid-template-columns: 1fr; }
  .calc-panel { padding: 22px 18px; }
}

/* ============================================================
   FAQ — часті питання
   ============================================================ */
.faq-hero { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 38px 40px; position: relative; overflow: hidden; margin-bottom: 26px; }
.faq-hero__grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(oklch(1 0 0 / .06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / .06) 1px, transparent 1px); background-size: 38px 38px; }
.faq-hero > * { position: relative; z-index: 1; }
.faq-hero h1 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0 10px; }
.faq-hero p { color: oklch(0.84 0.01 70); font-size: 15.5px; margin: 0 0 22px; max-width: 54ch; line-height: 1.6; }
.faq-search { display: flex; align-items: center; gap: 12px; background: var(--surface); border-radius: 13px; padding: 0 16px; height: 56px; max-width: 540px; box-shadow: var(--shadow-md); }
.faq-search svg { color: var(--ink-3); flex: none; }
.faq-search input { border: none; outline: none; background: none; font-size: 16px; width: 100%; color: var(--ink); font-family: inherit; }

.faq-wrap { display: grid; grid-template-columns: 232px 1fr; gap: 32px; align-items: start; }
.faq-cats { position: sticky; top: 150px; display: flex; flex-direction: column; gap: 4px; }
.faq-cats__t { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding: 0 14px 10px; }
.faq-cat { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: background .14s, color .14s; }
.faq-cat:hover { background: var(--surface-2); color: var(--ink); }
.faq-cat.active { background: var(--brand-tint); color: var(--brand-700); }
.faq-cat__n { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); background: var(--surface-2); border-radius: 99px; padding: 1px 8px; }
.faq-cat.active .faq-cat__n { background: var(--brand-soft); color: var(--brand-700); }

.faq-group { margin-bottom: 30px; scroll-margin-top: 150px; }
.faq-group__head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.faq-group__ic { width: 38px; height: 38px; border-radius: 11px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; flex: none; }
.faq-group__head h2 { font-size: 21px; }

.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 10px; overflow: hidden; transition: border-color .14s; }
.faq-item.open { border-color: var(--brand-soft); }
.faq-q { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 18px 20px; cursor: pointer; font-family: var(--ff-head); font-weight: 700; font-size: 15.5px; color: var(--ink); background: none; border: none; }
.faq-q:hover { color: var(--brand-700); }
.faq-q__plus { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--surface-2); color: var(--ink-2); display: grid; place-items: center; transition: transform .2s, background .14s, color .14s; }
.faq-item.open .faq-q__plus { background: var(--brand); color: var(--on-brand); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 20px 20px 60px; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.faq-a__inner p { margin: 0 0 10px; }
.faq-a__inner p:last-child { margin: 0; }
.faq-a__inner a { color: var(--brand-700); font-weight: 600; }
.faq-a__inner ul { margin: 8px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.faq-hl { background: var(--brand-soft); border-radius: 3px; padding: 0 2px; }

.faq-empty { padding: 50px; text-align: center; color: var(--ink-3); }
.faq-cta { margin-top: 8px; padding: 28px 30px; border-radius: var(--radius); background: var(--surface-2); display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.faq-cta h3 { font-size: 19px; margin-bottom: 4px; }
.faq-cta p { color: var(--ink-3); font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-cats { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
  .faq-cats__t { display: none; }
  .faq-cat { border: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .faq-hero { padding: 26px 22px; }
  .faq-a__inner { padding-left: 20px; }
}

/* ============================================================
   БЛОГ / ПОРАДИ МАЙСТРАМ
   ============================================================ */
.blog-cover { position: relative; width: 100%; overflow: hidden; display: grid; place-items: center; }
.blog-cover__glyph { width: 38%; height: 38%; opacity: .9; }
.blog-cover__tag { position: absolute; top: 12px; left: 12px; background: var(--surface); color: var(--ink); font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 99px; box-shadow: var(--shadow-sm); }

/* featured */
.blog-feat { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-bottom: 34px; background: var(--surface); }
.blog-feat__cover { min-height: 340px; }
.blog-feat__body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-feat__eyebrow { color: var(--brand-700); }
.blog-feat__body h2 { font-size: clamp(24px, 2.8vw, 33px); line-height: 1.12; margin: 12px 0 14px; }
.blog-feat__body p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; margin: 0 0 22px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-3); }
.blog-meta__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-soft); }
.blog-card__cover { height: 178px; }
.blog-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card__body h3 { font-size: 17.5px; line-height: 1.25; margin-bottom: 9px; }
.blog-card:hover .blog-card__body h3 { color: var(--brand-700); }
.blog-card__excerpt { color: var(--ink-2); font-size: 13.5px; line-height: 1.6; flex: 1; }
.blog-card__foot { margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line-soft); }

/* article page */
.article { max-width: 760px; margin: 0 auto; }
.article__cover { height: 320px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.article__head { margin-bottom: 26px; }
.article__head h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; margin: 14px 0 16px; }
.article__lead { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.article__body { font-size: 16.5px; line-height: 1.8; color: var(--ink-2); }
.article__body h2 { font-size: 25px; color: var(--ink); margin: 36px 0 14px; }
.article__body h3 { font-size: 19px; color: var(--ink); margin: 28px 0 10px; }
.article__body p { margin: 0 0 18px; }
.article__body ul, .article__body ol { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; }
.article__body li { line-height: 1.6; }
.article__body strong { color: var(--ink); font-weight: 700; }
.article__body a { color: var(--brand-700); font-weight: 600; }
.article-callout { display: flex; gap: 15px; padding: 20px 22px; background: var(--brand-tint); border-radius: var(--radius); margin: 26px 0; }
.article-callout__ic { width: 42px; height: 42px; border-radius: 11px; background: var(--brand); color: var(--on-brand); display: grid; place-items: center; flex: none; }
.article-callout h4 { font-size: 16px; margin-bottom: 5px; }
.article-callout p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.article-steps { list-style: none !important; padding-left: 0 !important; }
.article-steps li { display: flex !important; gap: 16px; align-items: flex-start; padding-left: 0 !important; }
.article-steps__n { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 15px; display: grid; place-items: center; margin-top: 1px; }
.article-steps__t { flex: 1; padding-top: 3px; }
.article__share { display: flex; align-items: center; gap: 12px; margin: 32px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article__tags { display: flex; gap: 8px; flex-wrap: wrap; }

.article-related { margin-top: 40px; }
.article-related h2 { font-size: 23px; margin-bottom: 18px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feat { grid-template-columns: 1fr; }
  .blog-feat__cover { min-height: 220px; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-feat__body { padding: 26px 22px; }
  .article__cover { height: 210px; }
}

/* ============================================================
   ВАКАНСІЇ / КАР'ЄРА
   ============================================================ */
.job-hero { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 44px 44px; position: relative; overflow: hidden; margin-bottom: 30px; }
.job-hero__grid { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(oklch(1 0 0 / .06) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / .06) 1px, transparent 1px); background-size: 38px 38px; }
.job-hero > * { position: relative; z-index: 1; }
.job-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin: 12px 0 12px; max-width: 18ch; }
.job-hero p { color: oklch(0.84 0.01 70); font-size: 16px; line-height: 1.6; max-width: 56ch; margin: 0 0 24px; }
.job-hero__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.job-stat { background: oklch(1 0 0 / .07); border: 1px solid oklch(1 0 0 / .13); border-radius: var(--radius-sm); padding: 14px 20px; }
.job-stat b { display: block; font-family: var(--ff-head); font-size: 28px; font-weight: 800; line-height: 1; color: #fff; }
.job-stat b span { color: var(--brand); }
.job-stat small { font-size: 12.5px; color: oklch(0.8 0.01 70); display: block; margin-top: 6px; }

.job-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.job-perk { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.job-perk__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-700); display: grid; place-items: center; margin-bottom: 14px; }
.job-perk h3 { font-size: 16px; margin-bottom: 6px; }
.job-perk p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.job-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.job-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.job-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 12px; overflow: hidden; transition: border-color .14s, box-shadow .14s; }
.job-item.open { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.job-row { display: flex; align-items: center; gap: 18px; padding: 20px 22px; cursor: pointer; }
.job-row__main { flex: 1; min-width: 0; }
.job-row__title { font-family: var(--ff-head); font-weight: 700; font-size: 18px; }
.job-item.open .job-row__title { color: var(--brand-700); }
.job-row__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.job-tag { font-size: 12px; color: var(--ink-2); background: var(--surface-2); border-radius: 99px; padding: 4px 11px; display: inline-flex; align-items: center; gap: 5px; }
.job-tag svg { color: var(--ink-3); }
.job-row__salary { text-align: right; flex: none; }
.job-row__salary b { font-family: var(--ff-head); font-size: 18px; white-space: nowrap; }
.job-row__salary small { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.job-row__plus { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--surface-2); color: var(--ink-2); display: grid; place-items: center; transition: transform .2s, background .14s, color .14s; }
.job-item.open .job-row__plus { background: var(--brand); color: var(--on-brand); transform: rotate(45deg); }
.job-detail { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.job-detail__inner { padding: 4px 22px 24px; }
.job-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.job-detail__col h4 { font-size: 14px; margin-bottom: 11px; display: flex; align-items: center; gap: 8px; }
.job-detail__col h4 svg { color: var(--brand-700); }
.job-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.job-list li { position: relative; padding-left: 24px; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.job-list li::before { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 6px; border-radius: 2px; background: var(--brand); transform: rotate(45deg); }
.job-detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); align-items: center; }

/* application form */
.job-form { padding: 30px 32px; }
.job-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.job-form__wide { grid-column: 1 / -1; }
.job-cta-band { margin-top: 14px; padding: 30px 32px; border-radius: var(--radius); background: var(--surface-2); display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.job-cta-band h3 { font-size: 21px; margin-bottom: 5px; }
.job-cta-band p { color: var(--ink-2); font-size: 14.5px; margin: 0; max-width: 48ch; }

@media (max-width: 900px) {
  .job-perks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .job-hero { padding: 30px 24px; }
  .job-row { flex-wrap: wrap; gap: 12px; }
  .job-row__salary { text-align: left; }
  .job-detail__grid { grid-template-columns: 1fr; gap: 20px; }
  .job-form { padding: 24px 20px; }
  .job-form__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ПОВНА МОБІЛЬНА АДАПТАЦІЯ
   глобальні правила для всіх сторінок ≤720px і ≤440px
   ============================================================ */

/* запобігання горизонтальній прокрутці на мобільному */
body { min-width: 320px; }
img, svg, video, canvas { max-width: 100%; }
.container { width: 100%; }

@media (max-width: 720px) {
  html, body { overflow-x: hidden; max-width: 100%; }

  /* типографіка page-title — accent на inline-style h1 з усіх екранів */
  h1[style*="font-size: 3"],
  h1[style*="fontSize: 3"] {
    font-size: 26px !important;
    line-height: 1.12 !important;
    letter-spacing: -.01em !important;
  }
  /* батьківський div сторінкового h1 не повинен стискатися */
  .row > div:has(> h1[style*="font-size: 3"]),
  .section-head > div:has(> h2),
  .section-head > div:first-child {
    flex: 1 1 100%;
    min-width: 0;
  }
  /* h3 у заголовку cstep має заповнювати ряд, а не вузький контент */
  .cstep__head h3,
  .cstep__head h2 { flex: 1; min-width: 0; }
  /* section-head з h2 безпосередньо (без обгортки) */
  .section-head > h2 { width: 100%; }
  .pdp__title { font-size: clamp(22px, 6vw, 28px); margin: 10px 0; }

  /* topbar — ховаємо телефони/посилання, лишаємо лише дві короткі */
  .topbar { font-size: 12px; }
  .topbar .container { gap: 14px; padding: 0 14px; }
  .topbar a { gap: 5px; }

  /* breadcrumbs щільніше */
  .crumbs { padding: 12px 0; font-size: 12.5px; gap: 6px; }
  .crumbs a, .crumbs span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60vw; }

  /* перекриваємо sticky чи top-positions при не-sticky хедері */
  .filters,
  .pdp__gallery,
  .calc-menu,
  .faq-cats,
  .offer-toc { top: auto !important; }

  /* product card — щільніше на 2 колонки */
  .pcard__body { padding: 12px 12px 14px; gap: 6px; }
  .pcard__name { font-size: 13.5px; min-height: 2.7em; }
  .pcard__price b { font-size: 18px; }
  .pcard__unit { font-size: 11.5px; }
  .pcard__cat { font-size: 10.5px; }
  .pcard__add { padding: 10px 12px; font-size: 13.5px; gap: 6px; }
  .pcard__foot { gap: 6px; }
  .qbtn { width: 40px; height: 40px; }
  .pcard__fav, .pcard__cmp { width: 30px; height: 30px; top: 8px; }
  .pcard__cmp { top: 44px; }
  .pcard__badges { top: 8px; left: 8px; gap: 4px; }
  .badge { font-size: 10.5px; padding: 3px 7px; }

  /* категорійні плитки — менший gap, без зайвих glyph */
  .cattiles { gap: 8px; }
  .cattile { padding: 12px; aspect-ratio: 1 / 1; }
  .cattile b { font-size: 13.5px; }
  .cattile span { font-size: 10.5px; }
  .cattile__glyph { top: 8px; right: 8px; transform: scale(.7); transform-origin: top right; }

  /* hero — компактніше */
  .hero__inner { padding: 32px 0 36px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: .12em; }
  .hero p.lead { font-size: 15px; }
  .hero__stats { gap: 18px; margin-top: 22px; }
  .hero__stat b { font-size: 24px; }
  .hero__stat span { font-size: 12px; }
  .hero__art { height: 200px; border-radius: var(--radius); }

  /* perks — повніший на 2 колонки */
  .perks { gap: 10px; }
  .perk { padding: 14px; gap: 11px; }
  .perk__ic { width: 36px; height: 36px; }
  .perk b { font-size: 13.5px; }
  .perk span { font-size: 11.5px; line-height: 1.4; }

  /* loyalty banner */
  .loyalty { padding: 24px 20px; gap: 22px; }
  .loyalty .lead { font-size: 14.5px; }
  .lstep { gap: 11px; }
  .lstep__n { width: 30px; height: 30px; font-size: 14px; }
  .bcard { padding: 20px; }
  .bcard__num { font-size: 15px; letter-spacing: .1em; }

  /* footer */
  .footer { margin-top: 36px; }
  .footer__top { padding: 36px 0 28px; gap: 22px; }
  .footer h4 { margin-bottom: 12px; }
  .footer a { padding: 4px 0; font-size: 13.5px; }
  .footer__phone { font-size: 16px; }
  .footer__bottom { padding: 16px 0; font-size: 12px; gap: 8px; justify-content: flex-start; }
  .footer__bottom > * { flex: 1 1 100%; }

  /* CART drawer */
  .drawer { width: 100%; max-width: 100%; }
  .drawer__head { padding: 16px 16px; }
  .drawer__body { padding: 14px 16px; }
  .drawer__foot { padding: 16px; }
  .citem { grid-template-columns: 54px 1fr auto; gap: 10px; padding: 12px 0; }
  .citem__img { width: 54px; height: 54px; }
  .citem__name { font-size: 13px; }
  .citem__meta { font-size: 11.5px; }
  .qty button { width: 30px; height: 32px; }
  .qty input { width: 32px; height: 32px; }

  /* MODALS */
  .modal-back { padding: 14px; }
  .modal { padding: 22px 18px; border-radius: var(--radius); }
  .modal h3 { font-size: 20px; }

  /* PDP */
  .pdp { gap: 22px; padding-top: 0; }
  .pdp__main-img { border-radius: var(--radius); }
  .pdp__thumb { width: 58px; height: 58px; border-radius: 8px; }
  .pdp__thumbs { gap: 6px; margin-top: 8px; flex-wrap: wrap; }
  .pdp__buybox { padding: 16px; border-radius: var(--radius); margin-top: 16px; }
  .pdp__buybox .btn-lg { padding: 13px 16px; font-size: 14.5px; }
  .specrow { font-size: 13px; padding: 9px 0; gap: 10px; }
  .tabs { margin: 26px 0 18px; overflow-x: auto; scrollbar-width: none; gap: 2px; }
  .tabs::-webkit-scrollbar { height: 0; }
  .tab { padding: 11px 14px; font-size: 13.5px; flex: none; white-space: nowrap; }

  /* CHECKOUT */
  .checkout { gap: 20px; }
  .cstep { padding: 18px 16px; margin-bottom: 14px; border-radius: var(--radius); }
  .cstep__head { gap: 10px; margin-bottom: 14px; }
  .cstep__n { width: 26px; height: 26px; font-size: 13px; }
  .cstep__head h2, .cstep__head h3 { font-size: 17px; }
  .radio-card { padding: 13px; gap: 10px; }

  /* COMPARE — таблиця + tray */
  .cmp .cmp-rowlbl { width: 132px; min-width: 132px; font-size: 12px; padding: 11px 12px; }
  .cmp th, .cmp td { padding: 11px 12px; font-size: 13px; }
  .cmp-prodhead { min-width: 168px; width: 168px; }
  .cmp-prodimg { width: 64px; height: 64px; }
  .cmp-prodprice { font-size: 17px; margin: 7px 0 9px; }
  .cmp-tray { left: 8px; right: 8px; bottom: 8px; padding: 10px 11px; gap: 10px; border-radius: var(--radius); }
  .cmp-tray__lbl { font-size: 12.5px; }
  .cmp-tray__thumbs { gap: 5px; overflow-x: auto; scrollbar-width: none; max-width: 38vw; }
  .cmp-tray__thumbs::-webkit-scrollbar { height: 0; }
  .cmp-tray__thumb, .cmp-tray__slot { width: 38px; height: 38px; border-radius: 8px; }
  .cmp-tray__clear { display: none; }
  .cmp-tray .btn { padding: 9px 12px; font-size: 13px; }

  /* CONTACTS */
  .contact-card { padding: 14px 16px; gap: 12px; }
  .contact-card__ic { width: 40px; height: 40px; }
  .contact-phone { font-size: 17px; }
  .contact-hours { padding: 16px; }
  .contact-map { height: 240px; }
  .contact-req { padding: 18px 16px; }

  /* ORDER details — stepper в 2 колонки */
  .ord-head { gap: 10px; margin-bottom: 16px; }
  .ord-stepper { padding: 18px 14px 16px; }
  .ord-track { grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
  .ord-step::before { display: none; }
  .ord-ttn { padding: 14px 16px; gap: 12px; }
  .ord-ttn__num { font-size: 15px; }
  .ord-item { grid-template-columns: 50px 1fr auto; gap: 10px; padding: 11px 0; }
  .ord-item__img { width: 50px; height: 50px; }
  .ord-item__name { font-size: 13px; }
  .ord-item__meta { font-size: 11.5px; }
  .ord-item__sum b { font-size: 14px; }

  /* CALC */
  .calc-menu { gap: 6px; }
  .calc-menu__item { min-width: 0; flex: 1 1 calc(50% - 4px); padding: 11px; gap: 10px; }
  .calc-menu__ic { width: 34px; height: 34px; }
  .calc-menu__t { font-size: 13.5px; }
  .calc-menu__s { display: none; }
  .calc-panel { padding: 20px 16px; }
  .calc-panel h2 { font-size: 20px; }
  .calc-panel__head { gap: 11px; margin-bottom: 4px; }
  .calc-panel__ic { width: 40px; height: 40px; }
  .calc-result { padding: 20px; }
  .calc-result__big { font-size: 36px; }
  .calc-result__big span { font-size: 16px; }
  .calc-result__cta { flex-direction: column; }
  .calc-result__cta .btn { width: 100%; }

  /* FAQ */
  .faq-hero { padding: 24px 18px; }
  .faq-search { height: 48px; padding: 0 12px; }
  .faq-search input { font-size: 15px; }
  .faq-cats { gap: 6px; }
  .faq-cat { padding: 9px 12px; font-size: 13.5px; }
  .faq-group__head h2 { font-size: 18px; }
  .faq-q { padding: 15px 16px; font-size: 14.5px; gap: 11px; }
  .faq-a__inner { padding: 0 16px 18px 16px; font-size: 14px; }
  .faq-cta { padding: 22px 18px; gap: 14px; }

  /* BLOG */
  .blog-feat__cover { min-height: 180px; }
  .blog-feat__body { padding: 22px 18px; }
  .blog-feat__body h2 { font-size: 22px; }
  .blog-feat__body p { font-size: 14.5px; }
  .blog-card__cover { height: 160px; }
  .blog-card__body { padding: 16px 18px 18px; }
  .blog-card__body h3 { font-size: 16.5px; }
  .article__head h1 { font-size: 26px; line-height: 1.15; }
  .article__lead { font-size: 16px; }
  .article__body { font-size: 15.5px; line-height: 1.7; }
  .article__body h2 { font-size: 21px; margin: 28px 0 12px; }
  .article__body h3 { font-size: 17px; margin: 22px 0 8px; }
  .article-callout { padding: 16px 16px; gap: 12px; }
  .article-related h2 { font-size: 19px; }

  /* JOBS */
  .job-hero h1 { font-size: 28px; }
  .job-stat { padding: 12px 14px; }
  .job-stat b { font-size: 22px; }
  .job-perk { padding: 18px; }
  .job-row { padding: 16px 18px; gap: 10px; }
  .job-row__title { font-size: 16px; }
  .job-cta-band { padding: 22px 18px; gap: 14px; }
  .job-cta-band h3 { font-size: 18px; }

  /* AUTH */
  .auth__h { font-size: 24px; }
  .auth__form { padding: 28px 20px 24px; }

  /* PROMO */
  .promo-strip { padding: 14px 16px; gap: 12px; }
  .promo-strip__ic { width: 38px; height: 38px; }
  .promo-strip b { font-size: 14.5px; }
  .promo-strip span { font-size: 12.5px; }
  .promo-offer { padding: 18px; }
  .promo-offer__disc { font-size: 22px; top: 16px; right: 18px; }
  .promo-count__box { min-width: 50px; padding: 8px 4px; }
  .promo-count__n { font-size: 22px; }
  .promo-count__l { font-size: 9.5px; }

  /* SECTION HEAD — кнопка “дивитись усі” під заголовком */
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head > :last-child:not(:only-child) { align-self: stretch; }
  .section-head .btn { width: 100%; justify-content: space-between; }

  /* hscroll — повна ширина без обрізання */
  .hscroll { grid-auto-columns: minmax(200px, 78vw); gap: 12px; }

  /* loyalty стат-таблиця в auth aside — приховано вже */

  /* OFFER — табів-чіпів TOC щільніше */
  .offer-toc { padding: 14px; }
  .offer-toc__list { max-height: 220px; }
  .offer-sec__num { min-width: 32px; height: 32px; font-size: 15px; border-radius: 8px; }
  .offer-sec__head h2 { font-size: 19px; }
  .clause__txt { font-size: 14.5px; line-height: 1.65; }
  .offer-close { padding: 22px 18px; gap: 16px; }
  /* meta chips — на свою стрічку, без обірваного тексту */
  .offer-meta { gap: 8px; }
  .offer-meta__chip { width: 100%; justify-content: flex-start; padding: 10px 13px; font-size: 13px; }
  .offer-meta__chip b { white-space: nowrap; }

  /* BRANDS letters wrap */
  .brands-letter { width: 30px; height: 30px; font-size: 13px; }
  .brand-stats { gap: 18px; }
  .brand-stat b { font-size: 20px; }

  /* REVIEWS */
  .rv-form { padding: 18px 16px; }
  .rv-card { padding: 16px 16px; }
  .rv-title { font-size: 15px; }
  .rv-text { font-size: 14px; }
  .rv-summary { padding: 18px 16px; }
  .rv-score__n { font-size: 44px; }
  .rv-pick__star { font-size: 28px; }

  /* CATALOG */
  .catalog { gap: 18px; padding-top: 0; }
  .toolbar { gap: 10px; margin-bottom: 14px; }
  .toolbar .btn-sm { padding: 8px 12px; }
  .toolbar .select { padding: 9px 12px; }

  /* Стилі для filter sidebar */
  .fgroup { padding: 14px 0; }
  .fgroup h4 { margin-bottom: 10px; font-size: 12px; }

  /* HelpBanner на головній — у стовпчик на мобільному */
  .help-banner { grid-template-columns: 1fr !important; padding: 22px !important; gap: 16px !important; }
  .help-banner h2 { font-size: 20px !important; }
  .help-banner .btn { width: 100%; white-space: normal; }

  /* Account stats — 4 колонки занадто вузько, ставимо 2×2 */
  .acct-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .acct-stats .card { padding: 14px !important; }
  .acct-stats .card .row { gap: 6px; }
  .acct-stats .card > div:last-child { font-size: 19px !important; }

  /* Compare tray не повинна перекривати головний контент */
  body { padding-bottom: 72px; }
  .cmp-tray { padding: 8px 10px; }

  /* tap-friendly мінімум для кнопок-іконок */
  .hicon { min-width: 44px; min-height: 44px; }

  /* приховання “порожніх” glyph на дуже малих плитках */
  .megacat__item { padding: 10px; gap: 10px; }
  .megacat__ic { width: 36px; height: 36px; }
  .megacat__txt b { font-size: 13.5px; }
  .megacat__txt small { font-size: 11px; }
}

/* ≤440px — найвужче, телефон в портреті */
@media (max-width: 440px) {
  .container { padding: 0 12px; }

  /* topbar — лише головні дві посилання, інші вже hide-sm */
  .topbar .container { gap: 10px; padding: 0 12px; }

  /* header — компактніший */
  .header__main { padding: 8px 0; gap: 8px 10px; }
  .searchbar { height: 44px; padding: 0 4px 0 12px; }
  .searchbar input { font-size: 14px; }
  .searchbar .s-go { padding: 7px 12px; font-size: 13px; }
  .hicon-lg { width: 40px; height: 40px; }

  /* catnav — щільніше */
  .catnav .container { height: 46px; }
  .catnav__all { padding: 0 11px; font-size: 13px; height: 36px; }
  .catnav__link { padding: 0 9px; font-size: 12.5px; }

  /* hero CTA окремими рядками вже в існуючому media (max-width:440) */
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .hero__art { height: 170px; }

  /* product card — менші відступи */
  .pgrid { gap: 10px; }
  .pcard__body { padding: 10px 10px 12px; }
  .pcard__name { font-size: 12.5px; min-height: 2.5em; }
  .pcard__price b { font-size: 16.5px; }
  .pcard__add { font-size: 12.5px; padding: 9px 10px; gap: 4px; }
  .qbtn { width: 36px; height: 36px; }

  /* drawer fully bleed */
  .drawer__head h3 { font-size: 17px; }
  .citem { grid-template-columns: 48px 1fr; gap: 9px; }
  .citem > div:last-child { grid-column: 2; display: flex; flex-direction: row !important; justify-content: space-between; align-items: center; margin-top: 4px; }

  /* PDP — щільніше */
  .pdp__thumb { width: 52px; height: 52px; }

  /* checkout */
  .cstep { padding: 16px 14px; }
  .cstep__head h2, .cstep__head h3 { font-size: 16px; }

  /* контактна сторінка */
  .contact-map { height: 200px; }

  /* compare — приховуємо клавішу clear щоб поміщалось */
  .cmp-tray { padding: 9px 10px; gap: 8px; }
  .cmp-tray__lbl { display: none; }
  .cmp-tray__thumbs { max-width: 48vw; }

  /* article cover smaller */
  .article__cover { height: 170px; }

  /* footer */
  .footer__phone { font-size: 15px; }

  /* модал — щільніше */
  .modal { padding: 20px 16px; }
  .modal h3 { font-size: 18px; }

  /* секція padding */
  .section { padding: 30px 0; }

  /* loyalty */
  .loyalty { padding: 20px 16px; border-radius: var(--radius); }

  /* hero stat — менший шрифт */
  .hero__stat b { font-size: 20px; }

  /* faq hero */
  .faq-hero { padding: 22px 16px; }
  .faq-hero h1 { font-size: 24px; }

  /* jobs hero */
  .job-hero { padding: 24px 18px; }
  .job-hero h1 { font-size: 24px; }

  /* promo hero */
  .promo-hero { padding: 24px 18px; }
  .promo-hero h1 { font-size: 30px; }
  .promo-hero .lead { font-size: 15px; }

  /* offer hero */
  .offer-hero { padding: 22px 16px; }
  .offer-hero h1 { font-size: 26px; }

  /* brand hero */
  .brand-hero { padding: 18px 16px; }
  .brand-hero__mono { width: 64px; height: 64px; font-size: 26px; border-radius: 14px; }
  .brand-hero h1 { font-size: 24px; }
  .brand-hero__desc { font-size: 14.5px; }
}

/* ≤360px — для дуже малих пристроїв (iPhone SE та подібні) */
@media (max-width: 360px) {
  .pgrid { grid-template-columns: 1fr; gap: 12px; }
  .cattiles { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 14px; }
  .topbar .container { padding: 0 10px; gap: 8px; font-size: 11.5px; }
  .topbar a { gap: 4px; }
}
