/* =========================================================
   PINA HOLOD — WordPress Theme Main Stylesheet
   All base styles extracted from static HTML pages
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1d6d8a;
  --primary-dark:  #154e64;
  --primary-mid:   #2589aa;
  --primary-light: #e8f4f8;
  --accent:        #f0a500;
  --black:         #0f172a;
  --text:          #1e293b;
  --muted:         #64748b;
  --white:         #ffffff;
  --bg:            #f8fafc;
  --border:        #e2e8f0;
  --green:         #16a34a;
  --green-bg:      #dcfce7;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow:        0 4px 24px rgba(29,109,138,.12);
  --shadow-lg:     0 8px 40px rgba(29,109,138,.18);
  --r:             14px;
  --r-sm:          8px;
  --r-lg:          24px;
  --font:          'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; font-size: 15px; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section      { padding: 72px 0; }
.section-alt  { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title  { font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--black); line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-sub    { font-size: 16px; color: var(--muted); margin-top: 8px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r-sm); font: 600 15px/1 var(--font); cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Forms ── */
.f-group { margin-bottom: 14px; }
.f-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font: 14px var(--font); color: var(--text); background: var(--bg); transition: border-color .2s; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.f-privacy { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; }
.f-privacy a { color: var(--primary); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── TOPBAR ── */
.topbar { background: var(--black); color: rgba(255,255,255,.65); font-size: 13px; padding: 8px 0; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar-social { display: flex; align-items: center; gap: 6px; }
.topbar-soc-link { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:6px; color:rgba(255,255,255,.65); transition:color .2s, background .2s; }
.topbar-soc-link:hover { color:#fff; background:rgba(255,255,255,.1); }
.topbar-cities { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.topbar-cities span { color: rgba(255,255,255,.35); }
.topbar-cities a { color: rgba(255,255,255,.65); transition: color .2s; }
.topbar-cities a:hover, .topbar-cities a.is-current { color: #fff; }

/* ── HEADER ── */
.header { background: #fff; border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img  { height: 46px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a { padding: 8px 13px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: var(--r-sm); transition: all .2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--primary); background: var(--primary-light); }
.header-contact { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-size: 17px; font-weight: 700; color: var(--black); letter-spacing: -.3px; }
.header-phone a { color: inherit; }
.header-phone small { display: block; font-size: 11px; font-weight: 400; color: var(--muted); }

/* Mobile nav toggle */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: var(--r-sm); background: #fff; color: var(--text); cursor: pointer; flex-shrink: 0; -webkit-tap-highlight-color: transparent; }
.nav-toggle:hover { border-color: var(--primary); color: var(--primary); }
.nav-toggle .nav-toggle-close { display: none; }
.header.is-nav-open .nav-toggle .nav-toggle-icon { display: none; }
.header.is-nav-open .nav-toggle .nav-toggle-close { display: block; }

/* ── HERO ── */
@keyframes heroGradientShift { 0%, 100% { background-position: 8% 35%; } 50% { background-position: 92% 65%; } }
.hero {
  background: linear-gradient(128deg, #0c3a4d 0%, var(--primary-dark) 18%, var(--primary) 38%, #2486a5 52%, var(--primary-mid) 68%, #4aa8c4 82%, var(--primary-dark) 100%);
  background-size: 100% 100%;
  background-position: 50% 50%;
  animation: none;
  color: #fff; padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before { content:''; position:absolute; z-index:0; pointer-events:none; top:-40%; right:-8%; width:560px; height:560px; background:radial-gradient(circle,rgba(255,255,255,.08) 0%,transparent 68%); border-radius:50%; }
.hero::after  { content:''; position:absolute; z-index:0; pointer-events:none; bottom:-30%; left:-6%; width:420px; height:420px; background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 70%); border-radius:50%; }
@media (prefers-reduced-motion: reduce) { .hero { animation: none; background-size: 100% 100%; background-position: 50% 50%; } .hero-drop { animation: none !important; opacity: 0; } }
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }
.hero-line { position:absolute; top:0; bottom:0; width:1px; background:rgba(255,255,255,.11); }
.hero-drop { position:absolute; left:50%; transform:translateX(-50%); width:3px; height:11px; border-radius:999px; background:linear-gradient(180deg,rgba(255,255,255,.65) 0%,rgba(255,255,255,.2) 55%,rgba(255,255,255,.06) 100%); box-shadow:0 0 10px rgba(255,255,255,.18); animation:heroDropFall 13s linear infinite; }
@keyframes heroDropFall { 0% { top:-8%; opacity:0; } 4% { opacity:.75; } 94% { opacity:.65; } 100% { top:108%; opacity:0; } }
.hero-line:nth-child(1) { left:9%; } .hero-line:nth-child(1) .hero-drop { animation-duration:15s; animation-delay:-3s; }
.hero-line:nth-child(2) { left:31%; } .hero-line:nth-child(2) .hero-drop { animation-duration:11s; animation-delay:-7s; }
.hero-line:nth-child(3) { left:54%; } .hero-line:nth-child(3) .hero-drop { animation-duration:18s; animation-delay:-1s; }
.hero-line:nth-child(4) { left:76%; } .hero-line:nth-child(4) .hero-drop { animation-duration:12.5s; animation-delay:-9s; }
.hero-line:nth-child(5) { left:92%; } .hero-line:nth-child(5) .hero-drop { animation-duration:16s; animation-delay:-5s; }
.hero-in { display:grid; grid-template-columns:1fr 400px; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:6px 14px; font-size:13px; font-weight:500; margin-bottom:20px; backdrop-filter:blur(4px); }
.hero-title { font-size:clamp(34px,4.5vw,54px); font-weight:800; line-height:1.12; letter-spacing:-1.5px; margin-bottom:20px; }
.hero-title em { font-style:normal; position:relative; }
.hero-title em::after { content:''; position:absolute; bottom:2px; left:0; right:0; height:3px; background:rgba(255,255,255,.4); border-radius:2px; }
.hero-desc { font-size:17px; color:rgba(255,255,255,.85); line-height:1.65; margin-bottom:32px; max-width:480px; }
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.hero-stats { display:flex; gap:32px; margin-top:48px; padding-top:32px; border-top:1px solid rgba(255,255,255,.15); }
.hero-stat-num   { font-size:28px; font-weight:800; color:#fff; }
.hero-stat-label { font-size:12px; color:rgba(255,255,255,.7); margin-top:2px; }
.hero-img {
  border-radius: 0;
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 460px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.hero-img--parallax {
  overflow: visible;
}
.hero-img img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-img--parallax img {
  will-change: transform;
  transition: transform 0.2s ease-out;
}


/* ── TRUST BAR ── */
.trust-bar { background:var(--bg); border-bottom:1px solid var(--border); padding:18px 0; }
.trust-in { display:flex; align-items:center; justify-content:space-around; gap:16px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:12px; }
.trust-icon { width:40px; height:40px; background:var(--primary-light); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.trust-icon svg { width:20px; height:20px; stroke:var(--primary); fill:none; stroke-width:1.8; }
.trust-text strong { display:block; font-size:14px; font-weight:700; color:var(--black); }
.trust-text span   { font-size:12px; color:var(--muted); }

/* ── CATALOG / PRODUCTS GRID ── */
.catalog-top { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:32px; }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.product-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); overflow:hidden; transition:all .3s; position:relative; }
.product-card:hover { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.pc-badges { position:absolute; top:12px; left:12px; z-index:3; display:flex; flex-direction:row; flex-wrap:wrap; gap:4px; max-width:calc(100% - 24px); }
.pc-badge { background:var(--primary); color:#fff; font-size:11px; font-weight:700; padding:4px 10px; border-radius:100px; display:inline-block; white-space:nowrap; }
.pc-badge--green  { background:var(--green); }
.pc-badge--blue   { background:var(--primary); }
.pc-badge--wifi   { background:#0284c7; }
.pc-badge--accent { background:var(--accent); color:var(--black); }
.pc-badge--muted { background:#64748b; color:#fff; }
.pdp-gallery-badge--out { background:#64748b; }
.pdp-price--na { font-size:18px; font-weight:700; color:var(--muted); letter-spacing:0; }
.pc-na, .prod-card-price--na { font-size:14px; font-weight:700; color:var(--muted); }
.pc-img { aspect-ratio:1; background:var(--bg); display:flex; align-items:center; justify-content:center; padding:20px; overflow:hidden; }
.pc-img img { max-height:190px; width:auto; object-fit:contain; transition:transform .3s; }
.product-card:hover .pc-img img { transform:scale(1.06); }
.pc-body { padding:16px; }
.pc-brand { font-size:11px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:5px; }
.pc-name, h2.pc-name  { font-size:14px; font-weight:600; color:var(--black); line-height:1.4; margin:0 0 10px; }

/* Каталог: фильтр слева, товары справа */
.catalog-page-section .catalog-layout { display:grid; grid-template-columns:minmax(220px,280px) 1fr; gap:32px; align-items:start; }
.catalog-filters-aside { position:sticky; top:90px; }
.catalog-filters-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:18px 16px; box-shadow:var(--shadow-sm); }
.catalog-filter-group { margin-bottom:16px; }
.catalog-filter-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--muted); margin:0 0 8px; }
.catalog-filter-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.catalog-input, .catalog-select { width:100%; padding:9px 10px; border:1px solid var(--border); border-radius:var(--r-sm); font:14px var(--font); background:#fff; box-sizing:border-box; }
.catalog-check { display:flex; align-items:center; gap:8px; font-size:14px; margin:0 0 6px; cursor:pointer; }
.catalog-check input { width:16px; height:16px; accent-color:var(--primary); flex-shrink:0; }
.btn-block { width:100%; justify-content:center; }
.catalog-main-col { min-width:0; }

/* Каталог: три карточки в ряд в колонке справа от фильтров */
.catalog-page-section .catalog-main-col .catalog-products-grid.products-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  align-items:stretch;
}
@media (max-width:1200px) {
  .catalog-page-section .catalog-main-col .catalog-products-grid.products-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}
@media (max-width:640px) {
  .catalog-page-section .catalog-main-col .catalog-products-grid.products-grid {
    grid-template-columns:1fr;
  }
}

/* Ссылки внутри карточки каталога (без оверлей-ссылки на всю карточку) */
a.pc-img-link {
  display:block;
  text-decoration:none;
  color:inherit;
  outline:none;
  border-radius:var(--r) var(--r) 0 0;
}
a.pc-img-link:focus-visible {
  box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--primary);
}
.pc-name { margin:0 0 10px; }
.pc-name-link {
  text-decoration:none;
  color:var(--black);
  font:inherit;
  transition:color .2s;
  outline:none;
}
.pc-name-link:hover { color:var(--primary); }
.pc-name-link:focus-visible {
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Оверлей-ссылка на всю карточку (см. related в single-product) */
.product-card { position:relative; }
.product-card > a.product-card-hit { position:absolute; inset:0; z-index:1; border-radius:inherit; }
.product-card > a.product-card-hit ~ .product-card-in { position:relative; z-index:0; }
.product-card > a.product-card-hit ~ .product-card-in .pc-body,
.product-card > a.product-card-hit ~ .product-card-in .pc-img,
.product-card > a.product-card-hit ~ .product-card-in .pc-actions { position:relative; z-index:2; }
.product-card > a.product-card-hit ~ .product-card-in .pc-img { z-index:0; }
.prod-card.product-card--linkable { position:relative; }
.prod-card.product-card--linkable > .product-card-hit { position:absolute; inset:0; z-index:1; border-radius:inherit; }
.prod-card.product-card--linkable .prod-card-in { position:relative; z-index:0; }
.prod-card.product-card--linkable .prod-card-footer { position:relative; z-index:2; }

/* Главная / города: плитки категорий (без кв/дом/офис) — два ряда: 5 + 4 */
.svc-compact-wrap { display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.svc-compact-row { display:grid; gap:10px; }
.svc-compact-row--5 { grid-template-columns:repeat(5, minmax(0, 1fr)); }
.svc-compact-row--4 { grid-template-columns:repeat(4, minmax(0, 1fr)); }
.svc-tile { display:block; border:1px solid var(--border); border-radius:var(--r-sm); overflow:hidden; background:#fff; text-decoration:none; color:inherit; transition:box-shadow .2s, border-color .2s, transform .2s; min-width:0; }
.svc-tile:hover { border-color:var(--primary); box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.svc-tile-img { height:70px; background-size:cover; background-position:center; }
.svc-tile-body { padding:8px 9px 10px; }
.svc-tile-title { font:700 12px/1.25 var(--font); color:var(--black); }
.svc-tile-desc { font:12px/1.3 var(--font); color:var(--muted); margin-top:2px; }
@media (max-width: 1100px) {
  .svc-compact-row--5 { grid-template-columns:repeat(3, minmax(0, 1fr)); }
  .svc-compact-row--4 { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .svc-compact-row--5, .svc-compact-row--4 { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:900px) {
  .catalog-page-section .catalog-layout { grid-template-columns:1fr; }
  .catalog-filters-aside { position:static; }
}
.pc-specs { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:14px; }
.pc-area-pills { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; position:relative; z-index:3; }
.pc-pill { padding:5px 10px; border:1.5px solid var(--border); border-radius:100px; background:#fff; font:600 11px var(--font); cursor:pointer; color:var(--text); transition:all .2s; line-height:1.2; }
.pc-pill:hover:not(:disabled) { border-color:var(--primary); color:var(--primary); }
.pc-pill.is-on { border-color:var(--primary); background:var(--primary-light); color:var(--primary); }
button.pc-pill:disabled,
button.pc-pill[disabled] { opacity:1; cursor:default; }
.spec-tag { font-size:11px; font-weight:500; color:var(--primary); background:var(--primary-light); padding:3px 8px; border-radius:100px; }
.pc-partners { display:flex; align-items:center; gap:6px; margin-bottom:14px; }
.pc-partner-logo { height:22px; padding:3px 8px; background:#f5f5f5; border-radius:4px; font-size:11px; font-weight:700; color:var(--primary); display:flex; align-items:center; border:1px solid #eee; }
.pc-partner-logo--long { height:auto; min-height:22px; max-width:132px; font-size:9px; line-height:1.15; text-align:center; white-space:normal; padding:4px 6px; }
.pdp-install-extra { display:flex; align-items:center; gap:8px; margin-top:10px; padding-top:10px; border-top:1px solid rgba(29,109,138,.15); }
.installment-badge { background:var(--primary); color:#fff; font-size:11px; font-weight:800; padding:3px 9px; border-radius:4px; white-space:nowrap; }
.installment-note { font-size:13px; color:var(--text); }
.installment-note strong { color:var(--primary); }
.pc-price-row { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:14px; }
.pc-price     { font-size:22px; font-weight:800; color:var(--black); }
.pc-price-sub { font-size:12px; color:var(--muted); }
.pc-actions { display:flex; gap:8px; align-items:stretch; }
.btn-buy { flex:1; padding:11px 14px; background:var(--primary); color:#fff; border:none; border-radius:var(--r-sm); font:600 14px var(--font); cursor:pointer; transition:background .2s; text-align:center; }
.btn-buy:hover { background:var(--primary-dark); }
.gift-toggle { flex:1; display:flex; align-items:center; justify-content:center; padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--r-sm); cursor:pointer; font:600 14px var(--font); color:var(--muted); text-decoration:none; transition:all .2s; text-align:center; }
.gift-toggle:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-light); }
.catalog-footer { text-align:center; margin-top:40px; }

/* Catalog filters */
.catalog-filters { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.filter-btn { padding:8px 18px; border:1.5px solid var(--border); border-radius:100px; background:#fff; font:500 13px var(--font); cursor:pointer; color:var(--text); transition:all .2s; }
.filter-btn:hover, .filter-btn.active { background:var(--primary); border-color:var(--primary); color:#fff; }

/* ── SERVICES ── */
.svc-new-section { padding:72px 0; }
.svc-row-primary { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:20px; }
.svc-row-secondary { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.svc-card-primary { background:linear-gradient(160deg,rgba(21,78,100,.82) 0%,rgba(29,109,138,.72) 100%),center/cover no-repeat; color:#fff; border-radius:var(--r-lg); padding:32px 28px; position:relative; overflow:hidden; transition:all .3s; display:flex; flex-direction:column; gap:12px; text-decoration:none; }
.svc-card-primary::before { content:''; position:absolute; top:-30%; right:-15%; width:200px; height:200px; background:rgba(255,255,255,.07); border-radius:50%; }
.svc-card-primary:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(29,109,138,.35); }
.svc-primary-title { font-size:20px; font-weight:800; color:#fff; line-height:1.2; }
.svc-primary-desc  { font-size:14px; color:rgba(255,255,255,.82); line-height:1.6; flex:1; }
.svc-primary-link  { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; color:rgba(255,255,255,.9); background:rgba(255,255,255,.15); border-radius:100px; padding:6px 14px; width:fit-content; transition:background .2s; }
.svc-card-primary:hover .svc-primary-link { background:rgba(255,255,255,.25); }
.svc-card-secondary { background:#fff; border:1.5px solid var(--border); border-radius:var(--r); padding:20px 14px; text-align:center; transition:all .3s; display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; color:var(--text); }
.svc-card-secondary:hover { border-color:var(--primary); box-shadow:var(--shadow); transform:translateY(-3px); color:var(--primary); }
.svc-sec-img { width:100%; height:72px; border-radius:var(--r-sm); margin-bottom:10px; background-size:cover; background-position:center; background-repeat:no-repeat; }
.svc-sec-title { font-size:13px; font-weight:700; color:var(--black); line-height:1.3; }
.svc-card-secondary:hover .svc-sec-title { color:var(--primary); }
.svc-sec-desc  { font-size:12px; color:var(--muted); line-height:1.4; }
.svc-sec-price { font-size:12px; font-weight:700; color:var(--primary); }

/* Услуги: две колонки (текст + фото); на мобильных — фото на всю ширину сверху */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.svc-split__content { min-width: 0; }
.svc-split__visual {
  min-height: 280px;
  border-radius: 20px;
  background-repeat: no-repeat;
  width: 100%;
}

.svc-card-secondary.accent-green  { border-color:#dcfce7; } .svc-card-secondary.accent-green:hover  { border-color:#16a34a; }
.svc-card-secondary.accent-gift   { border-color:#fce7f3; } .svc-card-secondary.accent-gift:hover   { border-color:#db2777; }
.svc-card-secondary.accent-budget { border-color:#fef3c7; } .svc-card-secondary.accent-budget:hover { border-color:#d97706; }

/* ── INSTALLMENT ── */
.installment { background:linear-gradient(140deg,var(--primary-dark) 0%,var(--primary) 100%); color:#fff; padding:72px 0; }
.install-in { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.install-label { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); border-radius:100px; padding:5px 14px; font-size:13px; font-weight:500; margin-bottom:16px; }
.install-title { font-size:clamp(26px,3vw,38px); font-weight:800; line-height:1.2; margin-bottom:14px; }
.install-desc  { font-size:16px; color:rgba(255,255,255,.82); line-height:1.7; margin-bottom:28px; }
.install-partners-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; color:rgba(255,255,255,.55); margin-bottom:10px; }
.install-partners { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }
.partner-chip { background:#fff; border-radius:6px; padding:7px 14px; font-size:14px; font-weight:800; color:#c62828; display:flex; align-items:center; gap:7px; }
.partner-chip svg { width:18px; height:18px; }
.install-numbers { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.install-num-card { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); backdrop-filter:blur(8px); border-radius:var(--r); padding:22px 20px; }
.install-num { font-size:38px; font-weight:800; color:#fff; line-height:1; }
.install-num-label { font-size:13px; color:rgba(255,255,255,.75); margin-top:6px; }

/* ── GIFT ── */
.gift-section { padding:72px 0; background:var(--bg); }
.gift-in { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.gift-visual { background:linear-gradient(135deg,#dceef7 0%,#c8e5f2 100%); border-radius:var(--r-lg); aspect-ratio:1.15; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.gift-visual-tag { position:absolute; top:20px; right:20px; background:var(--primary); color:#fff; padding:7px 16px; border-radius:100px; font-size:13px; font-weight:700; }
.gift-chip { display:inline-flex; align-items:center; gap:6px; background:var(--primary-light); color:var(--primary); border-radius:100px; padding:5px 14px; font-size:13px; font-weight:600; margin-bottom:16px; }
.gift-content h2 { font-size:clamp(24px,3vw,36px); font-weight:800; color:var(--black); line-height:1.2; margin-bottom:14px; }
.gift-content > p { font-size:16px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.gift-list { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.gift-list li { display:flex; align-items:center; gap:10px; font-size:15px; color:var(--text); }
.gift-list li::before { content:'✓'; width:22px; height:22px; background:var(--primary); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0; }
.gift-ctas { display:flex; gap:12px; flex-wrap:wrap; }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.why-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:28px; transition:all .3s; }
.why-card:hover { border-color:var(--primary); box-shadow:var(--shadow); }
.why-num  { font-size:42px; font-weight:800; color:var(--primary-light); line-height:1; margin-bottom:10px; }
.why-card h4 { font-size:16px; font-weight:700; color:var(--black); margin-bottom:8px; }
.why-card p  { font-size:14px; color:var(--muted); line-height:1.6; }

/* ── PROCESS ── */
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process-steps::before { content:''; position:absolute; top:35px; left:12.5%; right:12.5%; height:2px; background:var(--border); z-index:0; }
.process-step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-circle { width:70px; height:70px; background:var(--primary); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:800; margin:0 auto 18px; border:4px solid #fff; box-shadow:0 0 0 2px var(--primary); }
.process-step h4 { font-size:15px; font-weight:700; color:var(--black); margin-bottom:8px; }
.process-step p  { font-size:13px; color:var(--muted); line-height:1.6; }

/* ── REVIEWS ── */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:26px; }
.stars { display:flex; gap:3px; margin-bottom:12px; }
.stars svg { width:16px; height:16px; fill:#f59e0b; }
.review-text { font-size:14px; color:var(--text); line-height:1.7; margin-bottom:16px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-av { width:40px; height:40px; border-radius:50%; background:var(--primary-light); display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; color:var(--primary); flex-shrink:0; }
.review-name { font-weight:600; font-size:14px; color:var(--black); }
.review-date { font-size:12px; color:var(--muted); }

/* ── COVERAGE ── */
.coverage-in { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.coverage-cities { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cov-city { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:18px 20px; transition:all .2s; }
.cov-city:hover { border-color:var(--primary); box-shadow:var(--shadow-sm); }
.cov-city a { display:flex; align-items:center; gap:14px; }
.city-dot { width:12px; height:12px; background:var(--primary); border-radius:50%; flex-shrink:0; }
.city-main .city-dot { background:var(--accent); width:16px; height:16px; }
.cov-city strong { display:block; font-size:15px; font-weight:700; color:var(--black); }
.cov-city small  { font-size:12px; color:var(--muted); }
.map-box { background:var(--primary-light); border-radius:var(--r-lg); aspect-ratio:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; border:1px solid var(--border); color:var(--muted); font-size:14px; }
.map-box svg { width:48px; height:48px; stroke:var(--primary); fill:none; opacity:.5; stroke-width:1.5; }

/* ── CTA BANNER ── */
.cta-banner { background:var(--black); color:#fff; padding:72px 0; }
.cta-in { display:grid; grid-template-columns:1fr 420px; gap:60px; align-items:center; }
.cta-title { font-size:clamp(26px,3.5vw,44px); font-weight:800; line-height:1.2; margin-bottom:14px; }
.cta-title span { color:var(--primary-mid); }
.cta-desc { font-size:16px; color:rgba(255,255,255,.65); line-height:1.7; margin-bottom:32px; }
.cta-phone { font-size:clamp(22px,2.5vw,30px); font-weight:800; color:#fff; margin-bottom:12px; }
.cta-phone a { color:inherit; }
.cta-form { background:#fff; border-radius:var(--r-lg); padding:30px; }
.cta-form h3 { font-size:18px; font-weight:700; color:var(--black); margin-bottom:18px; }
.cta-strip { background:linear-gradient(128deg,#0c3a4d,var(--primary),#2589aa); color:#fff; }

/* ── FOOTER ── */
.footer { background:var(--black); color:rgba(255,255,255,.6); padding:56px 0 28px; border-top:1px solid rgba(255,255,255,.18); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px; margin-bottom:48px; }
.footer-logo { filter:brightness(0) invert(1); height:38px; width:auto; margin-bottom:14px; }
.footer-about { font-size:14px; color:rgba(255,255,255,.45); line-height:1.7; margin-bottom:18px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:34px; height:34px; background:rgba(255,255,255,.08); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; transition:all .2s; color:rgba(255,255,255,.6); }
.footer-social a:hover { background:var(--primary); color:#fff; }
.footer-col h4 { font-size:12px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:.8px; margin-bottom:14px; }
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col a { font-size:14px; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-col a:hover { color:#fff; }
.footer-phone { font-size:20px; font-weight:700; color:#fff; margin-bottom:4px; }
.footer-phone a { color:inherit; }
.footer-email { font-size:14px; font-weight:500; margin-top:8px; }
.footer-email a { color:rgba(255,255,255,.9); text-decoration:underline; text-decoration-color:rgba(255,255,255,.3); }
.footer-email a:hover { color:#fff; }
.footer-regions { display:flex; flex-wrap:wrap; gap:7px; }
.region-link { font-size:13px; color:rgba(255,255,255,.5); background:rgba(255,255,255,.06); padding:4px 12px; border-radius:100px; transition:all .2s; }
.region-link:hover, .region-link.is-current { color:#fff; background:var(--primary); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:22px; display:flex; flex-direction:column; align-items:stretch; gap:0; font-size:13px; }
.footer-bottom-line { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; width:100%; }
.footer-cookie-bar {
  width: 100%;
  margin-top: 20px;
  padding: 16px 0 20px;
  background: linear-gradient(180deg, #f4fafc 0%, #e2f1f7 100%);
  border-top: 1px solid rgba(73, 182, 214, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.footer-cookie-bar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  text-align: center;
}
.footer-cookie-bar__link {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-cookie-bar__link:hover {
  color: var(--primary);
  border-bottom-color: rgba(29, 109, 138, 0.35);
}
.footer-cookie-bar__link--accent {
  color: var(--primary);
  font-weight: 700;
}
.footer-cookie-bar__link--accent:hover {
  color: #155e75;
}
.footer-cookie-bar__sep {
  color: #94a3b8;
  font-weight: 700;
  user-select: none;
}
.footer-legal-block { margin-top:18px; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); width:100%; }
.footer-legal-title { font-size:11px; font-weight:700; letter-spacing:0.5px; text-transform:uppercase; color:rgba(255,255,255,.65); margin:0 0 10px; }
.footer-legal { margin:0; padding:0; font-size:12px; line-height:1.6; color:rgba(255,255,255,.58); max-width:100%; display:flex; flex-wrap:wrap; gap:10px 20px; }
.footer-legal span { display:inline-block; }
/* Реквизиты под иконками — столбик, в колонке бренда */
.footer-legal-block--stack { margin-top:20px; }
.footer-legal--col { flex-direction:column; flex-wrap:nowrap; align-items:flex-start; gap:6px; }
.footer-legal--col span { display:block; max-width:100%; }

/* ── MODAL ── */
.modal-ov, .modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:1000; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-ov.open, .modal-overlay.open { display:flex; }
.modal-box, .modal { background:#fff; border-radius:var(--r-lg); padding:36px; max-width:460px; width:100%; position:relative; box-shadow:0 24px 80px rgba(0,0,0,.3); max-height:90vh; overflow-y:auto; }
.modal-box h3, .modal h3 { font-size:22px; font-weight:800; color:var(--black); margin-bottom:5px; }
.modal-box > p, .modal > p { font-size:14px; color:var(--muted); margin-bottom:20px; }
.modal-close { position:absolute; top:16px; right:16px; width:32px; height:32px; background:var(--bg); border:none; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--muted); transition:all .2s; }
.modal-close:hover { background:var(--border); color:var(--black); }
.modal-success { display:none; text-align:center; padding:16px 0; }
.modal-success.show { display:block; }
.modal-success-icon { font-size:52px; margin-bottom:14px; }
.modal-success h3 { font-size:20px; font-weight:800; color:var(--black); margin-bottom:8px; }
.modal-success p { font-size:14px; color:var(--muted); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { background:var(--bg); border-bottom:1px solid var(--border); padding:10px 0; }
.breadcrumbs { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--muted); flex-wrap:wrap; }
.breadcrumbs a { color:var(--muted); transition:color .2s; }
.breadcrumbs a:hover { color:var(--primary); }
.breadcrumbs span { color:var(--border); }

/* ── PDP — PRODUCT DETAIL ── */
.pdp-page { padding:28px 0 56px; background:var(--bg); }
.pdp-page .container { min-width: 0; max-width: 100%; }
.pdp-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.2fr) 280px; gap:28px; align-items:start; min-width: 0; }
.pdp-grid > .pdp-gallery,
.pdp-grid > .pdp-info,
.pdp-grid > .pdp-buy { min-width: 0; max-width: 100%; }

/* Gallery col */
.pdp-gallery { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:24px; box-shadow:var(--shadow-sm); }
.pdp-gallery-badge { display:inline-block; background:var(--primary); color:#fff; font-size:11px; font-weight:700; padding:4px 10px; border-radius:100px; margin-bottom:14px; }
/* — карусель (несколько фото, набор снимков меняется при смене цвета) — */
.pdp-carousel { width:100%; max-width:100%; min-width:0; }
.pdp-carousel-bounds { position:relative; width:100%; max-width:100%; min-width:0; overflow:hidden; }
.pdp-carousel-viewport { position:relative; width:100%; aspect-ratio:1; background:var(--bg); border-radius:var(--r-sm); overflow:hidden; }
.pdp-carousel-track { display:flex; height:100%; transition:transform 0.38s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
.pdp-carousel-slide { flex:0 0 100%; min-width:0; display:flex; align-items:center; justify-content:center; }
.pdp-carousel-imgwrap { display:flex; align-items:center; justify-content:center; width:100%; height:100%; padding:24px; box-sizing:border-box; }
.pdp-carousel-viewport .pdp-carousel-imgwrap img { cursor:zoom-in; }
.pdp-carousel-imgwrap img { max-height:min(300px,55vw); max-width:100%; width:auto; object-fit:contain; transition:transform 0.35s ease; }
.pdp-carousel-bounds:hover .pdp-carousel-imgwrap img { transform:scale(1.04); }
.pdp-carousel-arrow { position:absolute; top:50%; z-index:3; transform:translateY(-50%); width:40px; height:40px; min-width:40px; min-height:40px; display:flex; align-items:center; justify-content:center; border:none; border-radius:50%; background:rgba(255,255,255,.95); color:var(--primary); box-shadow:0 1px 8px rgba(0,0,0,.12); cursor:pointer; transition:background 0.2s,color 0.2s,box-shadow 0.2s; }
.pdp-carousel-arrow:hover:not([hidden]):not([disabled]) { background:var(--primary); color:#fff; }
.pdp-carousel-arrow[disabled] { opacity:0.4; cursor:default; }
.pdp-carousel-arrow--prev { left:8px; }
.pdp-carousel-arrow--next { right:8px; }
.pdp-carousel-dots { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-top:12px; }
.pdp-dot { width:8px; height:8px; min-width:8px; min-height:8px; border-radius:50%; border:0; padding:0; background:var(--border); cursor:pointer; transition:transform 0.2s,background 0.2s; }
.pdp-dot.is-active { background:var(--primary); transform:scale(1.25); }
.pdp-thumbs { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.pdp-thumb { width:72px; height:72px; border:2px solid var(--border); border-radius:var(--r-sm); background:var(--bg); display:flex; align-items:center; justify-content:center; cursor:pointer; overflow:hidden; transition:border-color 0.2s; flex-shrink:0; }
.pdp-thumb.active, .pdp-thumb:hover { border-color:var(--primary); }
.pdp-thumb img { max-width:100%; max-height:100%; object-fit:contain; padding:6px; }
.pdp-color-hint { font-size:12px; color:var(--muted); margin-top:8px; line-height:1.4; }

/* PDP — полноэкранный просмотр фото */
.pdp-lightbox { position:fixed; inset:0; z-index:10050; display:flex; align-items:stretch; justify-content:stretch; box-sizing:border-box; }
.pdp-lightbox[hidden] { display:none !important; }
.pdp-lightbox-layer { position:absolute; inset:0; background:rgba(0,0,0,.9); cursor:pointer; }
.pdp-lightbox-frame { position:relative; flex:1; display:flex; align-items:center; justify-content:center; padding:max(48px,env(safe-area-inset-top)) max(56px,env(safe-area-inset-right)) max(48px,env(safe-area-inset-bottom)) max(56px,env(safe-area-inset-left)); pointer-events:none; z-index:1; box-sizing:border-box; }
.pdp-lightbox-frame > * { pointer-events:auto; }
.pdp-lightbox-stage { max-width:100%; max-height:100%; display:flex; align-items:center; justify-content:center; }
.pdp-lightbox-stage img { max-width:100%; max-height:calc(100vh - 96px); max-height:calc(100dvh - 96px); width:auto; height:auto; object-fit:contain; vertical-align:middle; }
.pdp-lightbox-close { position:fixed; top:max(10px,env(safe-area-inset-top)); right:max(10px,env(safe-area-inset-right)); z-index:3; width:44px; height:44px; border-radius:50%; border:0; padding:0; background:rgba(255,255,255,.15); color:#fff; font-size:30px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.pdp-lightbox-close:hover { background:rgba(255,255,255,.28); }
.pdp-lightbox-arrow { position:fixed; top:50%; transform:translateY(-50%); z-index:3; width:48px; height:48px; border:none; border-radius:50%; background:rgba(255,255,255,.15); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background 0.2s; }
.pdp-lightbox-arrow:hover:not([hidden]) { background:rgba(255,255,255,.28); }
.pdp-lightbox-arrow--prev { left:max(8px,env(safe-area-inset-left)); }
.pdp-lightbox-arrow--next { right:max(8px,env(safe-area-inset-right)); }
.pdp-lightbox-arrow[disabled] { opacity:0.35; cursor:default; }

/* Info col */
.pdp-info { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:28px; box-shadow:var(--shadow-sm); }
.pdp-brand { font-size:12px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.6px; margin-bottom:4px; }
.pdp-title { font-size:clamp(20px,2.5vw,26px); font-weight:800; color:var(--black); margin-bottom:12px; line-height:1.25; overflow-wrap:anywhere; word-break:break-word; }
.pdp-feat-row { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; min-width:0; max-width:100%; }
.feat-chip { padding:5px 11px; background:var(--primary-light); color:var(--primary); border-radius:100px; font-size:12px; font-weight:600; }
.pdp-desc { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.pdp-short-desc { font-size:14px; color:var(--text); line-height:1.65; margin:0 0 16px; }
.pdp-more-specs { display:inline-block; margin-top:4px; font-size:13px; font-weight:600; color:var(--primary); text-decoration:underline; text-underline-offset:3px; cursor:pointer; border:0; background:none; padding:0; font-family:inherit; }
.pdp-more-specs:hover { color:var(--primary-mid); }
.pdp-tab-long { font-size:15px; line-height:1.75; color:var(--text); min-width:0; max-width:100%; overflow-wrap:anywhere; }
.pdp-tab-long p { margin-bottom:12px; }
.pdp-tab-long ul { margin:0 0 12px 1.1em; padding:0; }
.pdp-tab-long img,
.pdp-tab-long video,
.pdp-long-desc img,
.pdp-long-desc video { max-width:100%; height:auto; }
.pdp-tab-long iframe,
.pdp-long-desc iframe { max-width:100%; }
.pdp-tab-long pre,
.pdp-long-desc pre { max-width:100%; overflow-x:auto; }
.specs-onliner-wrap { overflow-x:auto; margin-top:4px; max-width:100%; -webkit-overflow-scrolling:touch; }
.specs-table--onliner { width:100%; min-width:min(100%, 280px); }
.specs-table--onliner td:first-child { width:42%; color:var(--muted); font-size:14px; vertical-align:top; }
.specs-table--onliner td:last-child { font-size:14px; font-weight:500; color:var(--black); }

/* Pickers */
.pdp-pickers { margin-bottom:18px; padding-bottom:18px; border-bottom:1px solid var(--border); }
.pdp-picker-group { margin-bottom:16px; }
.pdp-picker-group:last-child { margin-bottom:0; }
.pdp-picker-label { font-size:11px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.55px; margin-bottom:8px; }
.pdp-pill-row { display:flex; flex-wrap:wrap; gap:8px; }
.pdp-pill { padding:8px 14px; border:1.5px solid var(--border); border-radius:100px; background:#fff; font:600 13px var(--font); cursor:pointer; color:var(--text); transition:all .2s; }
.pdp-pill:hover { border-color:var(--primary); color:var(--primary); }
.pdp-pill.is-on { border-color:var(--primary); background:var(--primary-light); color:var(--primary); }
button.pdp-pill:disabled,
button.pdp-pill[disabled] { opacity:1; cursor:default; color:var(--primary); }
.pdp-color-row { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.pdp-color-swatch { width:44px; height:44px; border-radius:50%; border:2px solid var(--border); cursor:pointer; transition:all .2s; flex-shrink:0; padding:0; }
.pdp-color-swatch:hover { transform:scale(1.06); }
.pdp-color-swatch.is-on { box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--primary); border-color:transparent; }

/* Spec preview */
.pdp-spec-preview { display:grid; grid-template-columns:1fr 1fr; gap:8px; background:var(--bg); border-radius:var(--r-sm); padding:14px; }
.spec-pv { display:flex; flex-direction:column; gap:2px; min-width:0; }
.spec-pv span { font-size:11px; color:var(--muted); }
.spec-pv strong { font-size:13px; font-weight:700; color:var(--black); overflow-wrap:anywhere; word-break:break-word; }

/* Buy col */
.pdp-buy { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:24px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:14px; position:sticky; top:80px; }
.pdp-price { font-size:28px; font-weight:800; color:var(--black); letter-spacing:-.5px; }
.pdp-inst  { font-size:13px; color:var(--muted); margin-top:-8px; }
.pdp-price-block { background:var(--primary-light); border-radius:var(--r-sm); padding:16px 18px; margin-bottom:4px; }
.pdp-price-block .pdp-price { font-size:36px; }
.pdp-price-currency { font-size:22px; font-weight:700; color:var(--primary); }
.btn-buy-main { display:flex; align-items:center; justify-content:center; width:100%; padding:15px 20px; background:var(--primary); color:#fff; border:none; border-radius:var(--r-sm); font:700 16px var(--font); cursor:pointer; transition:all .2s; gap:8px; }
.btn-buy-main:hover { background:var(--primary-dark); transform:translateY(-1px); box-shadow:var(--shadow); }
.pdp-gift-check { display:flex; align-items:center; gap:8px; cursor:pointer; user-select:none; }
.pdp-gift-check input[type=checkbox] { width:16px; height:16px; accent-color:var(--primary); cursor:pointer; flex-shrink:0; }
.pdp-gift-check span { font-size:12px; color:var(--muted); }
.pdp-gift-msg { display:none; }
.pdp-gift-msg textarea { width:100%; padding:10px 12px; border:1.5px solid var(--border); border-radius:var(--r-sm); font:12px/1.4 var(--font); color:var(--text); resize:vertical; min-height:80px; transition:border-color .2s; }
.pdp-gift-msg textarea::placeholder { font-size:12px; line-height:1.4; color:var(--muted); }
.pdp-gift-msg textarea:focus { outline:none; border-color:var(--primary); }
.pdp-phone-link { display:flex; align-items:center; justify-content:center; gap:8px; padding:10px; border:1.5px solid var(--border); border-radius:var(--r-sm); font:600 14px var(--font); color:var(--primary); transition:all .2s; }
.pdp-phone-link:hover { background:var(--primary-light); }

/* Quick specs */
.pdp-qspecs { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; margin-bottom:20px; }
.pdp-qspec { background:var(--bg); padding:11px 14px; border-radius:var(--r-sm); border:1px solid var(--border); }
.pdp-qspec-lbl { font-size:11px; color:var(--muted); font-weight:500; margin-bottom:3px; }
.pdp-qspec-val { font-size:14px; font-weight:600; color:var(--black); }

/* Delivery info in pdp */
.pdp-delivery { display:flex; flex-direction:column; gap:8px; padding-top:16px; border-top:1px solid var(--border); }
.pdp-del-row { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--text); }
.pdp-del-icon { width:32px; height:32px; background:var(--primary-light); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--primary); }

/* Tabs */
.pdp-tabs-section { margin-top:32px; min-width:0; max-width:100%; }
.tab-nav { display:flex; gap:0; border-bottom:2px solid var(--border); margin-bottom:0; overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; width:100%; max-width:100%; min-width:0; box-sizing:border-box; }
.tab-nav::-webkit-scrollbar { display:none; }
.tab-nav button { padding:13px 22px; font:600 14px/1 var(--font); cursor:pointer; border:none; background:none; color:var(--muted); border-bottom:2px solid transparent; margin-bottom:-2px; white-space:nowrap; transition:all .2s; border-radius:var(--r-sm) var(--r-sm) 0 0; }
.tab-nav button:hover { color:var(--primary); background:var(--primary-light); }
.tab-nav button.active { color:var(--primary); border-bottom-color:var(--primary); background:var(--primary-light); }
.tab-content { background:#fff; border:1px solid var(--border); border-top:none; border-radius:0 0 var(--r) var(--r); padding:32px; min-width:0; max-width:100%; box-sizing:border-box; }

/* Specs table */
.specs-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.specs-group { margin-bottom:28px; }
.specs-group-title { font-size:13px; font-weight:700; color:var(--primary); text-transform:uppercase; letter-spacing:.6px; margin-bottom:12px; padding-bottom:8px; border-bottom:1px solid var(--border); }
.specs-table { width:100%; border-collapse:collapse; }
.specs-table tr:nth-child(even) td { background:var(--bg); }
.specs-table td { padding:10px 14px; font-size:14px; border-bottom:1px solid var(--border); }
.specs-table td:first-child { color:var(--muted); width:55%; font-weight:500; }
.specs-table td:last-child { color:var(--black); font-weight:600; }

/* Similar products */
.similar-section { padding:56px 0; background:var(--bg); }
.section-hd { display:flex; align-items:center; justify-content:space-between; margin-bottom:32px; gap:16px; flex-wrap:wrap; }
.similar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.prod-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); overflow:hidden; transition:all .3s; display:flex; flex-direction:column; }
.prod-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.prod-card-img { background:var(--bg); aspect-ratio:1; display:flex; align-items:center; justify-content:center; padding:20px; }
.prod-card-img img { max-height:140px; object-fit:contain; }
.prod-card-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
.prod-card-brand { font-size:11px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.4px; margin-bottom:3px; }
.prod-card-name  { font-size:14px; font-weight:700; color:var(--black); line-height:1.3; margin-bottom:8px; flex:1; }
.prod-card-price { font-size:18px; font-weight:800; color:var(--black); }
.prod-card-price span { font-size:13px; font-weight:500; color:var(--muted); }
.prod-card-footer { padding:0 16px 14px; display:flex; gap:8px; }
.prod-card-footer .btn { flex:1; justify-content:center; font-size:13px; padding:9px 12px; }

/* Review extended */
.reviews-list { display:flex; flex-direction:column; gap:16px; margin-bottom:24px; }
.review-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; gap:12px; flex-wrap:wrap; }
.review-photos { margin-top:12px; display:flex; flex-wrap:wrap; gap:8px; }
.review-photos-label { font-size:11px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.4px; margin-bottom:6px; width:100%; }
.review-photo { display:block; width:88px; height:88px; border-radius:var(--r-sm); overflow:hidden; border:1px solid var(--border); flex-shrink:0; }
.review-photo img { width:100%; height:100%; object-fit:cover; }

/* Delivery page info */
.delivery-info h3 { font-size:20px; font-weight:800; margin-bottom:16px; }
.delivery-list { display:flex; flex-direction:column; gap:10px; }
.delivery-list li { padding:10px 16px; background:var(--primary-light); border-radius:var(--r-sm); font-size:14px; list-style:none; }

/* Contacts */
.contacts-phone { font-size:28px; font-weight:800; color:var(--primary); }

/* Cursor ring: внешний диаметр не больше 15px (включая обводку) */
.cursor-ring {
  position: fixed;
  left: -100px;
  top: -100px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  box-sizing: border-box;
  border: 1px solid rgba(29, 109, 138, 0.95);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.85);
}
.cursor-ring.is-on { opacity: 1; }
.cursor-ring.is-hover {
  border-color: rgba(29, 109, 138, 1);
  background: rgba(255, 255, 255, 0.55);
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-ring { display: none !important; } }

/* ═══════════════════════════════
   MOBILE MENU
═══════════════════════════════ */
.nav-toggle { display:none; align-items:center; justify-content:center; width:44px; height:44px; padding:0; border:1px solid var(--border); border-radius:var(--r-sm); background:#fff; color:var(--text); cursor:pointer; flex-shrink:0; -webkit-tap-highlight-color:transparent; z-index:2; }
.nav-toggle:hover { border-color:var(--primary); color:var(--primary); }
.nav-toggle .nav-toggle-close { display:none; }
.header.is-nav-open .nav-toggle .nav-toggle-icon { display:none; }
.header.is-nav-open .nav-toggle .nav-toggle-close { display:block; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-in       { grid-template-columns:1fr; }
  .hero-img      { display:none; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .install-in    { grid-template-columns:1fr; gap:40px; }
  .gift-in       { grid-template-columns:1fr; }
  .gift-visual   { display:none; }
  .why-grid      { grid-template-columns:repeat(2,1fr); }
  .coverage-in   { grid-template-columns:1fr; }
  .map-box       { display:none; }
  .cta-in        { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr 1fr; }
  .similar-grid  { grid-template-columns:repeat(3,1fr); }
  .container { padding-left:max(16px,env(safe-area-inset-left)); padding-right:max(16px,env(safe-area-inset-right)); }
}
@media (max-width: 1100px) {
  .pdp-grid { grid-template-columns:minmax(0,1fr) minmax(0,1.2fr); }
  .pdp-buy  { position:static; grid-column:1/-1; flex-direction:row; flex-wrap:wrap; }
}
@media (max-width: 900px) {
  .svc-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-split--image-right .svc-split__visual {
    order: -1;
  }
  .svc-split__visual {
    min-height: 220px;
    border-radius: var(--r-lg, 16px);
  }
  .nav-toggle { display:inline-flex; }
  .header { z-index:500 !important; }
  .header-in { flex-wrap:wrap; align-items:center; row-gap:0; column-gap:10px; }
  .header-nav#main-nav, nav.header-nav#main-nav { display:none; order:4; width:100%; flex-direction:column; align-items:stretch; gap:0; padding:4px 0 12px; margin:8px 0 0; border-top:1px solid var(--border); background:#fff; }
  .header.is-nav-open .header-nav { display:flex !important; }
  .header-nav a { padding:14px 4px; border-radius:0; font-size:15px; border-bottom:1px solid #f1f5f9; white-space:normal; }
  .header-nav a:last-child { border-bottom:none; }
  .header-contact { margin-left:auto; flex-shrink:0; gap:8px; }
  .header-contact .btn { padding:10px 12px; font-size:13px; }
  .header-phone small { display:none; }
  .pdp-grid { grid-template-columns:1fr; }
  .pdp-buy  { position:static; flex-direction:column; }
  body.single-product { overflow-x: hidden; }
  .pdp-spec-preview { min-width: 0; }
  .svc-row-secondary { grid-template-columns:repeat(3,1fr); }
  .f-row { grid-template-columns:1fr; }
  .specs-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .topbar-cities { display:none; }
  .svc-row-primary   { grid-template-columns:1fr; }
  .svc-row-secondary { grid-template-columns:repeat(2,1fr); }
  .hero { padding:48px 0 36px; }
  .hero-stats { gap:20px; flex-wrap:wrap; justify-content:flex-start; }
  .hero-stat-num { font-size:22px; }
  .hero-ctas { flex-direction:column; align-items:stretch; }
  .hero-ctas .btn { width:100%; justify-content:center; }
  .products-grid { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
  .reviews-grid  { grid-template-columns:1fr; }
  .coverage-cities { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:left; }
  .footer-bottom-line { text-align:center; }
  .footer-legal-block { text-align:center; }
  .footer-legal { justify-content:center; flex-direction:column; gap:8px; }
  .footer-brand .footer-legal-block--stack { text-align:left; }
  .footer-brand .footer-legal--col { align-items:flex-start; justify-content:flex-start; }
  .why-grid      { grid-template-columns:1fr; }
  .install-numbers { grid-template-columns:1fr 1fr; }
  .section { padding:48px 0; }
  .trust-in { gap:12px; }
  .similar-grid  { grid-template-columns:1fr 1fr; }
  .tab-content { padding:20px; }
  .pdp-qspecs { grid-template-columns:1fr 1fr; }
  .container { padding-left:max(14px,env(safe-area-inset-left)); padding-right:max(14px,env(safe-area-inset-right)); }
}
@media (max-width: 480px) {
  .header-contact .btn { padding:9px 10px; font-size:12px; }
  .header-phone a { font-size:14px; }
  .similar-grid { grid-template-columns:1fr; }
  .pdp-qspecs { grid-template-columns:1fr; }
}

/* ═══════════════════════════════
   MOBILE STICKY CTA BAR
═══════════════════════════════ */
.mobile-cta-bar { display:none; }

@media (max-width: 767px) {
  /* В топбаре — только иконки соцсетей; города скрыты, чтобы не дублировать меню */
  .topbar { display:block; padding:8px 0; }
  .topbar-cities { display:none !important; }
  .topbar-in { justify-content:center; }
  .header-contact { display:none !important; }

  /* Отступ снизу чтобы контент не перекрывался панелью */
  body { padding-bottom:56px; }

  /* map-box показываем на мобильных тоже */
  .map-box { display:block; min-height:220px; }

  /* Мобильная панель */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    height: 56px;
    box-shadow: 0 -2px 16px rgba(0,0,0,.18);
  }
  .mcta-call,
  .mcta-phone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: .01em;
    transition: filter .15s;
  }
  .mcta-call { background:var(--primary); color:#fff; }
  .mcta-call:hover, .mcta-call:active { filter:brightness(1.12); color:#fff; }
  .mcta-phone { background:var(--accent); color:#fff; }
  .mcta-phone:hover, .mcta-phone:active { filter:brightness(1.12); color:#fff; }
}

/* ═══════════════════════════════
   BUY MODAL
═══════════════════════════════ */
.modal-close-x {
  position:absolute; top:14px; right:14px;
  width:32px; height:32px; border-radius:50%;
  background:#f1f5f9; border:none; cursor:pointer;
  font-size:18px; line-height:1; color:var(--muted);
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, color .15s;
}
.modal-close-x:hover { background:var(--border); color:var(--black); }
.modal-box { position:relative; }
.buy-modal-eyebrow {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--primary); margin-bottom:6px;
}
.buy-modal-title {
  font-size:20px; font-weight:800; color:var(--black);
  line-height:1.3; margin-bottom:6px;
}
.buy-modal-product {
  font-size:14px; color:var(--muted); margin-bottom:18px;
  display:flex; align-items:center; gap:6px;
}
.buy-modal-product strong { color:var(--black); font-weight:600; }

/* ── REVIEWS ON PRODUCT PAGE ── */
.reviews-list { display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.review-card { display:flex; gap:16px; padding:20px; background:var(--bg); border-radius:var(--r); border:1px solid var(--border); }
.review-card.review-pending { opacity:.65; }
.review-av { width:40px; height:40px; border-radius:50%; background:var(--primary); color:#fff; font-weight:700; font-size:16px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.review-body { flex:1; min-width:0; }
.review-meta { display:flex; align-items:center; gap:12px; margin-bottom:8px; flex-wrap:wrap; }
.review-name { font-size:15px; font-weight:600; color:var(--black); }
.review-date { font-size:12px; color:var(--muted); }
.review-text { font-size:14px; color:var(--text); line-height:1.6; margin:0; }
.review-moderation { font-size:12px; color:var(--muted); margin-top:6px; font-style:italic; }
.reviews-empty { color:var(--muted); font-size:14px; margin-bottom:24px; }
.reviews-form-title { font-size:18px; font-weight:700; margin:24px 0 16px; }
.reviews-login-note { display:flex; align-items:center; gap:10px; padding:16px 20px; background:var(--bg); border:1px solid var(--border); border-radius:var(--r); font-size:14px; color:var(--muted); margin-top:16px; }
.reviews-login-note a { color:var(--primary); font-weight:600; }
.reviews-login-note a:hover { text-decoration:underline; }

/* ── СТРАНИЦА КОНТАКТОВ (полная ширина, без карты) ── */
/* — Legal / privacy (минималистичная типографика) — */
.page-legal { background: var(--bg); }
.legal-wrap { padding: 32px 0 80px; }
.legal-header { max-width: 640px; margin: 0 auto 36px; }
.legal-title { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: var(--black); line-height: 1.2; margin: 0 0 14px; letter-spacing: -0.6px; }
.legal-updated { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
.legal-body { max-width: 640px; margin: 0 auto; }
.legal-block { margin-bottom: 28px; }
.legal-block h2 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); margin: 0 0 10px; }
.legal-block p,
.legal-block li { font-size: 15px; line-height: 1.7; color: var(--text); }
.legal-block p { margin: 0 0 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 0 0 12px; padding-left: 1.2em; }
.legal-block li { margin-bottom: 8px; }
.legal-block a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.legal-block a:hover { color: var(--primary-dark); }
@media (max-width: 640px) { .legal-wrap { padding: 20px 0 56px; } }

.page-contacts .contacts-section { width:100%; padding:32px 0 72px; background:var(--bg); }
.contacts-inner { width:100%; max-width:none; margin:0 auto; padding:0 max(20px,4vw); box-sizing:border-box; }
.contacts-header { margin-bottom:36px; max-width:720px; }
.contacts-title { font-size:clamp(26px,3.5vw,40px); font-weight:800; color:var(--black); line-height:1.15; margin:0 0 12px; }
.contacts-title span { color:var(--primary); }
.contacts-lead { font-size:16px; color:var(--muted); line-height:1.55; margin:0; }
.contacts-grid { display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:20px; width:100%; }
.contacts-card { grid-column:span 4; background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:24px 22px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:8px; min-width:0; }
.contacts-card--full { grid-column:1/-1; }
.contacts-card-icon { width:44px; height:44px; border-radius:var(--r-sm); background:var(--primary-light); color:var(--primary); display:flex; align-items:center; justify-content:center; margin-bottom:4px; }
.contacts-card-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.55px; color:var(--muted); margin:0; }
.contacts-card--social .contacts-card-title { margin-bottom:4px; }
.contacts-card--social .contacts-social { margin-top:0; }
.contacts-phone--card { font-size:clamp(22px,2.5vw,30px); font-weight:800; color:var(--primary); text-decoration:none; line-height:1.2; }
.contacts-phone--card:hover { text-decoration:underline; }
.contacts-card-note { font-size:13px; color:var(--muted); margin:0; line-height:1.45; }
.contacts-card-link { font-size:16px; font-weight:600; color:var(--primary); text-decoration:none; word-break:break-word; }
.contacts-card-link:hover { text-decoration:underline; }
.contacts-card-text { font-size:15px; color:var(--text); line-height:1.55; margin:0; }
.contacts-legal { margin-top:28px; padding:22px 20px; background:#fff; border:1px solid var(--border); border-radius:var(--r); box-shadow:var(--shadow-sm); max-width:720px; }
.contacts-legal-title { font-size:1rem; font-weight:800; color:var(--black); margin:0 0 16px; line-height:1.3; }
.contacts-legal-dl { margin:0; }
.contacts-legal-row { display:grid; grid-template-columns:minmax(0,200px) 1fr; gap:8px 20px; padding:10px 0; border-bottom:1px solid var(--border); }
.contacts-legal-row:first-of-type { padding-top:0; }
.contacts-legal-row:last-of-type { border-bottom:0; padding-bottom:0; }
.contacts-legal-dl dt { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.45px; color:var(--muted); margin:0; }
.contacts-legal-dl dd { font-size:14px; color:var(--text); line-height:1.45; margin:0; }
.contacts-callback { margin-top:40px; padding:32px max(0px,2vw); background:#fff; border:1px solid var(--border); border-radius:var(--r); box-shadow:var(--shadow-sm); width:100%; box-sizing:border-box; }
.contacts-callback-title { font-size:clamp(20px,2.2vw,26px); font-weight:800; margin:0 0 8px; color:var(--black); }
.contacts-callback-desc { font-size:14px; color:var(--muted); margin:0 0 24px; max-width:560px; line-height:1.5; }
.contacts-callback-form { width:100%; max-width:640px; }
.contacts-callback-form .wpcf7 { width:100%; }
@media (max-width:1100px) {
  .contacts-card:not(.contacts-card--full) { grid-column:span 6; }
  .contacts-card--full { grid-column:1/-1; }
}
/* Мобильный телефон: один столбец, компактные шрифты */
@media (max-width:640px) {
  .page-contacts .contacts-section { padding:20px 0 48px; }
  .contacts-inner { padding:0 max(14px,4vw); }
  .contacts-header { margin-bottom:20px; max-width:none; }
  .contacts-title { font-size:1.35rem; font-weight:800; line-height:1.2; margin:0 0 8px; }
  .contacts-lead { font-size:13px; line-height:1.5; }
  .contacts-grid {
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    width:100%;
  }
  .contacts-card,
  .contacts-card--full { grid-column:1 / -1; }
  .contacts-card { padding:16px 14px; gap:6px; border-radius:var(--r-sm); }
  .contacts-card-icon { width:36px; height:36px; margin-bottom:2px; }
  .contacts-card-icon svg { width:20px; height:20px; }
  .contacts-card-title { font-size:10px; letter-spacing:0.4px; }
  .contacts-phone--card { font-size:1.15rem; font-weight:800; }
  .contacts-card-note { font-size:12px; }
  .contacts-card-link { font-size:13px; }
  .contacts-card-text { font-size:13px; line-height:1.5; }
  .contacts-callback { margin-top:24px; padding:18px 14px; }
  .contacts-callback-title { font-size:1.1rem; margin:0 0 6px; }
  .contacts-callback-desc { font-size:12px; margin:0 0 16px; line-height:1.45; }
  .contacts-callback-form { max-width:none; }
  .page-contacts .contacts-social { gap:8px; }
  .page-contacts .contacts-soc-btn { padding:8px 12px; font-size:12px; font-weight:600; border-radius:var(--r-sm); }
  .page-contacts .contacts-soc-btn svg { width:16px; height:16px; }
  /* Contact Form 7: чуть мельче внутри блока */
  .contacts-callback-form .wpcf7 input[type=text],
  .contacts-callback-form .wpcf7 input[type=email],
  .contacts-callback-form .wpcf7 input[type=tel],
  .contacts-callback-form .wpcf7 textarea,
  .contacts-callback-form .wpcf7 select { font-size:14px; }
  .contacts-callback-form .wpcf7 label { font-size:12px; }
  .contacts-callback-form .wpcf7 .wpcf7-submit { font-size:14px; padding:10px 16px; }
  .contacts-legal { margin-top:20px; padding:18px 14px; max-width:none; }
  .contacts-legal-title { font-size:0.95rem; }
  .contacts-legal-row { grid-template-columns:1fr; gap:4px; }
  .contacts-legal-dl dd { font-size:13px; }
}

/* ── CONTACTS SOCIAL BUTTONS ── */
.contacts-social { display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.contacts-soc-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:var(--r); border:1.5px solid var(--border); background:#fff; color:var(--black); font-size:14px; font-weight:600; text-decoration:none; transition:all .2s; }
.contacts-soc-btn:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-light); }

/* Каталог: пагинация (paginate_links) */
.catalog-pagination .page-numbers { display:flex; flex-wrap:wrap; gap:8px; align-items:center; list-style:none; margin:0; padding:0; }
.catalog-pagination .page-numbers li { margin:0; }
.catalog-pagination .page-numbers a,
.catalog-pagination .page-numbers span { display:inline-flex; min-width:40px; justify-content:center; padding:8px 12px; border-radius:var(--r-sm); border:1px solid var(--border); background:#fff; font-size:14px; font-weight:600; text-decoration:none; color:var(--black); }
.catalog-pagination .page-numbers a:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-light); }
.catalog-pagination .page-numbers span.current { border-color:var(--primary); background:var(--primary); color:#fff; }
.catalog-pagination .page-numbers span.dots { border:none; background:transparent; min-width:auto; padding:8px 4px; color:var(--muted); }

/* ── Плашка «выгодный монтаж» (hero / секция / каталог / PDP) ── */
.hero-in > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.ph-promo-neon {
  max-width: min(100%, 380px);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  line-height: 1.35;
}
.ph-promo-neon--hero {
  margin-bottom: 18px;
  background: rgba(6, 16, 32, 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f1f5f9;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.ph-promo-neon--services,
.ph-promo-neon--delivery {
  margin-bottom: 0;
  align-self: flex-start;
  background: rgba(6, 16, 32, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f1f5f9;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.services-page-hero-in {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
}
.services-page-hero-text {
  flex: 1 1 260px;
  min-width: 0;
}
.services-page-hero-in .ph-promo-neon--services,
.services-page-hero-in .ph-promo-neon--delivery {
  flex: 0 1 min(100%, 380px);
}
@media (max-width: 720px) {
  .services-page-hero-in {
    flex-direction: column;
  }
  .services-page-hero-in .ph-promo-neon--services,
  .services-page-hero-in .ph-promo-neon--delivery {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}
.ph-promo-section-strip {
  margin-top: 12px;
  width: fit-content;
  max-width: 100%;
}
.ph-promo-neon--section,
.ph-promo-neon--catalog,
.ph-promo-neon--pdp {
  background: #d3e0ea;
  border: 1px solid #7a9aad;
  color: var(--text);
  box-shadow: 0 6px 22px rgba(15, 35, 55, 0.14);
}
.ph-promo-neon--catalog {
  flex-shrink: 0;
}
.ph-promo-neon--pdp {
  max-width: 100%;
  margin: 0;
}
.ph-promo-neon-accent {
  height: 2px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa 45%, #34d399);
}
.ph-promo-neon-inner {
  padding: 7px 10px 8px;
}
.ph-promo-neon--pdp .ph-promo-neon-inner {
  padding: 4px 7px 5px;
}
.ph-promo-neon--pdp .ph-promo-neon-head {
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
}
.ph-promo-neon--pdp .ph-promo-neon-head-left {
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 5px 7px;
  align-items: center;
}
.ph-promo-neon--pdp .ph-promo-neon-kicker-wrap {
  flex-shrink: 0;
}
.ph-promo-neon--pdp .ph-promo-neon-kicker {
  padding: 2px 6px;
  font-size: 8px;
}
.ph-promo-neon--pdp .ph-promo-neon-prices {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 10px;
  gap: 4px;
}
.ph-promo-neon--pdp .ph-promo-neon-strike {
  font-size: 9px;
  font-weight: 800;
}
.ph-promo-neon--pdp .ph-promo-neon-deal {
  font-size: 12px;
}
.ph-promo-neon--pdp .ph-promo-neon-dot {
  align-self: center;
  margin-top: 0;
  width: 6px;
  height: 6px;
}
.ph-promo-neon--pdp .ph-promo-neon-body {
  margin-top: 2px;
}
.ph-promo-neon--pdp .ph-promo-neon-copy {
  font-size: 10px;
  line-height: 1.22;
}
.ph-promo-neon--pdp .ph-promo-neon-hr {
  margin-top: 3px;
}
.ph-promo-neon-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.ph-promo-neon-head-left {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  min-width: 0;
}
.ph-promo-neon-kicker-wrap {
  display: inline-block;
  flex: 0 0 auto;
}
.ph-promo-neon-kicker {
  display: inline-block;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  line-height: 1.15;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.ph-promo-neon--hero .ph-promo-neon-kicker,
.ph-promo-neon--services .ph-promo-neon-kicker,
.ph-promo-neon--delivery .ph-promo-neon-kicker {
  border-color: rgba(56, 189, 248, 0.65);
  background: rgba(56, 189, 248, 0.08);
  color: #e0f2fe;
}
.ph-promo-neon--hero .ph-promo-neon-kicker:hover,
.ph-promo-neon--services .ph-promo-neon-kicker:hover,
.ph-promo-neon--delivery .ph-promo-neon-kicker:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: #7dd3fc;
  color: #fff;
}
.ph-promo-neon--section .ph-promo-neon-kicker,
.ph-promo-neon--catalog .ph-promo-neon-kicker,
.ph-promo-neon--pdp .ph-promo-neon-kicker {
  border-color: rgba(29, 109, 138, 0.45);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.ph-promo-neon--section .ph-promo-neon-kicker:hover,
.ph-promo-neon--catalog .ph-promo-neon-kicker:hover,
.ph-promo-neon--pdp .ph-promo-neon-kicker:hover {
  border-color: var(--primary);
  background: #fff;
}
.ph-promo-neon-prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 12px;
  white-space: nowrap;
  line-height: 1.2;
}
.ph-promo-neon-strike {
  text-decoration: line-through;
  font-weight: 600;
}
.ph-promo-neon--hero .ph-promo-neon-strike,
.ph-promo-neon--services .ph-promo-neon-strike,
.ph-promo-neon--delivery .ph-promo-neon-strike {
  color: #64748b;
}
.ph-promo-neon--section .ph-promo-neon-strike,
.ph-promo-neon--catalog .ph-promo-neon-strike,
.ph-promo-neon--pdp .ph-promo-neon-strike {
  color: var(--muted);
}
.ph-promo-neon-deal {
  font-weight: 800;
  font-size: 15px;
}
.ph-promo-neon--hero .ph-promo-neon-deal,
.ph-promo-neon--services .ph-promo-neon-deal,
.ph-promo-neon--delivery .ph-promo-neon-deal {
  color: #f8fafc;
}
.ph-promo-neon--section .ph-promo-neon-deal,
.ph-promo-neon--catalog .ph-promo-neon-deal,
.ph-promo-neon--pdp .ph-promo-neon-deal {
  color: var(--primary);
}
.ph-promo-neon-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-left: auto;
  margin-top: 2px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
  animation: ph-promo-live-dot 2.8s ease-in-out infinite;
}
.ph-promo-neon--hero .ph-promo-neon-dot,
.ph-promo-neon--services .ph-promo-neon-dot,
.ph-promo-neon--delivery .ph-promo-neon-dot {
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.45), 0 0 0 2px rgba(15, 23, 42, 0.5);
}
.ph-promo-neon-body {
  margin-top: 3px;
}
.ph-promo-neon-copy {
  margin: 0;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.28;
}
.ph-promo-neon--hero .ph-promo-neon-copy,
.ph-promo-neon--services .ph-promo-neon-copy,
.ph-promo-neon--delivery .ph-promo-neon-copy {
  color: #cbd5e1;
}
.ph-promo-neon--section .ph-promo-neon-copy,
.ph-promo-neon--catalog .ph-promo-neon-copy,
.ph-promo-neon--pdp .ph-promo-neon-copy {
  color: var(--text);
  opacity: 0.92;
}
.ph-promo-neon-conds {
  margin: 0;
  padding-left: 1.15em;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.38;
  list-style: disc;
}
.ph-promo-neon--section .ph-promo-neon-conds,
.ph-promo-neon--catalog .ph-promo-neon-conds,
.ph-promo-neon--pdp .ph-promo-neon-conds {
  color: var(--text);
  opacity: 0.95;
}
.ph-promo-neon--hero .ph-promo-neon-conds,
.ph-promo-neon--services .ph-promo-neon-conds,
.ph-promo-neon--delivery .ph-promo-neon-conds {
  color: #cbd5e1;
}
.ph-promo-neon--pdp .ph-promo-neon-conds {
  font-size: 11px;
}
.ph-promo-neon-conds li + li {
  margin-top: 0.25em;
}
.ph-promo-neon-hr {
  height: 1px;
  margin-top: 5px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.45), transparent);
}
.ph-promo-neon--hero .ph-promo-neon-hr,
.ph-promo-neon--services .ph-promo-neon-hr,
.ph-promo-neon--delivery .ph-promo-neon-hr {
  background: linear-gradient(90deg, transparent, #334155, transparent);
}
@keyframes ph-promo-live-dot {
  0%, 45% { opacity: 1; transform: scale(1); }
  50%, 55% { opacity: 0.35; transform: scale(0.92); }
  60%, 100% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .ph-promo-neon-dot {
    animation: none;
    opacity: 0.9;
  }
}
.pdp-buy-promo-slot {
  width: 100%;
}
.pdp-buy-promo-slot .ph-promo-neon--pdp {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .ph-promo-neon--hero,
  .ph-promo-neon--services,
  .ph-promo-neon--delivery {
    max-width: 100%;
  }
}
.catalog-top--promo {
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px 24px;
}
.catalog-top--promo .catalog-top-main {
  flex:1;
  min-width:min(100%, 260px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
@media (max-width:640px) {
  .catalog-top--promo .btn-outline { width:100%; justify-content:center; }
}
.catalog-page-intro {
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px 28px;
  margin-bottom:0;
}
.catalog-page-intro-text { flex:1; min-width:min(100%, 280px); }
@media (max-width:720px) {
  .catalog-page-intro .ph-promo-neon--catalog { max-width:100%; }
}

/* ── Cookie consent ───────────────────────────────────────── */
:root {
  --ph-cookie-accent: #49b6d6;
  --ph-cookie-accent-hover: #3aa3c2;
  --ph-cookie-text: #1e293b;
  --ph-cookie-muted: #64748b;
  --ph-cookie-border: #cbd5e1;
}
body.ph-cookie-lock {
  overflow: hidden;
}
.ph-cookie-banner {
  position: fixed;
  z-index: 100050;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
  padding: 16px 0;
  font-family: Inter, system-ui, sans-serif;
}
.ph-cookie-banner[hidden] {
  display: none !important;
}
.ph-cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.ph-cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ph-cookie-text);
  font-weight: 500;
}
.ph-cookie-banner__linklike {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--ph-cookie-accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ph-cookie-banner__linklike:hover {
  color: var(--ph-cookie-accent-hover);
}
.ph-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  flex: 0 1 auto;
}
.ph-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.ph-cookie-btn--primary {
  background: var(--ph-cookie-accent);
  border-color: var(--ph-cookie-accent);
  color: #fff;
}
.ph-cookie-btn--primary:hover {
  background: var(--ph-cookie-accent-hover);
  border-color: var(--ph-cookie-accent-hover);
}
.ph-cookie-btn--outline {
  background: transparent;
  border-color: var(--ph-cookie-accent);
  color: var(--ph-cookie-accent);
}
.ph-cookie-btn--outline:hover {
  background: rgba(73, 182, 214, 0.08);
}
.ph-cookie-btn--neutral {
  background: transparent;
  border-color: var(--ph-cookie-border);
  color: #475569;
}
.ph-cookie-btn--neutral:hover {
  border-color: #94a3b8;
  color: var(--ph-cookie-text);
}
.ph-cookie-btn--wide {
  min-width: min(100%, 280px);
}
.ph-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  font-family: Inter, system-ui, sans-serif;
}
.ph-cookie-modal[hidden] {
  display: none !important;
}
.ph-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  cursor: pointer;
}
.ph-cookie-modal__box {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  padding: 22px 22px 18px;
}
.ph-cookie-modal__box--scroll {
  width: min(100%, 560px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.ph-cookie-modal__x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 8px;
}
.ph-cookie-modal__x:hover {
  color: #475569;
  background: #f1f5f9;
}
.ph-cookie-modal__title {
  margin: 0 36px 12px 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}
.ph-cookie-modal__lead,
.ph-cookie-modal__bodytext {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ph-cookie-muted);
  margin: 0 0 14px;
}
.ph-cookie-modal__bodytext p {
  margin: 0 0 10px;
}
.ph-cookie-modal__bodytext a {
  color: var(--ph-cookie-accent);
  font-weight: 600;
}
.ph-cookie-rows {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.ph-cookie-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}
.ph-cookie-row:last-child {
  border-bottom: 0;
}
.ph-cookie-row__title {
  font-weight: 800;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 4px;
}
.ph-cookie-row__desc {
  margin: 0;
  font-size: 13px;
  color: var(--ph-cookie-muted);
  line-height: 1.4;
}
.ph-cookie-cards {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ph-cookie-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}
.ph-cookie-card--tech {
  background: #f0f9ff;
  border-color: #bae6fd;
}
.ph-cookie-card__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}
.ph-cookie-card__main {
  flex: 1;
  min-width: 0;
}
.ph-cookie-card__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0c4a6e;
  margin-bottom: 6px;
  line-height: 1.3;
}
.ph-cookie-card__desc {
  margin: 0;
  font-size: 13px;
  color: var(--ph-cookie-muted);
  line-height: 1.4;
}
.ph-cookie-switch {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 28px;
  cursor: pointer;
}
.ph-cookie-switch--locked {
  cursor: default;
  opacity: 0.85;
}
.ph-cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ph-cookie-switch__ui {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: background 0.2s;
}
.ph-cookie-switch__ui::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.ph-cookie-switch input:checked + .ph-cookie-switch__ui {
  background: var(--ph-cookie-accent);
}
.ph-cookie-switch input:checked + .ph-cookie-switch__ui::after {
  transform: translateX(20px);
}
.ph-cookie-switch input:disabled + .ph-cookie-switch__ui {
  background: var(--ph-cookie-accent);
  opacity: 0.9;
}
.ph-cookie-modal__footer {
  margin-top: auto;
  padding-top: 8px;
}
.ph-cookie-modal__footer--center {
  display: flex;
  justify-content: center;
}
.ph-cookie-modal__footer--end {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .ph-cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
  .ph-cookie-banner__actions .ph-cookie-btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}
