/* =======================================================
   NOVOBRICKS — v3 "Swiss Dark" Design System
   Dark-first, no border-radius on buttons, editorial grid
   ======================================================= */

/* === ROOT VARIABLES === */
:root {
  --bg:       #0e1922;
  --bg-2:     #0a1219;
  --bg-card:  #f5f3ef;
  --bg-lift:  #ece8df;
  --ink:      #e8e4dc;
  --ink-2:    #b0b0b8;
  --dim:      #64646e;
  --accent:   #ff5a1f;
  --accent-h: #e0441a;
  --line:     rgba(255,255,255,0.06);
  --line-d:   rgba(255,255,255,0.11);
  --line-s:   rgba(255,255,255,0.20);
  --mw:       1180px;
  --px:       32px;
  --tr:       0.3s cubic-bezier(0.2,0.8,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Onest', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* width/height в разметке заданы, чтобы браузер заранее резервировал место
   и вёрстка не прыгала при загрузке. Реальную высоту определяет CSS. */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.1; }

/* === LAYOUT === */
.v3-wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* === TYPOGRAPHY SCALE === */
.v3-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.v3-h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.v3-accent { color: var(--accent); }

/* === BUTTON SYSTEM === */
.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: 0;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: inherit;
}
.v3-btn--accent { background: var(--accent); color: #fff; }
.v3-btn--accent:hover { background: var(--accent-h); }
.v3-btn--cream { background: var(--ink); color: var(--bg); }
.v3-btn--cream:hover { background: #fff; }
.v3-btn--outline {
  background: transparent;
  border: 1.5px solid var(--line-s);
  color: var(--ink);
}
.v3-btn--outline:hover { border-color: var(--ink); }
.v3-btn--lg { padding: 18px 36px; font-size: 15px; }

/* === FLOAT BUTTONS === */
.v3-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 400;
}
.v3-float__btn {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--tr);
}
.v3-float__btn:hover { transform: translateY(-2px); }
.v3-float__btn--wa { background: #25d366; }
.v3-float__btn--tg { background: #229ed9; }
.v3-float__btn--ph { background: var(--accent); }

/* === HEADER === */
.v3-hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(6,12,17,0.0);
  border-bottom: 1.5px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.v3-hdr.raised,
.v3-hdr--inner {
  background: rgba(6,12,17,0.97);
  border-bottom-color: var(--line);
  /* backdrop-filter removed — it makes position:fixed children use header as containing block */
}
.v3-hdr__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}
.v3-hdr__logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--ink);
  flex-shrink: 0;
}
.v3-hdr__logo span { color: var(--accent); }
.v3-hdr__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 8px;
  flex-wrap: nowrap;
}
.v3-hdr__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.02em;
  transition: color var(--tr);
  white-space: nowrap;
}
.v3-hdr__link:hover { color: var(--ink); }
/* phone link in nav is only for burger, hide on desktop */
.v3-hdr__link--phone { display: none; }
.v3-hdr__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.v3-hdr__tel {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color var(--tr);
}
.v3-hdr__tel:hover { color: var(--ink); }
.v3-hdr__cta {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 0;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background var(--tr);
}
.v3-hdr__cta:hover { background: var(--accent-h); }
.v3-hdr__cart {
  width: 36px; height: 36px;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  flex-shrink: 0;
}
.v3-hdr__cart:hover { background: var(--bg-card); color: var(--ink); border-color: var(--line-s); }
.v3-hdr__cart-count {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
  padding: 0 3px;
}

/* Header WhatsApp link */
.v3-hdr__wa {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: #25D366;
  flex-shrink: 0;
  transition: opacity var(--tr);
}
.v3-hdr__wa:hover { opacity: 0.8; }

/* CART DRAWER */
.v3-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.v3-cart-overlay.open { opacity: 1; pointer-events: auto; }
.v3-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  background: var(--bg-card);
  border-left: 1.5px solid var(--line-d);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
  display: flex;
  flex-direction: column;
}
.v3-cart-drawer.open { transform: translateX(0); }
.v3-cart-drawer__head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--line-d);
  flex-shrink: 0;
}
.v3-cart-drawer__title { font-size: 16px; font-weight: 800; }
.v3-cart-drawer__close {
  width: 32px; height: 32px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--dim);
  cursor: pointer; background: transparent; font-family: inherit;
  transition: background var(--tr), color var(--tr);
}
.v3-cart-drawer__close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px; }
.v3-cart-empty { padding: 40px 0; text-align: center; color: var(--ink-2); }
.v3-cart-item {
  display: grid;
  grid-template-columns: 56px 1fr 26px;
  gap: 12px; align-items: center;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--line);
}
.v3-cart-item__img { width: 56px; height: 40px; object-fit: cover; display: block; }
.v3-cart-item__name { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.v3-cart-item__price { font-size: 12px; color: var(--dim); }
.v3-cart-item__del {
  width: 26px; height: 26px;
  border: 1.5px solid var(--line-d);
  font-size: 11px; color: var(--dim);
  cursor: pointer; background: transparent; font-family: inherit;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), color var(--tr);
}
.v3-cart-item__del:hover { background: #c0392b; color: #fff; border-color: #c0392b; }
.v3-cart-drawer__foot {
  padding: 16px;
  border-top: 1.5px solid var(--line-d);
  flex-shrink: 0;
}

.v3-hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}
.v3-hdr__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.v3-hdr__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v3-hdr__burger.open span:nth-child(2) { opacity: 0; }
.v3-hdr__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
/* === TABLET HEADER COMPACT (1100px) === */
@media (max-width: 1100px) {
  .v3-hdr__inner { gap: 16px; }
  .v3-hdr__nav { gap: 16px; }
  .v3-hdr__actions { gap: 12px; }
  .v3-hdr__wa { display: none; }
  .v3-hdr__tel { font-size: 13px; white-space: nowrap; }
  .v3-hdr__cta { padding: 9px 16px; font-size: 12px; }
}

/* === TABLET HERO GRID (1000px) === */
@media (max-width: 1000px) {
  .v3-hero { grid-template-columns: 1fr; }
  .v3-hero__img { display: none; }
  .v3-hero__mob-grid { display: grid; }
  .v3-hero__content { padding: 60px var(--px) 40px; }
}

@media (max-width: 900px) {
  .v3-hdr__nav {
    position: fixed;
    inset: 68px 0 0;
    background: #060c11;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px var(--px);
    gap: 24px;
    display: none;
    z-index: 999;
    overflow-y: auto;
  }
  .v3-hdr__nav.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9000;
    background: #060c11;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
  }
  .v3-hdr.nav-open { z-index: 9000; }
  .v3-hdr__nav.open .v3-hdr__link { font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.8); padding: 12px 32px; }
  .v3-hdr__nav.open .v3-hdr__link--phone { font-size: 18px; color: var(--accent); margin-top: 16px; }
  .v3-hdr__link { font-size: 18px; color: var(--ink); }
  .v3-hdr__tel { display: none; }
  .v3-hdr__cta { display: none; }
  .v3-hdr__wa { display: none; }
  .v3-hdr__burger { display: flex; position: relative; z-index: 9001; }
  .v3-hdr__link--phone { display: flex; }
}

/* === LEAD MODAL === */
.v3-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.v3-modal.open { opacity: 1; pointer-events: all; }
.v3-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.v3-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  padding: 48px 44px;
  max-width: 480px;
  width: 100%;
}
.v3-modal__box--quiz { max-width: 560px; padding: 40px 40px 44px; }

/* quiz steps */
.v3-qz-prog {
  height: 3px;
  background: var(--line-d);
  margin-bottom: 32px;
}
.v3-qz-prog__bar {
  height: 100%;
  background: var(--accent);
  transition: width 0.4s ease;
}
.v3-qz-step { display: none; }
.v3-qz-step.active { display: block; }
.v3-qz-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.v3-qz-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.v3-qz-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.v3-qz-choice {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-lift);
  border: 1.5px solid var(--line-d);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: border-color var(--tr), background var(--tr);
}
.v3-qz-choice:hover { border-color: var(--accent); background: rgba(255,90,31,0.06); }
.v3-qz-choice__ico {
  width: 44px; height: 44px;
  background: rgba(255,90,31,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.v3-qz-choice__name { font-size: 16px; font-weight: 700; }
.v3-qz-choice__sub { font-size: 13px; color: var(--dim); margin-top: 2px; }
.v3-qz-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  margin-bottom: 8px;
}
.v3-qz-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-lift);
  border: 1.5px solid var(--line-d);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  margin-bottom: 20px;
}
.v3-qz-input:focus { border-color: var(--accent); }
.v3-qz-ok {
  text-align: center;
  padding: 24px 0;
}
.v3-qz-ok__icon {
  width: 56px; height: 56px;
  background: rgba(255,90,31,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin: 0 auto 20px;
}

/* video section */
.v3-video-sect {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #000;
}
.v3-video-sect video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.v3-video-sect__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,17,26,0.85) 40%, transparent);
  display: flex;
  align-items: center;
}
.v3-video-sect__text {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
}
.v3-video-sect__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.v3-video-sect__h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 500px;
}
.v3-video-play-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.v3-video-play-lbl svg { color: rgba(255,255,255,0.5); }

/* "Добавить в корзину" button on inner page cards */
.v3-add-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #0c1720;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
.v3-add-cart:hover { background: var(--accent); }
.v3-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
}
.v3-modal__close:hover { color: var(--ink); }
.v3-modal__box h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.v3-modal__box p { font-size: 14px; color: var(--dim); margin-bottom: 28px; }
.v3-modal__ok { text-align: center; padding: 16px 0; }

/* === FORM BASE === */
.v3-form { display: flex; flex-direction: column; gap: 12px; }
.v3-form input,
.v3-form select,
.v3-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--line-d);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color var(--tr);
  width: 100%;
  appearance: none;
}
.v3-form input::placeholder,
.v3-form select option { color: var(--dim); }
.v3-form input:focus,
.v3-form select:focus,
.v3-form textarea:focus { border-color: var(--accent); }
.v3-form option { background: var(--bg-card); color: var(--ink); }

/* === SECTION BASE === */
.v3-sect {
  padding: 100px 0;
  border-top: 1.5px solid var(--line);
  background: var(--bg-2);
}
.v3-sect--alt { background: var(--bg-2); }
.v3-sect--card { background: var(--bg-card); }
.v3-sect--dark { background: var(--bg-2); }
.v3-sect--no-top { border-top: none; }

.v3-sect__head { margin-bottom: 52px; }
.v3-sect__meta { display: none; }
.v3-sect__idx {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.18);
  font-variant-numeric: tabular-nums;
}
.v3-sect__top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.v3-sect__sub {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 560px;
}

/* === TICKER === */
.v3-ticker {
  height: 44px;
  background: var(--accent);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.v3-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: v3-ticker 30s linear infinite;
}
.v3-ticker__item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 0 28px;
  flex-shrink: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  height: 44px;
  line-height: 1;
}
.v3-ticker__dot {
  opacity: 0.5;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 44px;
  font-size: 10px;
}
@keyframes v3-ticker { 0%{ transform:translateX(0) } 100%{ transform:translateX(-50%) } }

/* === HERO === */
.v3-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 36%;
  grid-template-rows: 1fr auto;
  padding-top: 68px;
  background: var(--bg-2);
  overflow: hidden;
}
.v3-hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px calc(max((100vw - var(--mw)) / 2 + var(--px), var(--px)));
}
.v3-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.v3-hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
}
.v3-hero__eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.v3-hero__h1 {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.v3-hero__line { display: block; }
.v3-hero__line--outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.v3-hero__line--accent { color: var(--accent); }
.v3-hero__lede {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}
.v3-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.v3-hero__img {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.v3-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.v3-hero__bar {
  grid-column: 1;
  grid-row: 2;
  background: rgba(6,12,17,0.6);
  border-top: 1.5px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 48px 24px calc(max((100vw - var(--mw)) / 2 + var(--px), var(--px)));
}
.v3-hero__stat {
  padding: 0 24px 0 0;
  border-right: 1.5px solid var(--line);
}
.v3-hero__stat:last-child { border-right: none; }
.v3-hero__val {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.v3-hero__lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* Mobile hero photo grid */
.v3-hero__mob-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 24px 0;
}
.v3-hero__mob-cell {
  height: 160px;
  overflow: hidden;
  background: var(--bg-card);
}
.v3-hero__mob-cell img { width: 100%; height: 100%; object-fit: cover; }
.v3-hero__mob-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}
.v3-hero__mob-val {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.v3-hero__mob-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  text-align: center;
}

/* === PRODUCTS LIST === */
/* Product category cards (3-up, like v1) */
.v3-prod-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.v3-prod-cat {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  color: #0c1720;
  text-decoration: none;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.v3-prod-cat:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(0,0,0,0.13); transform: translateY(-2px); }
.v3-prod-cat__imgs {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg);
}
.v3-pc-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}
.v3-pc-img.active { opacity: 1; }
.v3-prod-cat:hover .v3-pc-img.active { opacity: 0; }
.v3-prod-cat:hover .v3-pc-img:nth-child(2) { opacity: 1; }
.v3-prod-cat__imgs { background: #f0eeeb; }
.v3-prod-cat__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.v3-prod-cat__name { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: #0c1720; }
.v3-prod-cat__desc { font-size: 14px; color: rgba(12,23,32,0.55); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.v3-prod-cat__foot {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1.5px solid rgba(0,0,0,0.08);
}
.v3-prod-cat__price { font-size: 20px; font-weight: 800; font-variant-numeric: tabular-nums; color: #0c1720; }
.v3-prod-cat__link { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }

.v3-prod-list {
  border: 1.5px solid var(--line-d);
}
.v3-prod-row {
  display: grid;
  grid-template-columns: 110px 44px 1fr 140px 170px 110px;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--line);
  transition: background var(--tr);
  color: inherit;
}
.v3-prod-row:last-child { border-bottom: none; }
.v3-prod-row:hover { background: var(--bg-card); }
.v3-prod-row__img {
  width: 110px;
  height: 72px;
  overflow: hidden;
}
.v3-prod-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.v3-prod-row:hover .v3-prod-row__img img { transform: scale(1.06); }
.v3-prod-row__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.v3-prod-row__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  display: inline;
  transition: color var(--tr);
}
.v3-prod-row__name:hover { color: var(--accent); }
.v3-prod-row__desc { font-size: 12px; color: var(--dim); }
.v3-prod-row__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.v3-prod-row__price {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.v3-prod-row__price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--dim);
  display: block;
  margin-top: 2px;
}
.v3-add-cart {
  height: 36px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  background: transparent;
}
.v3-add-cart:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-add-cart:disabled { opacity: 0.7; cursor: default; }

/* hover thumbnail (fixed position, follows cursor) */
.v3-hover-thumb {
  position: fixed;
  width: 220px; height: 148px;
  pointer-events: none;
  z-index: 800;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.93) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  border: 1.5px solid var(--line-d);
}
.v3-hover-thumb.vis { opacity: 1; transform: scale(1) translateY(0); }
.v3-hover-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* === WHY COMPACT BAR === */
.v3-why-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--line-d);
  margin-top: 56px;
}
.v3-why-compact__item {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--tr), box-shadow var(--tr);
  opacity: 0;
  transform: translateY(28px);
}
.v3-why-compact__item.v3-visible {
  opacity: 1;
  transform: translateY(0);
}
.v3-why-compact__item:nth-child(1) { transition-delay: 0s; }
.v3-why-compact__item:nth-child(2) { transition-delay: 0.1s; }
.v3-why-compact__item:nth-child(3) { transition-delay: 0.2s; }
.v3-why-compact__item:nth-child(4) { transition-delay: 0.3s; }
.v3-why-compact__item:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.18); transform: translateY(-3px); }
.v3-why-compact__accent {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.v3-why-compact__title {
  font-size: 16px;
  font-weight: 800;
  color: #0c1720;
}
.v3-why-compact__text {
  font-size: 13px;
  color: rgba(12,23,32,0.6);
  line-height: 1.65;
}

/* === FACTORY WITH GALLERY === */
.v3-factory__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.v3-factory__specs-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.v3-factory__specs { border-top: 1.5px solid var(--line-d); }
.v3-factory__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1.5px solid var(--line);
  gap: 16px;
}
.v3-factory__spec-key { font-size: 13px; color: var(--dim); }
.v3-factory__spec-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.v3-factory__spec-val--accent { color: var(--accent); }

/* Factory swiper — full-width outside v3-wrap */
.v3-fac-swiper { overflow: hidden; height: 460px; margin: 56px 0 0; }
.v3-fac-swiper .swiper-slide { height: 460px; }
.v3-fac-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v3-fac-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.v3-fac-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  font-size: 18px;
  cursor: pointer;
  background: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-fac-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-fac-pag { flex: 1; display: flex; gap: 6px; align-items: center; }
.v3-fac-pag .swiper-pagination-bullet {
  width: 6px; height: 6px;
  border-radius: 0;
  background: var(--line-s);
  opacity: 1;
}
.v3-fac-pag .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
}

/* === CALCULATOR QUIZ CARDS === */
.v3-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.v3-calc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  padding: 48px 44px 40px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v3-calc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.v3-calc-card:hover { background: var(--bg-lift); border-color: var(--line-s); }
.v3-calc-card:hover::before { transform: scaleX(1); }
.v3-calc-card__icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
  color: var(--accent);
}
.v3-calc-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.v3-calc-card__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}
.v3-calc-card__desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 40px;
  flex: 1;
}
.v3-calc-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid var(--line);
  padding-top: 24px;
}
.v3-calc-card__cta-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.v3-calc-card__arr {
  width: 44px; height: 44px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--dim);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-calc-card:hover .v3-calc-card__arr { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-calc-card__bg-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 140px;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
}
.v3-calc-card__bg-img img { width: 100%; height: 100%; object-fit: cover; }

/* Quiz compact cards */
.v3-quiz-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 860px;
  margin: 48px auto 0;
}
.v3-quiz-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  color: inherit;
  transition: background var(--tr), border-color var(--tr);
  text-decoration: none;
}
.v3-quiz-card:hover { background: var(--bg-lift); border-color: var(--accent); }
.v3-quiz-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,90,31,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.v3-quiz-card__body { flex: 1; min-width: 0; }
.v3-quiz-card__title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.v3-quiz-card__desc { font-size: 13px; color: var(--dim); line-height: 1.5; }
.v3-quiz-card__arr {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-quiz-card:hover .v3-quiz-card__arr { background: var(--accent); color: #fff; border-color: var(--accent); }

/* === REVIEWS SLIDER === */
.v3-rev-pull {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1.5px solid var(--line);
  align-items: center;
}
.v3-rev-pull__quote {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.v3-rev-pull__quote::before {
  content: '"';
  font-size: 72px;
  line-height: 0.7;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
}
.v3-rev-pull__name {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 2px;
}
.v3-rev-pull__role { font-size: 13px; color: var(--dim); }
.v3-rev-pull__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
}
.v3-rev-pull__img { height: 320px; overflow: hidden; }
.v3-rev-pull__img img { width: 100%; height: 100%; object-fit: cover; }

.v3-rev-swiper { overflow: hidden; }
.v3-rev-swiper .swiper-wrapper { align-items: stretch; }
.v3-rev-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.v3-rev-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.v3-rev-card__avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.v3-rev-card__meta { flex: 1; }
.v3-rev-card__name { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.v3-rev-card__city { font-size: 12px; color: var(--dim); }
.v3-rev-card__stars { font-size: 12px; color: var(--accent); letter-spacing: 2px; margin-left: auto; flex-shrink: 0; }
.v3-rev-card__text { font-size: 14px; color: var(--ink-2); line-height: 1.75; flex: 1; }
.v3-rev-card__obj {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim);
  padding-top: 16px;
  border-top: 1.5px solid var(--line);
}
.v3-rev-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.v3-rev-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  font-size: 18px;
  cursor: pointer;
  background: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-rev-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-rev-pag { flex: 1; display: flex; gap: 6px; align-items: center; }
.v3-rev-pag .swiper-pagination-bullet {
  width: 6px; height: 6px; border-radius: 0; background: var(--line-s); opacity: 1;
}
.v3-rev-pag .swiper-pagination-bullet-active { background: var(--accent); width: 28px; }
.v3-rev-counter { font-size: 12px; color: var(--dim); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* === PROCESS STEPS === */
.v3-step-header { display: none; }
.v3-step-list { border-bottom: 1.5px solid var(--line); }
.v3-step-row {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1.5px solid var(--line);
  align-items: start;
}
.v3-step-row__num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  font-variant-numeric: tabular-nums;
}
.v3-step-row__title {
  font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.3;
  display: flex; flex-direction: column; gap: 8px;
}
.v3-step-time__badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,90,31,0.15);
  color: var(--accent);
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.v3-step-row__text { font-size: 14px; color: var(--dim); line-height: 1.7; }

/* === PROJECTS SLIDER === */
.v3-proj-swiper { overflow: hidden; }
.v3-proj-slide {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.v3-proj-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v3-proj-slide:hover img { transform: scale(1.04); }
.v3-proj-slide__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(6,12,17,0.88) 0%, transparent 100%);
  padding: 48px 24px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.v3-proj-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.v3-proj-btn {
  width: 52px; height: 52px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 20px;
  cursor: pointer; background: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-proj-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-proj-pag { flex: 1; display: flex; gap: 6px; align-items: center; }
.v3-proj-pag .swiper-pagination-bullet {
  width: 6px; height: 6px; border-radius: 0; background: var(--line-s); opacity: 1;
}
.v3-proj-pag .swiper-pagination-bullet-active { background: var(--accent); width: 36px; }
.v3-proj-count { font-size: 13px; color: var(--dim); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* === FAQ === */
.v3-faq-list { border-top: 1.5px solid var(--line-d); }
.v3-faq-item { border-bottom: 1.5px solid var(--line); }
.v3-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--ink);
}
.v3-faq-trigger__q { font-size: 16px; font-weight: 700; line-height: 1.35; }
.v3-faq-trigger__ic {
  width: 28px; height: 28px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 18px;
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr), transform 0.35s ease;
}
.v3-faq-item.open .v3-faq-trigger__ic {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: rotate(45deg);
}
.v3-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.v3-faq-body__inner {
  padding: 0 0 28px;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.75;
}

/* === CONTACTS === */
.v3-contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--line-d);
}
.v3-contact-block { background: var(--bg); padding: 40px 36px; }
.v3-contact-block__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.v3-contact-block__name { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.v3-contact-block__row {
  font-size: 14px; color: var(--dim);
  margin-bottom: 8px;
}
.v3-contact-block__row a { color: var(--ink-2); transition: color var(--tr); }
.v3-contact-block__row a:hover { color: var(--accent); }
.v3-contact-map { padding: 0; overflow: hidden; }
.v3-contact-map iframe {
  width: 100%; height: 100%; min-height: 280px;
  border: none;
  filter: saturate(0) brightness(0.35);
  transition: filter 0.3s ease;
}
.v3-contact-map:hover iframe { filter: saturate(0.25) brightness(0.55); }

/* === CTA SECTION === */
.v3-cta {
  background: var(--bg-2);
  padding: 100px 0;
  border-top: 1.5px solid var(--line);
}
.v3-cta__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.v3-cta__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.v3-cta__h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.v3-cta__checks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.v3-cta__check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}
.v3-cta__check-icon {
  width: 20px; height: 20px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
  flex-shrink: 0; margin-top: 2px;
}
.v3-cta__check-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.v3-cta__check-desc { font-size: 12px; color: var(--dim); line-height: 1.5; }
.v3-cta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.v3-cta__bullets li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.v3-cta__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.v3-cta__contact { font-size: 13px; color: var(--dim); display: flex; flex-direction: column; gap: 4px; }
.v3-cta__contact a {
  font-size: 20px; font-weight: 800;
  color: var(--ink); display: block; margin-bottom: 4px;
  transition: color var(--tr);
}
.v3-cta__contact a:hover { color: var(--accent); }
.v3-cta__form-wrap {
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  padding: 44px 40px;
}
.v3-cta__form-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.v3-cta__form-sub { font-size: 14px; color: var(--dim); margin-bottom: 28px; }
.v3-cta__success { display: none; padding: 20px 0; text-align: center; }
.v3-cta__success p { font-size: 15px; }
.v3-cta__success strong { color: var(--accent); }

/* === FOOTER === */
.v3-footer {
  background: #060c11;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.v3-footer__bg {
  position: absolute;
  bottom: -24px; right: -16px;
  font-size: 180px; font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}
.v3-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
}
.v3-footer__logo { font-size: 20px; font-weight: 900; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 16px; display: block; }
.v3-footer__logo span { color: var(--accent); }
.v3-footer__desc { font-size: 13px; color: var(--dim); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.v3-footer__socials { display: flex; gap: 10px; }
.v3-footer__social {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.v3-footer__social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.v3-footer__col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.v3-footer__links { display: flex; flex-direction: column; gap: 10px; }
.v3-footer__link { font-size: 13px; color: var(--dim); transition: color var(--tr); }
.v3-footer__link:hover { color: var(--accent); }
.v3-footer__contact { margin-bottom: 8px; }
.v3-footer__contact a { font-size: 14px; color: var(--ink-2); transition: color var(--tr); }
.v3-footer__contact a:hover { color: var(--accent); }
.v3-footer__contact span { font-size: 13px; color: var(--dim); }
.v3-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1.5px solid var(--line);
  position: relative;
}
.v3-footer__copy { font-size: 12px; color: var(--dim); }

/* =====================================================
   INNER PAGES
   ===================================================== */

/* breadcrumb */
.v3-bc { display: none; }

/* ── CATALOG PAGE ── */
.v3-cat-hero {
  background: var(--bg-2);
  padding: 120px 0 64px;
  border-bottom: 1.5px solid var(--line-d);
}
.v3-cat-hero__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.v3-cat-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 12px;
}
.v3-cat-hero__sub { font-size: 14px; color: var(--dim); }

/* filter tabs */
.v3-cat-filters {
  display: flex;
  gap: 0;
  margin: 28px 0 24px;
  border: 1.5px solid var(--line-d);
  width: fit-content;
}
.v3-colors-note { display: none; }
.v3-cat-filter {
  padding: 12px 28px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dim);
  cursor: pointer;
  border: none;
  border-right: 1.5px solid var(--line-d);
  background: none;
  font-family: inherit;
  transition: background var(--tr), color var(--tr);
}
.v3-cat-filter:last-child { border-right: none; }
.v3-cat-filter.active, .v3-cat-filter:hover { background: var(--accent); color: #fff; }

/* catalog grid */
.v3-cat-section { padding: 64px 0 100px; background: var(--bg-2); }
.v3-cat-hero { background: var(--bg-2); }
.v3-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v3-cat-card {
  background: #fff;
  border: 1px solid rgba(14,25,34,0.1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.28s, border-color 0.28s;
  color: #0c1720;
  box-shadow: 0 2px 8px rgba(14,25,34,0.05);
}
.v3-cat-card:hover { border-color: var(--accent); box-shadow: 0 20px 48px rgba(14,25,34,0.14); }
.v3-cat-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: #f0eeeb;
}
.v3-cat-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.v3-cat-card:hover .v3-cat-card__img img { transform: scale(1.04); }

/* hover overlay on catalog cards */
.v3-cat-card__overlay {
  position: absolute; inset: 0;
  background: rgba(14,25,34,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.28s;
}
.v3-cat-card:hover .v3-cat-card__overlay { opacity: 1; }
.v3-cat-card__overlay-btn {
  background: #fff; color: #0e1922;
  border: none;
  padding: 10px 22px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; transform: translateY(8px);
  transition: transform 0.28s;
}
.v3-cat-card:hover .v3-cat-card__overlay-btn { transform: translateY(0); }

.v3-cat-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 9px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.v3-cat-card__badge--accent { background: var(--accent); color: #fff; }
.v3-cat-card__badge--pop { background: #0e1922; color: #fff; }
.v3-cat-card__badge--new { background: #22c55e; color: #fff; }
.v3-cat-card__badge--sale { background: #0e1922; color: #fff; }
.v3-cat-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.v3-cat-card__name { font-size: 16px; font-weight: 700; color: #0e1922; margin: 4px 0 4px; letter-spacing: -0.01em; }
.v3-cat-card__size { font-size: 12px; color: rgba(14,25,34,0.45); margin-bottom: 10px; }
.v3-cat-card__dots { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; flex-wrap: wrap; }
.v3-cdot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  display: inline-block;
  flex-shrink: 0; cursor: default;
  transition: transform 0.15s;
}
.v3-cdot:hover { transform: scale(1.3); }
.v3-cdot--light { border-color: rgba(14,25,34,0.15); }
.v3-cdot-more { font-size: 11px; color: rgba(14,25,34,0.45); font-weight: 600; margin-left: 2px; }
.v3-cat-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,25,34,0.08);
}
.v3-cat-card__price { font-size: 17px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.v3-cat-card__btn { background: transparent; border: none; font-family: inherit; font-size: 13px; font-weight: 600; color: rgba(14,25,34,0.45); cursor: pointer; white-space: nowrap; transition: color 0.2s; padding: 0; }
.v3-cat-card:hover .v3-cat-card__btn { color: var(--accent); }

@media (max-width: 1200px) { .v3-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .v3-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v3-cat-grid { grid-template-columns: 1fr; gap: 14px; } }

/* catalog CTA strip */
.v3-cta-strip {
  background: var(--bg-card);
  border-top: 1.5px solid var(--line-d);
  border-bottom: 1.5px solid var(--line-d);
  padding: 40px 0;
}
.v3-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.v3-cta-strip__text strong { display: block; font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.v3-cta-strip__text span { font-size: 14px; color: var(--dim); }
.v3-cta-strip__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ── CATEGORY PAGE HERO (plitka, kirpich, bord) ── */
.v3-cathero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding-top: 68px;
}
.v3-cathero__bg { position: absolute; inset: 0; z-index: 0; }
.v3-cathero__bg img { width: 100%; height: 100%; object-fit: cover; }
.v3-cathero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,12,17,0.92) 0%, rgba(6,12,17,0.45) 55%, rgba(6,12,17,0.2) 100%);
}
.v3-cathero__content { position: relative; z-index: 1; padding: 60px 0; width: 100%; }
.v3-cathero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.v3-cathero__breadcrumb a { color: rgba(255,255,255,0.45); }
.v3-cathero__breadcrumb a:hover { color: var(--accent); }
.v3-cathero__h1 {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 14px;
}
.v3-cathero__h1 .v3-accent { color: var(--accent); }
.v3-cathero__lede { font-size: 15px; color: var(--dim); margin-bottom: 28px; }
.v3-cathero__btns { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.v3-cathero__specs {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1.5px solid var(--line);
  padding-top: 28px;
}
.v3-cathero__spec { padding: 0 28px 0 0; margin-right: 28px; border-right: 1.5px solid var(--line); }
.v3-cathero__spec:last-child { border-right: none; }
.v3-cathero__spec strong { display: block; font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.v3-cathero__spec span { font-size: 12px; color: var(--dim); }

/* category products section */
.v3-cat-prods { padding: 80px 0; border-top: 1.5px solid var(--line); }

/* colours */
.v3-colors-sect { padding: 72px 0; background: var(--bg-2); border-top: 1.5px solid var(--line); }
.v3-colors-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.v3-color-chip { display: flex; align-items: center; gap: 10px; }
.v3-color-chip__dot { width: 36px; height: 36px; flex-shrink: 0; }
.v3-color-chip span { font-size: 13px; color: var(--dim); }

/* specs table */
.v3-specs-sect { padding: 80px 0; border-top: 1.5px solid var(--line); }
.v3-specs-table-wrap { overflow-x: auto; }
.v3-specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.v3-specs-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1.5px solid var(--line-d);
  background: var(--bg-2);
}
.v3-specs-table td { padding: 16px 20px; border-bottom: 1.5px solid var(--line); color: var(--dim); }
.v3-specs-table td:first-child { color: var(--ink); }
.v3-specs-table__good { color: var(--accent) !important; font-weight: 700; }
.v3-specs-table tr:last-child td { border-bottom: none; }

/* projects gallery (category page) */
.v3-cat-gallery-sect { padding: 80px 0; border-top: 1.5px solid var(--line); }
.v3-cat-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: 48px;
}
.v3-cat-gal-item { overflow: hidden; background: var(--bg-card); }
.v3-cat-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.v3-cat-gal-item:hover img { transform: scale(1.04); }
.v3-cat-gal-item--main { grid-row: 1 / 3; }

/* order form (category page) */
.v3-order-sect {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1.5px solid var(--line);
}
.v3-order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.v3-order-left h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.v3-order-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.v3-order-check { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--dim); }
.v3-order-check__ic {
  width: 20px; height: 20px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
  flex-shrink: 0; margin-top: 2px;
}
.v3-order-tel { display: block; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; transition: color var(--tr); }
.v3-order-tel:hover { color: var(--accent); }
.v3-order-hours { font-size: 13px; color: var(--dim); }
.v3-order-form-wrap { background: var(--bg-card); border: 1.5px solid var(--line-d); padding: 40px 36px; }
.v3-order-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.v3-order-form-wrap > p { font-size: 14px; color: var(--dim); margin-bottom: 24px; }

/* ── PRODUCT PAGE ── */
.v3-prod-page { padding: 100px 0 80px; min-height: 100vh; }
.v3-prod-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
  margin-top: 36px;
}
.v3-prod-gallery__main {
  height: 480px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 12px;
}
.v3-prod-gallery__main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.v3-prod-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.v3-prod-thumb-item {
  width: 80px; height: 60px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: border-color var(--tr);
  flex-shrink: 0;
}
.v3-prod-thumb-item:hover,
.v3-prod-thumb-item.active { border-color: var(--accent); }
.v3-prod-thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.v3-prod-name {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.v3-prod-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 28px;
}
.v3-prod-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--line);
}
.v3-prod-section:last-child { border-bottom: none; padding-bottom: 0; }
.v3-prod-section__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px;
}
.v3-prod-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.v3-prod-swatch {
  width: 32px; height: 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--tr);
}
.v3-prod-swatch:hover, .v3-prod-swatch.active { border-color: var(--accent); }
.v3-prod-specs { display: flex; flex-direction: column; }
.v3-prod-spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1.5px solid var(--line);
  font-size: 14px;
}
.v3-prod-spec:last-child { border-bottom: none; }
.v3-prod-spec span:first-child { color: var(--dim); }
.v3-prod-spec span:last-child { font-weight: 700; }
.v3-prod-use { font-size: 14px; color: var(--dim); line-height: 1.7; }
.v3-prod-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 28px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
  :root { --px: 24px; }
  .v3-fac-swiper { height: 380px; }
  .v3-fac-swiper .swiper-slide { height: 380px; }
  .v3-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-prod-layout { grid-template-columns: 1fr; }
  .v3-contacts__grid { grid-template-columns: 1fr 1fr; }
  .v3-contact-map { min-height: 240px; }
}

@media (max-width: 900px) {
  :root { --px: 20px; }
  .v3-sect { padding: 72px 0; }
  .v3-sect__head { margin-bottom: 36px; }

  /* Hero */
  .v3-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: auto; }
  .v3-hero__content { padding: 56px var(--px) 28px; }
  .v3-hero__img { display: none; }
  .v3-hero__mob-grid { display: grid; }
  .v3-hero__bar { grid-template-columns: repeat(2, 1fr); gap: 1.5px; padding: 24px var(--px); background: var(--line-d); }
  .v3-hero__stat { padding: 16px; border-right: none; background: rgba(6,12,17,0.6); }

  /* product categories — horizontal scroll on mobile */
  .v3-prod-cats {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
    padding-bottom: 8px;
    margin-right: calc(-1 * var(--px));
    padding-right: var(--px);
  }
  .v3-prod-cats::-webkit-scrollbar { display: none; }
  .v3-prod-cat {
    flex-shrink: 0;
    width: min(80vw, 320px);
    scroll-snap-align: start;
  }
  .v3-prod-cat__imgs { height: 220px; }
  /* product rows (below categories) */
  .v3-prod-list { display: none; }
  /* catalog filters */
  .v3-cat-filters { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .v3-cat-filter { flex-shrink: 0; padding: 12px 20px; }

  .v3-why-compact { grid-template-columns: 1fr 1fr; }
  .v3-why-compact__item { padding: 28px 20px; }

  .v3-calc-grid { grid-template-columns: 1fr; }
  .v3-calc-card { padding: 36px 28px 32px; }
  .v3-quiz-cards { grid-template-columns: 1fr; max-width: 100%; }
  .v3-quiz-card { padding: 24px; }

  .v3-fac-swiper { height: 320px; }
  .v3-fac-swiper .swiper-slide { height: 320px; }

  .v3-step-row { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  .v3-step-row__text { grid-column: 1 / -1; padding-left: 64px; }

  .v3-contacts__grid { grid-template-columns: 1fr; background: none; gap: 0; }
  .v3-contact-block { border-bottom: 1.5px solid var(--line); }
  .v3-contact-map { min-height: 200px; }

  .v3-cta__layout { grid-template-columns: 1fr; gap: 48px; }

  .v3-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* inner: catalog */
  .v3-cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .v3-cta-strip__btns { flex-wrap: wrap; }
  .v3-cat-filters { flex-wrap: wrap; }
  .v3-cat-hero { padding: 80px 0 32px; }
  .v3-cat-section { padding: 28px 0 64px; }
  .v3-cat-filters { margin: 16px 0 16px; }

  /* inner: category */
  .v3-cat-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .v3-cat-gal-item--main { grid-row: auto; grid-column: 1 / -1; }
  .v3-order-inner { grid-template-columns: 1fr; gap: 48px; }

  /* inner: product */
  .v3-prod-gallery__main { height: 320px; }

  /* cathero */
  .v3-cathero__specs { flex-wrap: wrap; gap: 20px; }
  .v3-cathero__spec { border-right: none; padding: 0; margin: 0; }
}

@media (max-width: 580px) {
  :root { --px: 16px; }
  .v3-h2 { font-size: 28px; }
  .v3-sect { padding: 56px 0; }
  .v3-hero__mob-grid { gap: 2px; }
  .v3-hero__mob-cell { height: 130px; }
  .v3-hero__bar { grid-template-columns: 1fr 1fr; }
  .v3-cat-grid { grid-template-columns: 1fr; }
  .v3-why-compact { grid-template-columns: 1fr; }
  .v3-cart-drawer { width: 100%; max-width: 380px; }
  .v3-footer__grid { grid-template-columns: 1fr; }
  .v3-cta__form-wrap { padding: 28px 20px; }
  .v3-modal__box { padding: 32px 24px; }
  .v3-cathero__h1 { font-size: 32px; }
  .v3-order-form-wrap { padding: 28px 20px; }
  .v3-prod-layout { gap: 32px; }
}

/* =====================================================
   INNER PAGE — EXTRA COMPONENTS
   ===================================================== */

/* cathero with bg-image */
.v3-cathero {
  background-size: cover;
  background-position: center;
}
.v3-cathero__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.v3-cathero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* active nav link */
.v3-hdr__link--active { color: var(--accent) !important; }

/* specs accent cell */
.v3-specs-accent { color: var(--accent); font-weight: 700; }

/* gallery caption overlay */
.v3-cat-gal-item { position: relative; }
.v3-cat-gal-item__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  background: linear-gradient(transparent, rgba(6,12,17,0.8));
  opacity: 0;
  transition: opacity 0.3s;
}
.v3-cat-gal-item:hover .v3-cat-gal-item__cap { opacity: 1; }

/* colors section extras */
.v3-color-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.v3-color-chip__swatch {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border: 1.5px solid var(--line-d);
}
.v3-color-chip__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.v3-color-chip__stock {
  font-size: 11px;
  color: var(--dim);
}
.v3-colors-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.v3-colors-note { display: none; }

/* order form — new structure */
.v3-order-text h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.v3-order-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.v3-order-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dim);
}
.v3-order-perks li svg { flex-shrink: 0; color: var(--accent); }

/* form select */
.v3-form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line-d);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--tr);
  border-radius: 0;
}
.v3-form-select:focus { border-color: var(--accent); }
.v3-form-select option { background: var(--bg-card); }

/* form disclaimer */
.v3-form-note { font-size: 11px; color: var(--dim); line-height: 1.5; margin-top: 4px; }

/* ── KIRPICH PAGE ── */
.v3-kirpich-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.v3-kirpich-img { position: relative; }
.v3-kirpich-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--bg-2);
  border: 1.5px solid var(--line-d);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3-kirpich-kpi-row { display: flex; gap: 0; border: 1.5px solid var(--line-d); margin-bottom: 32px; }
.v3-kirpich-kpi {
  flex: 1;
  padding: 20px 16px;
  border-right: 1.5px solid var(--line-d);
}
.v3-kirpich-kpi:last-child { border-right: none; }
.v3-kirpich-kpi__val { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.v3-kirpich-kpi__lbl { font-size: 11px; color: var(--dim); }
.v3-kirpich-advantages { display: flex; flex-direction: column; gap: 24px; }
.v3-kirpich-adv {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.v3-kirpich-adv__icon {
  font-size: 11px; font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}
.v3-kirpich-adv strong { font-size: 14px; font-weight: 800; display: block; margin-bottom: 4px; }
.v3-kirpich-adv p { font-size: 13px; color: var(--dim); line-height: 1.6; }

/* ── BORD PAGE ── */
.v3-bord-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.v3-bord-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  display: flex;
  flex-direction: column;
  transition: border-color var(--tr);
}
.v3-bord-card:hover { border-color: var(--line-s); }
.v3-bord-card__img {
  height: 320px;
  overflow: hidden;
}
.v3-bord-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.v3-bord-card:hover .v3-bord-card__img img { transform: scale(1.04); }
.v3-bord-card__body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.v3-bord-card__type {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.v3-bord-card__name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.v3-bord-card__size { font-size: 13px; color: var(--dim); margin-bottom: 24px; }
.v3-bord-card__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.v3-bord-card__features li { font-size: 14px; color: var(--dim); padding-left: 14px; position: relative; }
.v3-bord-card__features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent);
}
.v3-bord-card__price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1.5px solid var(--line);
}
.v3-bord-card__price { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; }

/* ── PRODUCT3 PAGE ── */
.v3-prod3-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 10px; margin-bottom: 8px; }
.v3-prod3-thumbs { display: flex; flex-direction: column; gap: 8px; }
.v3-prod3-thumb {
  width: 80px; height: 64px;
  overflow: hidden; cursor: pointer;
  border: 2px solid var(--line);
  transition: border-color var(--tr);
}
.v3-prod3-thumb.active, .v3-prod3-thumb:hover { border-color: var(--accent); }
.v3-prod3-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v3-prod3-main {
  height: 480px; overflow: hidden;
  background: var(--bg-card);
}
.v3-prod3-main img { width: 100%; height: 100%; object-fit: cover; }

/* responsive extras */
@media (max-width: 900px) {
  .v3-kirpich-layout { grid-template-columns: 1fr; }
  .v3-bord-cards { grid-template-columns: 1fr; }
  .v3-prod3-gallery { grid-template-columns: 1fr; }
  .v3-prod3-thumbs { flex-direction: row; }
  .v3-prod3-main { height: 280px; }
}

/* Swiper static pagination */
.swiper-pagination { position: static !important; }
.swiper-pagination-bullet {
  border-radius: 0 !important;
  opacity: 1 !important;
  transition: width 0.3s ease, background 0.3s ease !important;
}

/* ══ CATALOG QUICK-VIEW ══ */
/* ── PRODUCT QUICK-VIEW (pmodal-style) ── */
.v3-qv-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.v3-qv-overlay.open { opacity: 1; pointer-events: auto; }
.v3-qv-drawer {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 540px;
  max-width: 95vw;
  background: var(--bg-card);
  border-left: 1.5px solid var(--line-d);
  z-index: 1200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.v3-qv-drawer.open { transform: translateX(0); }

.v3-qv__photos {
  flex-shrink: 0;
  height: 320px;
  background: #f0eeeb;
  position: relative;
}
.v3-qv-swiper { height: 100%; }
.v3-qv-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.v3-qv-pagination { bottom: 12px !important; }
.v3-qv__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  border: none; background: rgba(14,25,34,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3; color: #0c1720;
  transition: background 0.2s;
}
.v3-qv__close:hover { background: rgba(14,25,34,0.3); }

.v3-qv__body { padding: 28px 28px 44px; flex: 1; }
.v3-qv__top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.v3-qv__tag { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.v3-qv__badge { font-size: 10px; font-weight: 700; padding: 3px 8px; background: var(--accent); color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
.v3-qv__badge:empty { display: none; }
.v3-qv__name { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin: 0 0 8px; }
.v3-qv__price { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; margin-bottom: 20px; }

.v3-qv__specs { margin-bottom: 20px; }
.v3-qv__specs table { width: 100%; border-collapse: collapse; font-size: 14px; }
.v3-qv__specs tr { border-bottom: 1px solid var(--line-d); }
.v3-qv__specs td { padding: 9px 0; color: var(--ink); }
.v3-qv__specs td:first-child { color: var(--dim); width: 50%; }
.v3-qv__specs td:last-child { font-weight: 600; text-align: right; }

.v3-qv__colors-wrap { margin-bottom: 20px; }
.v3-qv__colors-label { font-size: 12px; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.v3-qv__swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.v3-qv__swatch { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; background: none; border: none; padding: 0; }
.v3-qv__swatch-color { width: 36px; height: 36px; border: 2px solid transparent; transition: border-color 0.2s, transform 0.15s; }
.v3-qv__swatch:hover .v3-qv__swatch-color { transform: scale(1.1); }
.v3-qv__swatch.active .v3-qv__swatch-color { border-color: var(--accent); }
.v3-qv__swatch-name { font-size: 10px; color: var(--dim); text-align: center; font-weight: 500; }

.v3-qv__use { font-size: 13px; color: var(--dim); line-height: 1.65; margin-bottom: 24px; padding: 14px 16px; background: rgba(255,90,31,0.06); border-left: 3px solid var(--accent); }
.v3-qv__actions { display: flex; flex-direction: column; gap: 10px; }
.v3-qv__actions .v3-btn { width: 100%; justify-content: center; }

.v3-cat-card { cursor: pointer; }
@media (max-width: 580px) {
  .v3-qv-drawer { width: 100%; }
  .v3-qv__photos { height: 240px; }
  .v3-qv__body { padding: 20px 20px 36px; }
}

/* ── RELATED PRODUCTS SECTION (inner pages) ── */
.v3-related-sect {
  padding: 80px 0;
  border-top: 1.5px solid var(--line);
}
.v3-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.v3-related-card {
  display: flex;
  background: var(--bg-card);
  border: 1.5px solid var(--line-d);
  overflow: hidden;
  transition: border-color var(--tr), background var(--tr);
  text-decoration: none;
}
.v3-related-card:hover {
  border-color: var(--accent);
  background: var(--bg-lift);
}
.v3-related-card__img {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.v3-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.v3-related-card:hover .v3-related-card__img img { transform: scale(1.05); }
.v3-related-card__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.v3-related-card__name {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.v3-related-card__desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.5;
}
.v3-related-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .v3-related-grid { grid-template-columns: 1fr; }
  .v3-related-card__img { width: 140px; }
}
@media (max-width: 580px) {
  .v3-related-card { flex-direction: column; }
  .v3-related-card__img { width: 100%; height: 180px; }
}

/* ── MOBILE VIDEO SECTION ── */
@media (max-width: 640px) {
  .v3-video-sect { height: 320px; }
  .v3-video-sect__h2 { font-size: 24px; }
  .v3-video-play-lbl { font-size: 11px; gap: 6px; }
  .v3-video-play-lbl svg { width: 24px; height: 24px; }
}

/* ── MOBILE QUIZ MODAL ── */
@media (max-width: 580px) {
  .v3-modal__box--quiz { padding: 28px 20px 32px; }
  .v3-qz-title { font-size: 18px; }
  .v3-qz-choice { padding: 14px 16px; gap: 12px; }
  .v3-qz-choice__ico { width: 36px; height: 36px; }
}

/* ── BENTO PHOTO GALLERY (main page bottom) ── */
.v3-photo-grid-sect {
  padding: 0 0 100px;
  background: var(--bg-2);
}
.v3-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.v3-photo-grid__item {
  overflow: hidden;
  position: relative;
}
.v3-photo-grid__item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.v3-photo-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.v3-photo-grid__item:hover img { transform: scale(1.05); }
.v3-photo-grid__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 20px 16px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s;
}
.v3-photo-grid__item:hover .v3-photo-grid__cap { opacity: 1; }
@media (max-width: 900px) {
  .v3-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .v3-photo-grid__item--big { grid-column: span 2; grid-row: span 1; height: 240px; }
}
@media (max-width: 580px) {
  .v3-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 140px 140px 140px; }
  .v3-photo-grid__item--big { height: 180px; }
}

/* ── VIDEO LIGHTBOX ── */
.v3-video-lb {
  position: fixed; inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.v3-video-lb.open { opacity: 1; pointer-events: auto; }
.v3-video-lb video {
  max-width: 90vw; max-height: 85vh;
  width: 100%;
}
.v3-video-lb__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none; color: #fff;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.v3-video-lb__close:hover { background: rgba(255,255,255,0.2); }

/* video section play cursor */
.v3-video-sect { cursor: pointer; }
.v3-video-sect__play-hint {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  margin-top: 8px;
  font-size: 13px; font-weight: 700;
  color: #fff;
  transition: background 0.2s;
}
.v3-video-sect__play-hint:hover { background: rgba(255,90,31,0.3); }

/* ── INNER PAGE ORDER SECTION MINI CTA ── */
.v3-order-cta-mini {
  background: var(--bg-card);
  border-top: 1.5px solid var(--line);
  padding: 60px 0;
  text-align: center;
}
.v3-order-cta-mini h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.v3-order-cta-mini p {
  font-size: 15px;
  color: var(--dim);
  margin-bottom: 28px;
}
.v3-order-cta-mini__btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* =====================================================
   V2 WARM PALETTE — dark text on cream bg-card elements
   ===================================================== */

/* Review cards */
.v3-rev-card { color: #0e1922; border-color: rgba(14,25,34,0.10); }
.v3-rev-card__name { color: #0e1922; }
.v3-rev-card__city { color: #637b8a; }
.v3-rev-card__text { color: #4a6070; }
.v3-rev-card__obj { color: #637b8a; border-top-color: rgba(14,25,34,0.10); }

/* Calc cards (services / calculator) */
.v3-calc-card { color: #0e1922; border-color: rgba(14,25,34,0.10); }
.v3-calc-card:hover { border-color: rgba(14,25,34,0.18); }
.v3-calc-card__title { color: #0e1922; }
.v3-calc-card__desc { color: #637b8a; }
.v3-calc-card__icon { border-color: rgba(14,25,34,0.12); }
.v3-calc-card__cta { border-top-color: rgba(14,25,34,0.10); }
.v3-calc-card__cta-text { color: #0e1922; }
.v3-calc-card__arr { border-color: rgba(14,25,34,0.18); color: #4a6070; }

/* Quiz cards */
.v3-quiz-card { color: #0e1922; border-color: rgba(14,25,34,0.10); }
.v3-quiz-card:hover { border-color: var(--accent); background: #ece8df; }
.v3-quiz-card__title { color: #0e1922; }
.v3-quiz-card__desc { color: #637b8a; }
.v3-quiz-card__icon { background: rgba(255,90,31,0.09); }
.v3-quiz-card__arr { border-color: rgba(14,25,34,0.18); color: #4a6070; }

/* Prod row hover on dark sections — subtle instead of jarring cream */
.v3-prod-row:hover { background: rgba(255,255,255,0.05); }

/* Cart hover in dark header — cream bg needs dark icon */
.v3-hdr__cart:hover { color: #0e1922; }

/* Cathero — explicit white text over dark photo overlay */
.v3-cathero__eyebrow { color: rgba(255,255,255,0.75); }
.v3-cathero__h1 { color: #fff; }
.v3-cathero__lede { color: rgba(255,255,255,0.7); }
.v3-cathero__specs { border-top-color: rgba(255,255,255,0.25); }
.v3-cathero__spec { border-right-color: rgba(255,255,255,0.25); }
.v3-cathero__spec strong { color: #fff; }
.v3-cathero__spec span { color: rgba(255,255,255,0.65); }

/* Order CTA mini — cream bg, dark text */
.v3-order-cta-mini { border-top-color: rgba(14,25,34,0.10); }
.v3-order-cta-mini h2 { color: #0e1922; }
.v3-order-cta-mini p { color: #637b8a; }

/* Related cards (Также производим) — cream bg, dark text */
.v3-related-card { border-color: rgba(14,25,34,0.10); color: #0e1922; }
.v3-related-card:hover { border-color: var(--accent); background: #ece8df; }
.v3-related-card__name { color: #0e1922; }
.v3-related-card__desc { color: #637b8a; }

/* Form fields inside cream-bg boxes (modal, CTA form, order form) */
.v3-cta__form-wrap .v3-form input,
.v3-cta__form-wrap .v3-form select,
.v3-cta__form-wrap .v3-form textarea,
.v3-modal__box .v3-form input,
.v3-modal__box .v3-form select,
.v3-modal__box .v3-form textarea,
.v3-order-form-wrap .v3-form input,
.v3-order-form-wrap .v3-form select,
.v3-order-form-wrap .v3-form textarea {
  background: rgba(14,25,34,0.05);
  border-color: rgba(14,25,34,0.18);
  color: #0e1922;
}
.v3-cta__form-wrap .v3-form input::placeholder,
.v3-modal__box .v3-form input::placeholder,
.v3-order-form-wrap .v3-form input::placeholder { color: #8a9fad; }
.v3-cta__form-wrap .v3-form select { color: #0e1922; }
.v3-form option { background: #fff; color: #0e1922; }

/* Modal box text (cream bg) */
.v3-modal__box { color: #0e1922; }
.v3-modal__box h2 { color: #0e1922; }
.v3-modal__box p, .v3-modal__box .v3-qz-eyebrow { color: #637b8a; }
.v3-modal__box .v3-qz-title { color: #0e1922; }
.v3-modal__box .v3-qz-label { color: #0e1922; }
.v3-modal__box .v3-qz-choice { color: #0e1922; border-color: rgba(14,25,34,0.18); }
.v3-modal__box .v3-qz-choice:hover { border-color: var(--accent); background: #f0eeea; }
.v3-modal__box .v3-qz-choice__name { color: #0e1922; }
.v3-modal__box .v3-qz-choice__sub { color: #637b8a; }

/* Contacts mobile — uniform background */
@media (max-width: 900px) {
  .v3-contact-block { background: var(--bg-2); border-bottom-color: rgba(255,255,255,0.08); }
}

/* Cart drawer — cream bg needs dark borders/text */
.v3-cart-drawer { border-left-color: rgba(14,25,34,0.12); color: #0e1922; }
.v3-cart-drawer__head { border-bottom-color: rgba(14,25,34,0.10); }
.v3-cart-drawer__title { color: #0e1922; }
.v3-cart-drawer__close { border-color: rgba(14,25,34,0.18); color: #637b8a; }
.v3-cart-item { border-bottom-color: rgba(14,25,34,0.08); }
.v3-cart-item__name { color: #0e1922; }
.v3-cart-item__price { color: #637b8a; }
.v3-cart-item__del { border-color: rgba(14,25,34,0.18); color: #637b8a; }
.v3-cart-drawer__foot { border-top-color: rgba(14,25,34,0.10); }
.v3-cart-empty { color: #637b8a; }

/* CTA strip */
.v3-cta-strip { color: #0e1922; border-color: rgba(14,25,34,0.10); }
.v3-cta-strip__text strong { color: #0e1922; }
.v3-cta-strip__text span { color: #637b8a; }

/* Modal box and form-wrap — form inputs already dark, fix heading inherit */
.v3-modal__box { color: #0e1922; border-color: rgba(14,25,34,0.12); }
.v3-cta__form-wrap { color: #0e1922; border-color: rgba(14,25,34,0.10); }
.v3-cta__form-title { color: #0e1922; }
.v3-cta__form-sub { color: #637b8a; }
.v3-order-form-wrap { color: #0e1922; border-color: rgba(14,25,34,0.10); }

/* Bord cards — cream bg, dark text */
.v3-bord-card { border-color: rgba(14,25,34,0.10); }
.v3-bord-card:hover { border-color: rgba(14,25,34,0.25); }
.v3-bord-card__name { color: #0e1922; }
.v3-bord-card__size { color: #637b8a; }
.v3-bord-card__features li { color: #4a6070; }
.v3-bord-card__price { color: #0e1922; }
.v3-bord-card__price-row { border-top-color: rgba(14,25,34,0.10); }

/* Audience / object-type cards — photo + gradient label */
.v3-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.v3-audience-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.v3-audience-card__img { height: 320px; display: block; }
.v3-audience-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); display: block; }
.v3-audience-card:hover .v3-audience-card__img img { transform: scale(1.07); }
/* Blue-dark gradient overlay via ::after */
.v3-audience-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,12,32,0.88) 0%, rgba(4,12,32,0.35) 42%, transparent 72%);
  transition: opacity 0.4s;
}
.v3-audience-card:hover::after { opacity: 0.85; }
/* Label sits above the overlay */
.v3-audience-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 22px;
  font-size: 19px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  background: linear-gradient(125deg, #ffffff 35%, #9ecbf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}
@media (max-width: 1000px) { .v3-audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .v3-audience-grid { grid-template-columns: repeat(2, 1fr); } }

/* pmodal — white gap between main photo and thumbs */
.pmodal__thumbs-wrap { margin-top: 8px; background: #fff; padding: 10px 14px 12px; }

/* pmodal — sqm input row */
.pmodal__sqm-row {
  display: flex; align-items: stretch; gap: 0;
  margin-bottom: 14px;
  border: 1.5px solid #dedad4;
}
.pmodal__sqm-label {
  font-size: 12px; font-weight: 700; color: #637b8a; text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; flex-shrink: 0;
  padding: 0 14px; display: flex; align-items: center;
  background: #f0eeea; border-right: 1.5px solid #dedad4;
}
.pmodal__sqm-input {
  flex: 1; min-width: 0; height: 46px; padding: 0 14px;
  font-size: 17px; font-weight: 700; color: #0e1922; font-family: inherit;
  background: #fff; border: none; outline: none;
}
.pmodal__sqm-input:focus { box-shadow: inset 0 0 0 2px #E63C00; }
.pmodal__sqm-input.error { box-shadow: inset 0 0 0 2px #E63C00; }
.pmodal__sqm-unit {
  font-size: 14px; font-weight: 700; color: #0e1922;
  display: flex; align-items: center; padding: 0 14px;
  background: #f0eeea; border-left: 1.5px solid #dedad4; flex-shrink: 0;
}

/* Cart checkout step 2 */
.v3-cart-step { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
.v3-cart-checkout-wrap { flex: 1; overflow-y: auto; }
.v3-cart-checkout { padding: 20px; }
.v3-cart-back-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; color: #637b8a; padding: 0; margin-bottom: 20px;
  transition: color var(--tr);
}
.v3-cart-back-btn:hover { color: var(--accent); }
.v3-cart-checkout__title { font-size: 15px; font-weight: 800; color: #0e1922; margin-bottom: 16px; }
.v3-cart-checkout .v3-form input,
.v3-cart-checkout .v3-form select,
.v3-cart-checkout .v3-form textarea {
  width: 100%; box-sizing: border-box; margin-bottom: 10px;
  height: 44px; padding: 0 14px; font-size: 14px; font-family: inherit;
  background: rgba(14,25,34,0.05); border: 1.5px solid rgba(14,25,34,0.15);
  color: #0e1922; outline: none; display: block;
  transition: border-color 0.2s;
}
.v3-cart-checkout .v3-form textarea { height: 80px; padding: 12px 14px; resize: none; }
.v3-cart-checkout .v3-form input::placeholder,
.v3-cart-checkout .v3-form textarea::placeholder { color: #8a9fad; }
.v3-cart-checkout .v3-form input:focus,
.v3-cart-checkout .v3-form textarea:focus { border-color: #E63C00; }
.v3-cart-checkout__ok { text-align: center; padding: 40px 24px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.v3-cart-checkout__ok-ic { font-size: 48px; color: #E63C00; margin-bottom: 16px; }
.v3-cart-checkout__ok-title { font-size: 20px; font-weight: 800; color: #0e1922; margin-bottom: 8px; }
.v3-cart-checkout__ok-sub { font-size: 14px; color: #637b8a; margin-bottom: 24px; }
