/* ====================================================================
   Wolf Blocks — UI healing for new sections on beta.detexline.ru
   Author: Wolf · 2026-04-24 · v1.0
   Loaded after theme.css. Style: calm B2B brand, Tvastar v4.0 audit.
   Palette: #002540 text · #20A7C1 accent · #fff bg · #fafbfc soft bg
   Motion: 250ms cubic-bezier(0.16, 1, 0.3, 1)
==================================================================== */

/* ====================================================================
   1. FACT-BOX — большие цифры в Hero карточек товаров
   Подражает существующему паттерну .about2 .titl на /about-company
==================================================================== */

.wolf-factbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0 32px;
  padding: 0;
}

.wolf-factbox__item {
  border-left: 3px solid #20A7C1;
  padding: 4px 0 4px 16px;
}

.wolf-factbox__label {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
  font-weight: 500;
}

.wolf-factbox__value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #002540;
  font-family: 'Exo2', sans-serif;
}

@media (max-width: 768px) {
  .wolf-factbox {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .wolf-factbox__value { font-size: 22px; }
}

/* ====================================================================
   2. CALLOUT — info-баннер в синей палитре (без жёлтого/оранжевого)
==================================================================== */

.wolf-callout {
  background: #f0f8fa;
  border-left: 4px solid #20A7C1;
  padding: 18px 22px;
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.6;
  color: #002540;
}

.wolf-callout__label {
  color: #0E7490;
  font-weight: 700;
  margin-right: 6px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ====================================================================
   3. FAQ — accordion с CSS-only animation, focus-visible, custom marker
==================================================================== */

.wolf-faq {
  max-width: 920px;
  margin: 16px 0;
}

.wolf-faq details {
  border: 1px solid #e0e3e8;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}

.wolf-faq details:hover {
  border-color: #20A7C1;
  box-shadow: 0 2px 8px rgba(32, 167, 193, 0.06);
}

.wolf-faq details[open] {
  border-color: #20A7C1;
  box-shadow: 0 2px 12px rgba(32, 167, 193, 0.1);
}

.wolf-faq summary {
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  position: relative;
  transition: color 200ms ease;
  min-height: 44px;
  line-height: 1.4;
  color: #002540;
}

.wolf-faq summary::-webkit-details-marker { display: none; }
.wolf-faq summary::marker { display: none; content: ''; }

.wolf-faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: #0E7490;
  font-weight: 300;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wolf-faq details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.wolf-faq details[open] summary {
  color: #0E7490;
  border-bottom: 1px solid #e0e3e8;
}

.wolf-faq summary:focus-visible {
  outline: 2px solid #20A7C1;
  outline-offset: -2px;
  border-radius: 6px;
}

.wolf-faq summary:focus:not(:focus-visible) { outline: none; }

.wolf-faq details > p {
  padding: 18px 22px;
  margin: 0;
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}

.wolf-faq details > p a {
  color: #0E7490;
  text-decoration: underline;
}

/* ====================================================================
   4. DEALERS — карточки дилеров, унифицированный grid + hover lift
==================================================================== */

.wolf-dealers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 992px) {
  .wolf-dealers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .wolf-dealers { grid-template-columns: 1fr; }
}

.wolf-dealer {
  display: block;
  padding: 22px 24px;
  border: 1px solid #e0e3e8;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 120px;
}

.wolf-dealer:hover {
  border-color: #20A7C1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 167, 193, 0.14);
  text-decoration: none;
}

.wolf-dealer:focus-visible {
  outline: 2px solid #20A7C1;
  outline-offset: 2px;
}

.wolf-dealer__title {
  display: block;
  color: #0E7490;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Exo2', sans-serif;
}

.wolf-dealer__desc {
  color: #002540;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.wolf-dealer__url {
  color: #0E7490;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
}

.wolf-dealer--all {
  background: #fafbfc;
  border-color: #20A7C1;
  border-style: dashed;
}

.wolf-dealer--all .wolf-dealer__title {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====================================================================
   5. COMPARE — таблица сравнения моделей, current-row indicator
==================================================================== */

.wolf-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: inherit;
}

.wolf-compare thead th {
  background: #fafbfc;
  padding: 14px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #002540;
  border-bottom: 2px solid #e0e3e8;
}

.wolf-compare tbody td {
  padding: 14px 14px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 15px;
  color: #002540;
  vertical-align: middle;
}

.wolf-compare tbody tr:hover {
  background: rgba(32, 167, 193, 0.03);
}

.wolf-compare tbody tr.is-current {
  background: rgba(32, 167, 193, 0.06);
  font-weight: 500;
}

.wolf-compare tbody tr.is-current td:first-child {
  border-left: 3px solid #20A7C1;
  padding-left: 11px;
}

.wolf-compare a {
  color: #0E7490;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}

.wolf-compare a:hover {
  border-bottom-color: #0E7490;
}

.wolf-compare__current-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0E7490;
  background: rgba(14, 116, 144, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  font-weight: 600;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .wolf-compare { font-size: 13px; }
  .wolf-compare thead th, .wolf-compare tbody td { padding: 10px 8px; }
}

/* ====================================================================
   6. SECTION SOFT — мягкий фон чередующихся секций
==================================================================== */

.wolf-section--soft {
  background: #fafbfc;
}

.wolf-section--narrow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.wolf-section--narrow-text p,
.wolf-section--narrow-text > div > h2 + p {
  max-width: 820px;
}

/* ====================================================================
   7. BUTTON GHOST — вариант второстепенной CTA (парный к .button-warning)
==================================================================== */

.button-warning--ghost {
  background: #fff !important;
  color: #0E7490 !important;
  border: 1px solid #0E7490 !important;
  transition: background 250ms ease, color 250ms ease !important;
}

.button-warning--ghost:hover {
  background: #0E7490 !important;
  color: #fff !important;
}

.button-warning--ghost:focus-visible {
  outline: 2px solid #20A7C1;
  outline-offset: 2px;
}

/* Tertiary link CTA */
.wolf-cta-link {
  color: #0E7490;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
  line-height: 44px;
}

.wolf-cta-link:hover {
  border-bottom-color: #0E7490;
}

/* ====================================================================
   8. STEP-LIST — нумерованные шаги для пиллар-контента
==================================================================== */

.wolf-steps {
  counter-reset: wolf-step;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.wolf-steps > li {
  position: relative;
  padding-left: 56px;
  margin-bottom: 18px;
  counter-increment: wolf-step;
  font-size: 16px;
  line-height: 1.7;
  min-height: 40px;
}

.wolf-steps > li::before {
  content: counter(wolf-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0E7490;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo2', sans-serif;
}

.wolf-steps > li > strong {
  display: block;
  color: #002540;
  margin-bottom: 4px;
}

/* ====================================================================
   9. PROSE — улучшенный read-flow для пиллар-контента
==================================================================== */

.wolf-prose {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  color: #002540;
}

.wolf-prose p {
  margin-bottom: 18px;
}

.wolf-prose strong {
  color: #002540;
  font-weight: 700;
}

.wolf-prose a {
  color: #0E7490;
  border-bottom: 1px solid #0E7490;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.wolf-prose a:hover { opacity: 0.7; }

/* ====================================================================
   10. REDUCED MOTION — accessibility
==================================================================== */

@media (prefers-reduced-motion: reduce) {
  .wolf-faq details,
  .wolf-faq summary,
  .wolf-faq summary::after,
  .wolf-dealer,
  .wolf-compare a,
  .button-warning--ghost,
  .wolf-cta-link {
    transition: none !important;
  }
  .wolf-dealer:hover {
    transform: none;
  }
}


/* ====================================================================
   Header — solid #002540 на всех страницах кроме главной
   На /  (body-index)  остаётся полупрозрачный (rgba(0,37,64,0.64))
==================================================================== */
/* Header — solid #002540 on ALL pages (including homepage) */
.header,
.header.bg,
.header.dark,
body .header,
body.body-index .header,
body.body-noindex .header,
body.body-catalog-tovar .header,
body.body-noindex.body-catalog-tovar .header {
  background-color: #002540 !important;
}

/* ====================================================================
   WOLF LIGHTBOX — full-screen photo on click
==================================================================== */
.wolf-lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: wolfFadeIn 200ms ease-out;
}
.wolf-lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
}
.wolf-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  font-weight: 300;
  user-select: none;
}
@keyframes wolfFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
section[style*="background:#002540"] img.image,
section[style*="background:#002540"] [class*="product-image"] img {
  cursor: zoom-in;
  transition: transform 200ms ease;
}
section[style*="background:#002540"] img.image:hover {
  transform: scale(1.02);
}


/* === Wolf Gallery — для галерей на страницах товаров (зеркала, EAS) === */
.wolf-gallery-section { padding: 40px 0 60px; background: #fff; }
.wolf-gallery-section h2 {
  font-size: 28px; font-weight: 700; color: #002540;
  margin: 0 0 28px; text-align: center;
}
.wolf-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.wolf-gallery__item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  transition: transform .2s ease, box-shadow .2s ease;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.wolf-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.wolf-gallery__item img {
  max-width: 100%; max-height: 100%;
  object-fit: cover; width: 100%; height: 100%;
  display: block;
}
@media (max-width: 640px) {
  .wolf-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wolf-gallery-section h2 { font-size: 22px; }
}


/* === Prod Gallery (как на detexline.ru) === */
.prod-gallery { padding: 30px 0 60px; background: #fff; }
.prod-gallery .vl-row { margin-left: -10px; margin-right: -10px; }
.prod-gallery [class*="vl-col-"] { padding-left: 10px; padding-right: 10px; }
.gallery-it {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3;
}
.gallery-it:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.gallery-it a {
  display: block;
  width: 100%; height: 100%;
  cursor: zoom-in;
}
.gallery-it img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* === Stoika Digital Landing — modern animations === */

/* Reveal-on-scroll base */
.stoika-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stoika-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stoika-reveal--delay-1 { transition-delay: 0.1s; }
.stoika-reveal--delay-2 { transition-delay: 0.2s; }
.stoika-reveal--delay-3 { transition-delay: 0.3s; }
.stoika-reveal--delay-4 { transition-delay: 0.4s; }

/* Hero block */
.stoika-hero {
  background: #002540;
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.stoika-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(32, 167, 193, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stoika-hero__inner { position: relative; z-index: 2; }
.stoika-hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
  color: #20A7C1;
}
.stoika-hero__title {
  font-size: 60px; line-height: 1.05; font-weight: 700;
  margin-bottom: 24px; color: #fff !important; letter-spacing: -1.5px;
}
.stoika-hero__title span { color: #fff !important; }
.stoika-hero__sub {
  font-size: 20px; line-height: 1.5; font-weight: 300;
  color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 36px;
}
.stoika-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #20A7C1; color: #fff;
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.stoika-hero__cta:hover {
  background: #1a8aa3; color: #fff; transform: translateY(-2px);
}
.stoika-hero__img-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 360px;
}
.stoika-hero__img {
  max-width: 100%; max-height: 420px; width: auto; height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  animation: stoika-float 4s ease-in-out infinite;
}
@keyframes stoika-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* LED glow effect */
.stoika-hero__glow {
  position: absolute;
  bottom: 10%; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(32, 167, 193, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: stoika-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes stoika-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.15); }
}

/* === Demo animation: man-takes-phone-from-stand === */
.demo-stage {
  position: relative;
  width: 100%; max-width: 640px;
  height: 480px; margin: 0 auto;
  background: linear-gradient(180deg, #f8fafb 0%, #e8eef2 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 37, 64, 0.1);
}
/* Floor / shelf platform */
.demo-stage__floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 37, 64, 0.06) 100%);
}
.demo-stage__shelf {
  position: absolute;
  bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 12px;
  background: linear-gradient(180deg, #fff 0%, #e8eef2 100%);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* The stand itself (white pedestal) */
.demo-stand {
  position: absolute;
  bottom: 72px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 110px;
  background: linear-gradient(180deg, #fff 0%, #f0f4f7 100%);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 10px 30px rgba(0, 37, 64, 0.12);
}
.demo-stand::before {
  /* LED glow at base */
  content: '';
  position: absolute;
  bottom: -2px; left: 6px; right: 6px;
  height: 8px;
  background: #20A7C1;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 0 20px #20A7C1, 0 0 40px rgba(32, 167, 193, 0.5);
  animation: led-pulse 1.6s ease-in-out infinite;
}
@keyframes led-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Phone on stand */
.demo-phone {
  position: absolute;
  bottom: 175px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 120px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a1a 100%);
  border: 2px solid #2a2a3e;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: phone-cycle 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  z-index: 5;
}
.demo-phone::before {
  /* Screen */
  content: '';
  position: absolute;
  top: 8px; left: 4px; right: 4px; bottom: 8px;
  background: linear-gradient(135deg, #20A7C1 0%, #1a8aa3 50%, #102540 100%);
  border-radius: 4px;
  opacity: 0.95;
}
.demo-phone::after {
  /* Apps grid simulation */
  content: '';
  position: absolute;
  top: 18px; left: 10px; right: 10px;
  height: 80px;
  background:
    radial-gradient(circle at 20% 25%, #ff6b6b 4px, transparent 5px),
    radial-gradient(circle at 50% 25%, #ffd93d 4px, transparent 5px),
    radial-gradient(circle at 80% 25%, #6bcf7f 4px, transparent 5px),
    radial-gradient(circle at 20% 60%, #4ecdc4 4px, transparent 5px),
    radial-gradient(circle at 50% 60%, #c084fc 4px, transparent 5px),
    radial-gradient(circle at 80% 60%, #f97316 4px, transparent 5px);
  opacity: 0.95;
}
@keyframes phone-cycle {
  /* 0-15%: rest on stand */
  0%, 15% { transform: translateX(-50%) translateY(0); }
  /* 15-30%: hand grabs, phone lifts */
  20% { transform: translateX(-50%) translateY(-5px); }
  30% { transform: translateX(-50%) translateY(-80px) rotate(-3deg); }
  /* 30-50%: phone is in hand (away from stand) */
  40% { transform: translateX(-30%) translateY(-100px) rotate(-15deg); }
  50% { transform: translateX(-30%) translateY(-100px) rotate(-15deg); }
  /* 50-65%: phone returns */
  60% { transform: translateX(-50%) translateY(-80px) rotate(-3deg); }
  70% { transform: translateX(-50%) translateY(-5px); }
  /* 70-100%: rest on stand again */
  80%, 100% { transform: translateX(-50%) translateY(0); }
}

/* The man (silhouette) */
.demo-man {
  position: absolute;
  bottom: 60px; right: -120px;
  width: 100px; height: 240px;
  animation: man-walk 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  z-index: 3;
}
.demo-man__head {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #5a4a3a 0%, #3a2a1a 100%);
  border-radius: 50%;
}
.demo-man__body {
  position: absolute;
  top: 36px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 100px;
  background: linear-gradient(135deg, #002540 0%, #003a63 100%);
  border-radius: 32px 32px 6px 6px;
}
.demo-man__legs {
  position: absolute;
  top: 132px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 100px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a1a 100%);
  border-radius: 4px;
}
@keyframes man-walk {
  0% { right: -120px; }
  /* Walks toward shelf */
  15% { right: 100px; }
  /* Stays at shelf during phone-grab phase */
  30%, 70% { right: 100px; }
  /* Walks back */
  85%, 100% { right: -120px; }
}

/* Hand reaching for phone */
.demo-hand {
  position: absolute;
  width: 50px; height: 60px;
  background: linear-gradient(135deg, #f5d4b3 0%, #e0b890 100%);
  border-radius: 30% 50% 20% 30%;
  box-shadow: -2px 4px 8px rgba(0,0,0,0.15);
  animation: hand-cycle 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  z-index: 6;
  bottom: 230px; right: -120px;
}
@keyframes hand-cycle {
  /* 0-15%: hand offscreen */
  0%, 15% { right: -120px; bottom: 230px; opacity: 0; }
  /* 15-25%: hand approaches phone */
  20% { right: 200px; bottom: 230px; opacity: 1; }
  25% { right: 280px; bottom: 230px; opacity: 1; }
  /* 30%: at phone */
  30% { right: 300px; bottom: 270px; opacity: 1; }
  /* 30-50%: hand "holds" phone (off-stand position) */
  40% { right: 330px; bottom: 280px; opacity: 1; }
  50% { right: 330px; bottom: 280px; opacity: 1; }
  /* 50-70%: hand returns phone */
  60% { right: 300px; bottom: 270px; opacity: 1; }
  70% { right: 200px; bottom: 230px; opacity: 1; }
  /* 70-100%: hand offscreen */
  85%, 100% { right: -120px; bottom: 230px; opacity: 0; }
}

/* Caption under demo */
.demo-caption {
  text-align: center;
  margin-top: 16px;
  color: #002540;
  font-size: 14px;
  font-style: italic;
}

/* Section title style */
.stoika-section { padding: 80px 0; }
.stoika-section--dark { background: #002540; color: #fff; }
.stoika-section--dark h2 { color: #fff; }
.stoika-section--soft { background: #f8fafb; }
.stoika-section h2 {
  font-size: 38px; font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.stoika-section__lead {
  font-size: 18px; line-height: 1.6; color: #002540;
  max-width: 760px; margin: 0 auto 48px; text-align: center;
}
.stoika-section--dark .stoika-section__lead { color: rgba(255,255,255,0.8); }

/* Feature cards grid */
.stoika-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.stoika-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}
.stoika-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 37, 64, 0.1);
  border-color: #20A7C1;
}
.stoika-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #20A7C1 0%, #1a8aa3 100%);
  color: #fff;
  font-size: 18px; font-weight: 700;
  border-radius: 12px;
  margin-bottom: 16px;
}
.stoika-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #002540; }
.stoika-card p { font-size: 14px; line-height: 1.55; color: #002540; margin: 0; }

/* Protection levels grid (8 cards, dark theme) */
.stoika-protect {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.stoika-protect__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 22px;
  transition: background 0.15s ease-out, border-color 0.15s ease-out, transform 0.15s ease-out;
}
.stoika-protect__item:hover {
  background: rgba(32, 167, 193, 0.08);
  border-color: #20A7C1;
  transform: translateY(-3px);
}
.stoika-protect__num {
  font-size: 32px; font-weight: 800; color: #20A7C1;
  line-height: 1; margin-bottom: 14px;
  display: block;
}
.stoika-protect__item h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.stoika-protect__item p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.7); margin: 0; }

/* Split section: image + text */
.stoika-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stoika-split__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 37, 64, 0.12);
  max-height: 380px;
  display: flex; align-items: center; justify-content: center;
  background: #f0f4f7;
}
.stoika-split__img img {
  max-width: 100%; max-height: 380px; width: auto; height: auto;
  display: block;
}

/* Type tags grid (Smartphones, Tablets, etc.) */
.stoika-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.stoika-type {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.15s ease-out, transform 0.15s ease-out;
}
.stoika-type:hover {
  border-color: #20A7C1;
  transform: scale(1.04);
}
.stoika-type__icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f7fb 0%, #c5e9f1 100%);
  border-radius: 16px;
  color: #20A7C1;
}
.stoika-type__icon svg { width: 32px; height: 32px; }
.stoika-type h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: #002540; }
.stoika-type p { font-size: 13px; color: #666; margin: 0; }

/* Stats counter row */
.stoika-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stoika-stat__num {
  font-size: 56px; font-weight: 800;
  background: linear-gradient(135deg, #20A7C1 0%, #1a8aa3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stoika-stat__label {
  font-size: 14px; color: #002540; margin-top: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .stoika-hero { padding: 60px 0 40px; }
  .stoika-hero__title { font-size: 38px; }
  .stoika-hero__sub { font-size: 17px; }
  .stoika-section { padding: 60px 0; }
  .stoika-section h2 { font-size: 28px; }
  .stoika-split { grid-template-columns: 1fr; gap: 24px; }
  .demo-stage { height: 380px; }
  .stoika-stat__num { font-size: 40px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stoika-reveal, .stoika-hero__img, .stoika-hero__glow,
  .demo-phone, .demo-man, .demo-hand, .demo-stand::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* === Force white text on dark backgrounds (Stoika landing) === */
.stoika-hero,
.stoika-hero h1,
.stoika-hero h2,
.stoika-hero h3,
.stoika-hero h4,
.stoika-hero p,
.stoika-hero span:not(.ws-nowrap),
.stoika-hero strong,
.stoika-hero li,
.stoika-section--dark,
.stoika-section--dark h1,
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h4,
.stoika-section--dark p:not(.wolf-dealer__desc),
.stoika-section--dark li,
.stoika-section--dark strong {
  color: #fff;
}

/* Soften body text but still light */
.stoika-section--dark p,
.stoika-section--dark .stoika-section__lead,
.stoika-section--dark li {
  color: rgba(255, 255, 255, 0.85);
}

/* Keep H2/H3 headings fully white */
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h1 {
  color: #fff !important;
}

/* Cyan accents preserved */
.stoika-section--dark .stoika-protect__num,
.stoika-section--dark span[style*="color:#20A7C1"] {
  color: #20A7C1 !important;
}

/* White dealer cards keep their own dark text — exclude them */
.stoika-section--dark .wolf-dealer,
.stoika-section--dark .wolf-dealer * {
  color: inherit;
}
.stoika-section--dark .wolf-dealer__title { color: #0E7490 !important; }
.stoika-section--dark .wolf-dealer__desc { color: #002540 !important; }
.stoika-section--dark .wolf-dealer__url { color: #0E7490 !important; }


/* === Stoika hero oval img + 4-col protection grid === */
.stoika-hero__img-oval {
  display: block;
  margin: 0 auto;
  max-width: 100%; max-height: 460px;
  width: auto; height: auto;
  border-radius: 50% / 60%;
  border: 6px solid rgba(32, 167, 193, 0.2);
  box-shadow: 0 0 0 14px rgba(255,255,255,0.05),
              0 30px 60px rgba(0,0,0,0.4);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 768px) {
  .stoika-hero__img-oval { max-height: 300px; }
}

/* 4 cols × 2 rows on desktop */
.stoika-protect--4cols {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .stoika-protect--4cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .stoika-protect--4cols { grid-template-columns: 1fr; }
}


/* === Stoika hero rounded image + 4-col protection grid === */
.stoika-hero__img-rounded {
  display: block;
  margin: 0 auto;
  max-width: 100%; max-height: 460px;
  width: auto; height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(32, 167, 193, 0.15);
  object-fit: cover;
}
@media (max-width: 768px) {
  .stoika-hero__img-rounded { max-height: 320px; }
}
.stoika-protect--4cols { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .stoika-protect--4cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stoika-protect--4cols { grid-template-columns: 1fr; } }


/* === Gallery 1 row (5 cols) on Stoika page === */
.page-79 .prod-gallery .vl-row {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 24px;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.page-79 .prod-gallery .vl-row::-webkit-scrollbar { height: 8px; }
.page-79 .prod-gallery .vl-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.page-79 .prod-gallery .vl-row::-webkit-scrollbar-thumb { background: rgba(32,167,193,0.5); border-radius: 4px; }
.page-79 .prod-gallery [class*="vl-col"] {
  flex: 0 0 720px !important;
  max-width: 720px !important;
  width: 720px;
  scroll-snap-align: start;
  padding: 0 !important;
  margin: 0 !important;
}
.page-79 .prod-gallery .gallery-it {
  width: 720px;
  height: 720px;
  aspect-ratio: 1 / 1;
}
.page-79 .prod-gallery .gallery-it {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 200px;
}
.page-79 .prod-gallery .gallery-it img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}
.page-79 .prod-gallery [class*="vl-col"] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .page-79 .prod-gallery .vl-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .page-79 .prod-gallery [class*="vl-col"] { flex: 0 0 320px !important; width: 320px; }
  .page-79 .prod-gallery .gallery-it { width: 320px; height: 320px; }
}

/* === Force white text in dark stoika sections (universal) === */
.stoika-section--dark h1,
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h4,
.stoika-section--dark p,
.stoika-section--dark li,
.stoika-section--dark .stoika-section__lead,
.stoika-section--dark .stoika-card h3,
.stoika-section--dark .stoika-card p,
.stoika-section--dark .stoika-type h3,
.stoika-section--dark .stoika-type p {
  color: #fff !important;
}
.stoika-section--dark .stoika-section__lead { color: rgba(255,255,255,0.85) !important; }

/* Cards on dark sections — translucent with white text */
.stoika-section--dark .stoika-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
.stoika-section--dark .stoika-card:hover {
  background: rgba(32,167,193,0.08);
  border-color: #20A7C1;
}
.stoika-section--dark .stoika-type {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.18);
}
.stoika-section--dark .stoika-type:hover {
  border-color: #20A7C1;
}
.stoika-section--dark .stoika-type__icon {
  background: rgba(32,167,193,0.15);
  color: #20A7C1;
}

/* Drilling dimension boxes on dark — invert */
.stoika-section--dark [style*="background:#f8fafb"] {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.stoika-section--dark [style*="color:#666"] { color: rgba(255,255,255,0.7) !important; }
.stoika-section--dark [style*="color:#002540"] { color: #fff !important; }
.stoika-section--dark [style*="color:#444"]   { color: rgba(255,255,255,0.85) !important; }
.stoika-section--dark [style*="color:#333"]   { color: rgba(255,255,255,0.85) !important; }


/* === Wolf Lightbox navigation arrows + counter === */
.wolf-lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 5, 15, 0.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  cursor: zoom-out;
  padding: 60px 80px;
}
.wolf-lightbox-img-wrap {
  max-width: 100%; max-height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.wolf-lightbox-img-wrap img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  transition: opacity 120ms ease;
}
.wolf-lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 40px; line-height: 1;
  color: #fff;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
  user-select: none;
}
.wolf-lightbox-close:hover { background: rgba(255,255,255,0.18); }

.wolf-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}
.wolf-lightbox-nav:hover {
  background: rgba(32, 167, 193, 0.25);
  transform: translateY(-50%) scale(1.08);
}
.wolf-lightbox-nav--prev { left: 24px; }
.wolf-lightbox-nav--next { right: 24px; }

.wolf-lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px; letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .wolf-lightbox-overlay { padding: 50px 12px; }
  .wolf-lightbox-nav { width: 44px; height: 44px; }
  .wolf-lightbox-nav--prev { left: 8px; }
  .wolf-lightbox-nav--next { right: 8px; }
  .wolf-lightbox-close { top: 12px; right: 12px; }
}


/* === Отключение анимации только в hero блоке (Стойка Digital) === */
.stoika-hero .stoika-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.stoika-hero__img,
.stoika-hero__img-rounded {
  animation: none !important;
}
.stoika-hero__glow {
  animation: none !important;
}


/* === Stoika stat icons === */
.stoika-stat__icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #20A7C1 0%, #1a8aa3 100%);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(32, 167, 193, 0.25);
}
.stoika-stat__icon svg {
  width: 30px; height: 30px;
  display: block;
}


/* === Stoika stats: icon on the LEFT of text === */
.stoika-stats > div {
  display: flex !important;
  align-items: center;
  gap: 16px;
  text-align: left !important;
}
.stoika-stat__icon {
  margin: 0 !important;
  flex: 0 0 56px;
}
.stoika-stat__num,
.stoika-stat__label {
  text-align: left !important;
}
@media (max-width: 540px) {
  .stoika-stats > div { gap: 12px; }
  .stoika-stat__icon { flex: 0 0 48px; width: 48px; height: 48px; }
}


/* === Stoika types: icon LEFT, text RIGHT === */
.stoika-type {
  display: flex !important;
  align-items: center;
  gap: 16px;
  text-align: left !important;
  padding: 22px 20px !important;
}
.stoika-type__icon {
  margin: 0 !important;
  flex: 0 0 56px;
}
.stoika-type h3 { margin-bottom: 4px !important; text-align: left !important; }
.stoika-type p { text-align: left !important; }
@media (max-width: 540px) {
  .stoika-type { gap: 12px; padding: 16px !important; }
  .stoika-type__icon { flex: 0 0 48px; width: 48px; height: 48px; }
}
/* === Catalog item as full-card link === */
.catalog-it.catalog-it--link {
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.catalog-it.catalog-it--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(32, 167, 193, 0.18);
  text-decoration: none;
}
.catalog-it.catalog-it--link .it-img,
.catalog-it.catalog-it--link .it-img img {
  cursor: pointer;
}
.catalog-it.catalog-it--link .button-warning {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
}
.catalog-it.catalog-it--link:hover .button-warning {
  background: #1a8aa3;
}


/* === Page-83 light theme: white bg + dark gray text === */
.page-83 .stoika-section h1,
.page-83 .stoika-section h2,
.page-83 .stoika-section h3,
.page-83 .stoika-section h4 {
  color: #002540 !important;
}
.page-83 .stoika-section p,
.page-83 .stoika-section li,
.page-83 .stoika-section .stoika-section__lead {
  color: #444 !important;
}
.page-83 .stoika-protect__item {
  background: #fff !important;
  border: 1px solid #e0e8ee !important;
}
.page-83 .stoika-protect__item h3 { color: #002540 !important; }
.page-83 .stoika-protect__item p  { color: #002540 !important; }
.page-83 .stoika-protect__item:hover {
  background: #f8fafb !important;
  border-color: #20A7C1 !important;
}
.page-83 .stoika-protect__num { color: #20A7C1 !important; }
.page-83 .stoika-card {
  background: #fff !important;
  border: 1px solid #e0e8ee !important;
}
.page-83 .stoika-card h3 { color: #002540 !important; }
.page-83 .stoika-card p  { color: #002540 !important; }
.page-83 .stoika-type {
  background: #fff !important;
  border: 2px solid #e0e8ee !important;
}
.page-83 .stoika-type h3 { color: #002540 !important; }
.page-83 .stoika-type__icon {
  background: linear-gradient(135deg, #e8f7fb 0%, #c5e9f1 100%) !important;
  color: #20A7C1 !important;
}
/* Final CTA also light */
.page-83 #kupit { background: #f8fafb !important; }
.page-83 #kupit h2 { color: #002540 !important; }
.page-83 #kupit p  { color: #002540 !important; }
.page-83 #kupit .wolf-dealer { background: #fff !important; }


/* === Page-90 stoika-types: 4×2 responsive === */
@media (max-width: 900px) {
  .page-90 .stoika-types { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .page-90 .stoika-types { grid-template-columns: 1fr !important; }
}


/* === Page-84 related-banner 16:9 small === */
.page-84 .related-banner[style*="aspect-ratio:16/9"] .related-banner__img {
  aspect-ratio: 16/9 !important;
  height: 100%;
}
@media(max-width:768px){
  .page-84 .related-banner[style*="aspect-ratio:16/9"] {
    aspect-ratio: 4/3 !important;
  }
  .page-84 .related-banner[style*="aspect-ratio:16/9"] .related-banner__img {
    aspect-ratio: 4/3 !important;
  }
}


/* === Page-84 banner: clearer photo, lighter overlay === */
.page-84 .related-banner__img {
  opacity: 0.85 !important;
}
.page-84 .related-banner__overlay {
  background: linear-gradient(180deg, rgba(0,37,64,0.10) 0%, rgba(0,37,64,0.55) 70%, rgba(0,37,64,0.75) 100%) !important;
}
.page-84 .related-banner__title {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


/* === Page-88: одинаковый размер заголовков карточек === */
.page-88 .stoika-card h3,
.page-133 .stoika-card h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  margin-bottom: 12px !important;
}


/* === Page-88 / Page-133: stat numbers all same size as "Пульт" === */
.page-88 .stoika-stat__num,
.page-133 .stoika-stat__num {
  font-size: 32px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}


/* === Page-134: embedded contact form === */
.page-134 .dark-form input::placeholder,
.page-134 .dark-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.page-134 .dark-form input:focus,
.page-134 .dark-form textarea:focus {
  border-color: #20A7C1 !important;
  background: rgba(255,255,255,0.12) !important;
}


/* === Page-134: V-Stand галерея — адаптив === */
@media (max-width: 768px) {
  .page-134 .vl-row[style*="grid-template-columns:repeat(3,1fr)"] {
    max-width: 100% !important;
  }
}

/* === Header dropdown menu z-index — над hero-секциями товаров ===
   Оригинал theme.css: .header{z-index:2}, .level_2{z-index:1}.
   На product-страницах есть hero с position:relative;z-index:2,
   который перекрывает выпадашку. Поднимаем header выше любого контента. */
header.header,
.header {
  z-index: 1000;
}
.first-nav .level_1.show .level_2 {
  z-index: 1001;
}

/* === Радиотелефоны (page-93) — сетка применения 3×2 ===
   Десктоп — 3 колонки × 2 ряда (6 категорий).
   Мобильный — 2 колонки, чтобы карточки не сжимались. */
.radiotel-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .radiotel-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
}

/* === Лассо (page-92) — сетка 3×N с адаптивом для мобильных === */
.lasso-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .lasso-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
  }
}
@media (max-width: 480px) {
  .lasso-grid-3 {
    grid-template-columns: 1fr !important;
  }
}


/* === Page-77 (Блоки управления) — белый фон карточек каталога === */
.page-77 .catalog-screen,
.page-77 .catalog-list { background: #fff; }
.page-77 .catalog-it,
.page-77 .catalog-it--link,
.page-77 .it-img {
  background: #fff !important;
}

/* === Page-77 — тёмный текст карточек на белом фоне === */
.page-77 .catalog-screen,
.page-77 .catalog-screen h1,
.page-77 .catalog-group-title,
.page-77 .catalog-it,
.page-77 .catalog-it h4,
.page-77 .catalog-it p,
.page-77 .catalog-desk {
  color: #002540 !important;
}
.page-77 .catalog-it p {
  color: #002540 !important;
}

/* === Page-77 — тёмные хлебные крошки === */
.page-77 .vl-crumbs,
.page-77 .vl-crumbs a,
.page-77 .breadcrumb,
.page-77 .breadcrumb a,
.page-77 .breadcrumb-item,
.page-77 .breadcrumb-item a,
.page-77 .breadcrumb-item.active {
  color: #002540 !important;
}
.page-77 .breadcrumb a:hover,
.page-77 .vl-crumbs a:hover {
  color: #0E7490 !important;
}

/* === Page-77 — тёмные хлебные крошки (усиленные селекторы v2) === */
body.page-77 .catalog-screen .vl-crumbs .breadcrumb-item a,
body.page-77 .catalog-screen .vl-crumbs .breadcrumb-item,
body.page-77 .vl-crumbs .breadcrumb-item a,
body.page-77 .vl-crumbs .breadcrumb-item.active,
body.page-77 .vl-crumbs .breadcrumb,
body.page-77 .vl-crumbs {
  color: #002540 !important;
}
body.page-77 .vl-crumbs .breadcrumb-item a:hover {
  color: #0E7490 !important;
}


/* === Политика конфиденциальности — 12px / 1.5 в формах и модалках === */
.privacy-text,
.privacy-text *,
form label .privacy-text,
.modal .privacy-text,
.modal-content .privacy-text {
  font-size: 12px !important;
  line-height: 1.5 !important;
}


/* === 2. Унификация цветов кнопок === */
.button-warning,
button.button-warning,
a.button-warning,
input[type="submit"].button-warning {
  background-color: #20A7C1 !important;
  border-color: #20A7C1 !important;
  color: #fff !important;
  transition: background-color 200ms ease, border-color 200ms ease !important;
}
.button-warning:hover,
button.button-warning:hover,
a.button-warning:hover,
input[type="submit"].button-warning:hover {
  background-color: #41B4CA !important;
  border-color: #41B4CA !important;
  color: #fff !important;
}
.button-warning:disabled,
.button-warning[disabled],
button.button-warning:disabled,
button.button-warning[disabled],
input[type="submit"].button-warning:disabled,
input[type="submit"].button-warning[disabled] {
  background-color: #8FD3E0 !important;
  border-color: #8FD3E0 !important;
  color: #fff !important;
  cursor: not-allowed !important;
}

/* === 3. Каталожные страницы (template 14 и подобные) — H2 = 34px, margin между карточками === */
.catalog-screen h2 {
  font-size: 34px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}
.catalog-screen .catalog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px !important;
  margin-bottom: 40px;
}
.catalog-screen .catalog-list .catalog-it {
  margin: 0 !important;
}
@media (max-width: 768px) {
  .catalog-screen .catalog-list { gap: 24px !important; }
  .catalog-screen h2 { font-size: 26px !important; }
}

/* === 4. .wolf-prose — на всю ширину контейнера === */
.wolf-prose {
  max-width: none !important;
}


/* === Заказать обратный звонок в шапке/футере — без фона === */
.header .zakaz-button,
.header a.zakaz-button.zakazat-link,
.footer a.color-accent.zakazat-link,
header .zakaz-button,
header a.zakazat-link,
footer a.zakazat-link {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: inherit !important;
}
.header a.zakaz-button:hover,
.header a.zakazat-link:hover,
.footer a.zakazat-link:hover,
header a.zakazat-link:hover,
footer a.zakazat-link:hover {
  background: transparent !important;
  color: #20A7C1 !important;
}

/* === ЛЕНДИНГИ ТОВАРОВ (body.tovar-landing) === */

/* 1. Хлебные крошки — тёмная подложка, белый текст, активный голубой */
body.tovar-landing .prodpage-wrap .vl-crumbs {
  background: #002540;
  padding: 16px 0;
  margin: 0;
}
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb {
  margin: 0;
  padding: 0 60px;
}
body.tovar-landing .prodpage-wrap .vl-crumbs,
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb,
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb-item,
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb-item a {
  color: #fff !important;
}
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb-item.active {
  color: #20A7C1 !important;
}
body.tovar-landing .prodpage-wrap .vl-crumbs .breadcrumb-item a:hover {
  color: #41B4CA !important;
}

/* 2. Основной текст: 18px / line-height:1 / regular */
body.tovar-landing .prodpage-wrap p:not([class*="wolf-"]):not([class*="dealer"]):not([class*="faq"]) {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
/* В тёмном hero подзаголовок более компактный */
body.tovar-landing section[style*="background:#002540"] p,
body.tovar-landing section[style*="background:#002540"] li {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

/* 3. H2 одного размера + отступ снизу 40px */
body.tovar-landing section h2 {
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin-bottom: 40px !important;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  body.tovar-landing section h2 {
    font-size: 28px !important;
    margin-bottom: 24px !important;
  }
}

/* 4. FAQ — блок по центру */
body.tovar-landing .wolf-faq {
  max-width: 920px;
  margin: 0 auto !important;
}
body.tovar-landing .wolf-faq details {
  text-align: left;
}


/* === Кнопки: исправление hover на disabled + надёжная активация === */
/* disabled:hover — стиль disabled должен оставаться при наведении */
.button-warning:disabled:hover,
.button-warning[disabled]:hover,
button.button-warning:disabled:hover,
button.button-warning[disabled]:hover,
input[type="submit"].button-warning:disabled:hover,
input[type="submit"].button-warning[disabled]:hover {
  background-color: #8FD3E0 !important;
  border-color: #8FD3E0 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

/* Активная кнопка (без disabled) — гарантированно #20A7C1 */
.button-warning:not(:disabled):not([disabled]),
button.button-warning:not(:disabled):not([disabled]),
a.button-warning,
input[type="submit"].button-warning:not(:disabled):not([disabled]) {
  background-color: #20A7C1 !important;
  border-color: #20A7C1 !important;
  color: #fff !important;
  cursor: pointer;
}
.button-warning:not(:disabled):not([disabled]):hover,
button.button-warning:not(:disabled):not([disabled]):hover,
a.button-warning:hover,
input[type="submit"].button-warning:not(:disabled):not([disabled]):hover {
  background-color: #41B4CA !important;
  border-color: #41B4CA !important;
}

/* Гасим лишние эффекты на disabled */
.button-warning:disabled,
.button-warning[disabled] {
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
}


/* === 2. Заголовок FAQ блока по центру (если блок центрирован) === */
body.tovar-landing .wolf-faq + h2,
body.tovar-landing section:has(.wolf-faq) h2,
body.tovar-landing section:has(> .vl-container > .wolf-faq) h2,
body:has(.prodpage-wrap section[style*="background:#002540"]) section:has(.wolf-faq) h2 {
  text-align: center !important;
}
/* Универсально — h2 в .vl-container где есть .wolf-faq */
.vl-container:has(.wolf-faq) > h2 {
  text-align: center !important;
}

/* === 3. Блок "Где купить Detex Line..." — единый стиль, белый текст === */
body:has(.prodpage-wrap) section:has(.wolf-dealers) {
  background: #002540 !important;
  color: #fff !important;
  padding: 60px 0 !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) h2,
body:has(.prodpage-wrap) section:has(.wolf-dealers) h2 *,
body:has(.prodpage-wrap) section:has(.wolf-dealers) > .vl-container > h2,
body:has(.prodpage-wrap) section:has(.wolf-dealers) > .vl-container > p,
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-prose,
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-prose * {
  color: #fff !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) p,
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-prose {
  color: rgba(255,255,255,0.85) !important;
}
/* Карточки дилеров на тёмном фоне — внутри они светлые, оставляем как есть */
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer {
  background: #fff !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer .wolf-dealer__title {
  color: #0E7490 !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer .wolf-dealer__desc {
  color: #002540 !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer .wolf-dealer__url {
  color: #0E7490 !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer--all {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(32, 167, 193, 0.6) !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer--all .wolf-dealer__title {
  color: #20A7C1 !important;
}
body:has(.prodpage-wrap) section:has(.wolf-dealers) .wolf-dealer--all .wolf-dealer__desc {
  color: rgba(255,255,255,0.8) !important;
}

/* === 4. .benefit-it — h3 выравнивается по верху, текст ниже от одной линии === */
.benefit-it {
  display: flex;
  flex-direction: column;
}
.benefit-it h3 {
  min-height: 2.6em;  /* 2 строки минимум */
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .benefit-it h3 { min-height: auto; }
}


/* === Страницы категорий (.catalog-screen) === */

/* 1. Отступы заголовков */
.catalog-screen h1 {
  margin-bottom: 40px !important;
}
.catalog-screen h2 {
  margin-bottom: 30px !important;
}
.catalog-screen h3 {
  margin-bottom: 20px !important;
}

/* 2. Анимация всех карточек при наведении */
.catalog-screen .catalog-it,
.catalog-screen .catalog-it--link,
.catalog-screen .benefit-it,
.catalog-screen .wolf-bento__item,
.catalog-screen .wolf-cat-card,
.catalog-screen .wolf-dealer,
.catalog-screen [class*="-card"],
.catalog-screen [class*="-item"]:not(.breadcrumb-item):not(.menu-item) {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s ease !important;
}
.catalog-screen .catalog-it:hover,
.catalog-screen .catalog-it--link:hover,
.catalog-screen .benefit-it:hover,
.catalog-screen .wolf-bento__item:hover,
.catalog-screen .wolf-cat-card:hover,
.catalog-screen .wolf-dealer:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(32, 167, 193, 0.15);
  border-color: #20A7C1 !important;
}
@media (prefers-reduced-motion: reduce) {
  .catalog-screen .catalog-it:hover,
  .catalog-screen .catalog-it--link:hover,
  .catalog-screen .benefit-it:hover,
  .catalog-screen .wolf-bento__item:hover,
  .catalog-screen .wolf-cat-card:hover,
  .catalog-screen .wolf-dealer:hover {
    transform: none;
  }
}

/* ====================================================================
   LP TOKENS — Landing Page Components
   Унифицированные классы для лендингов товаров (заменяют inline-style)
   Author: Wolf · 2026-05-07 · v1.0
==================================================================== */

/* === Hero === */
.lp-hero {
  background: #002540;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero__glow {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(32,167,193,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero__inner { position: relative; z-index: 2; }
.lp-hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(32,167,193,0.15);
  border: 1px solid rgba(32,167,193,0.4);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #20A7C1;
  font-weight: 600;
}
.lp-hero__title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.lp-hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
}
.lp-hero__cta {
  background: #20A7C1;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  line-height: 1.2;
}
.lp-hero__img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* === Stats (4 метрики под hero) === */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 520px;
}
.lp-stat__num {
  font-size: 32px;
  font-weight: 800;
  color: #20A7C1;
  line-height: 1;
}
.lp-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* === Section === */
.lp-section { padding: 80px 0; }
.lp-section--white { background: #fff; }
.lp-section--dark { background: #002540; color: #fff; }
.lp-section--soft { background: #f8fafc; }
.lp-section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.lp-section__title {
  font-size: 38px;
  font-weight: 700;
  color: #002540;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lp-section--dark .lp-section__title { color: #fff; }
.lp-section__lead {
  font-size: 18px;
  color: #002540;
  line-height: 1.6;
  margin: 0;
}
.lp-section--dark .lp-section__lead { color: rgba(255,255,255,0.8); }

/* === Feature card (преимущества 3-колонная сетка) === */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-feature {
  background: #f8fafc;
  border: 1px solid #e8eef2;
  border-radius: 12px;
  padding: 24px;
}
.lp-feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #20A7C1 0%, #1a8aa3 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 14px;
}
.lp-feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #002540;
  margin-bottom: 8px;
}
.lp-feature__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* === Use-case card (где применяется, с иконкой) === */
.lp-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.lp-case {
  background: #fff;
  border: 2px solid #e8eef2;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}
.lp-case__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f7fb 0%, #c5e9f1 100%);
  border-radius: 16px;
  color: #20A7C1;
}
.lp-case__title {
  font-size: 16px;
  font-weight: 600;
  color: #002540;
  margin-bottom: 6px;
}
.lp-case__desc {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* === Mobile === */
@media (max-width: 768px) {
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-features { grid-template-columns: 1fr; }
  .lp-cases { grid-template-columns: repeat(2, 1fr); }
  .lp-section { padding: 60px 0; }
  .lp-hero { padding: 60px 0 40px; }
  .lp-hero__title { font-size: 32px; }
  .lp-section__title { font-size: 28px; }
}
@media (max-width: 480px) {
  .lp-cases { grid-template-columns: 1fr; }
}


/* === Лендинги: крошки идентично странице категории (как /akustomagnitnie-sistemy) === */
/* Структура: .prodpage-wrap > .vl-container > .vl-crumbs > .breadcrumb */
/* Нужный визуал: отступ слева как у logo (через .vl-container padding:15px) */

/* prodpage-wrap — тёмный фон + 144px от верха (80 шапка + 64 отступ) */
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap,
body:has(.prodpage-wrap section.zerkal-s1[style*="002540"]) .prodpage-wrap,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap {
  background: #002540;
  padding-top: 144px;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap,
  body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap {
    padding-top: 124px;
  }
}

/* vl-crumbs внутри vl-container — без своего margin/padding (наследует от vl-container) */
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs {
  background: transparent !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}

/* breadcrumb — без bootstrap padding/margin, без max-width */
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  background: transparent !important;
  list-style: none;
}

/* Цвета крошек — белый/голубой */
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs,
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb,
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb-item,
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb-item a,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb-item,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb-item a {
  color: #fff !important;
}
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb-item.active,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb-item.active {
  color: #20A7C1 !important;
}
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap .vl-crumbs .breadcrumb-item a:hover,
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap .vl-crumbs .breadcrumb-item a:hover {
  color: #41B4CA !important;
}

/* Hero — уменьшаем верхний padding (.prodpage-wrap уже добавил 144px) */
body:has(.prodpage-wrap section[style*="background:#002540"]) .prodpage-wrap > section.zerkal-s1:first-of-type[style*="002540"],
body:has(.prodpage-wrap .lp-hero), body:has(.prodpage-wrap .stoika-hero) .prodpage-wrap > .lp-hero {
  padding-top: 20px !important;
}


/* === Датчики Digital: белый текст во всех синих секциях === */
.stoika-hero,
.stoika-hero *:not(.stoika-card):not(.stoika-card *):not(.stoika-type):not(.stoika-type *),
.stoika-section--dark,
.stoika-section--dark *:not(.stoika-card):not(.stoika-card *):not(.stoika-type):not(.stoika-type *):not(.wolf-dealer):not(.wolf-dealer *),
.stoika-protect__item,
.stoika-protect__item h3,
.stoika-protect__item p,
.stoika-protect__item span,
[class*="stoika"] [style*="background:#002540"] *,
[class*="stoika"] [style*="background:#002540"] {
  color: #fff;
}
.stoika-section--dark p,
.stoika-section--dark li,
.stoika-section--dark .stoika-section__lead,
.stoika-protect__item p {
  color: rgba(255, 255, 255, 0.85);
}
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h4,
.stoika-protect__num {
  color: #fff !important;
}
.stoika-protect__num {
  color: #20A7C1 !important;
}


/* === Stoika dark sections: жёстко белый текст в КАРТОЧКАХ внутри тёмных секций === */
.stoika-section--dark .stoika-card,
.stoika-section--dark .stoika-card h3,
.stoika-section--dark .stoika-card h4,
.stoika-section--dark .stoika-card p,
.stoika-section--dark .stoika-card span,
.stoika-section--dark .stoika-card div,
.stoika-section--dark .stoika-card li,
.stoika-section--dark .stoika-type,
.stoika-section--dark .stoika-type h3,
.stoika-section--dark .stoika-type h4,
.stoika-section--dark .stoika-type p,
.stoika-section--dark .stoika-type span,
.stoika-hero .stoika-card h3,
.stoika-hero .stoika-card p,
.stoika-hero .stoika-type h3,
.stoika-hero .stoika-type p {
  color: #fff !important;
}
.stoika-section--dark .stoika-card p,
.stoika-section--dark .stoika-type p,
.stoika-hero .stoika-card p,
.stoika-hero .stoika-type p {
  color: rgba(255,255,255,0.85) !important;
}
/* h2/h3 заголовки внутри тёмных секций — белые */
.stoika-section--dark h1,
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h4,
.stoika-section--dark p,
.stoika-section--dark li,
.stoika-section--dark div:not(.stoika-card__num):not(.stoika-card):not(.stoika-type):not(.stoika-type__icon),
.stoika-section--dark .stoika-section__lead,
.stoika-hero h1,
.stoika-hero h2,
.stoika-hero h3,
.stoika-hero p {
  color: #fff !important;
}
.stoika-section--dark p,
.stoika-section--dark li,
.stoika-section--dark .stoika-section__lead,
.stoika-hero p {
  color: rgba(255,255,255,0.85) !important;
}
/* Заголовки H1/H2/H3 — насыщенный белый */
.stoika-section--dark h1,
.stoika-section--dark h2,
.stoika-section--dark h3,
.stoika-section--dark h4,
.stoika-hero h1,
.stoika-hero h2 {
  color: #fff !important;
}


/* === FINAL: тёмные секции stoika — белый текст ВЕЗДЕ (макс специфичность) === */
body .stoika-hero,
body .stoika-hero h1,
body .stoika-hero h2,
body .stoika-hero h3,
body .stoika-hero h4,
body .stoika-hero p,
body .stoika-hero span,
body .stoika-hero li,
body .stoika-hero strong,
body .stoika-hero .stoika-section__lead,
body .stoika-hero div:not(.stoika-card__num):not(.stoika-type__icon),
body .stoika-section--dark,
body .stoika-section--dark h1,
body .stoika-section--dark h2,
body .stoika-section--dark h3,
body .stoika-section--dark h4,
body .stoika-section--dark p,
body .stoika-section--dark span,
body .stoika-section--dark li,
body .stoika-section--dark strong,
body .stoika-section--dark .stoika-section__lead,
body .stoika-section--dark .stoika-reveal,
body .stoika-section--dark .stoika-reveal h2,
body .stoika-section--dark .stoika-reveal h3,
body .stoika-section--dark .stoika-reveal p,
body .stoika-section--dark .stoika-card,
body .stoika-section--dark .stoika-card h3,
body .stoika-section--dark .stoika-card p,
body .stoika-section--dark .stoika-card span,
body .stoika-section--dark .stoika-type,
body .stoika-section--dark .stoika-type h3,
body .stoika-section--dark .stoika-type p,
body .stoika-section--dark .stoika-protect__item,
body .stoika-section--dark .stoika-protect__item h3,
body .stoika-section--dark .stoika-protect__item p,
body .stoika-section--dark div:not(.stoika-card__num):not(.stoika-type__icon):not(.stoika-protect__num) {
  color: #fff !important;
}
/* Мягкий белый для body-текста */
body .stoika-hero p,
body .stoika-hero li,
body .stoika-hero .stoika-section__lead,
body .stoika-section--dark p,
body .stoika-section--dark li,
body .stoika-section--dark .stoika-section__lead,
body .stoika-section--dark .stoika-card p,
body .stoika-section--dark .stoika-type p,
body .stoika-section--dark .stoika-protect__item p {
  color: rgba(255,255,255,0.85) !important;
}
/* Цифры остаются бирюзовыми */
body .stoika-section--dark .stoika-protect__num,
body .stoika-hero .stoika-protect__num {
  color: #20A7C1 !important;
}


/* === MAX SPECIFICITY: перебиваем .body-catalog-tovar main { color: #002540 } === */
/* Двойной класс .body-catalog-tovar.body-catalog-tovar повышает специфичность */
body.body-catalog-tovar.body-catalog-tovar .stoika-hero,
body.body-catalog-tovar.body-catalog-tovar .stoika-hero *:not(svg):not(path):not(circle):not(rect):not(line):not(polyline):not(polygon),
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark *:not(svg):not(path):not(circle):not(rect):not(line):not(polyline):not(polygon):not(.wolf-dealer):not(.wolf-dealer *) {
  color: #fff !important;
}
body.body-catalog-tovar.body-catalog-tovar .stoika-hero p,
body.body-catalog-tovar.body-catalog-tovar .stoika-hero li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-section__lead,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-card p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-type p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-protect__item p {
  color: rgba(255,255,255,0.85) !important;
}
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-protect__num {
  color: #20A7C1 !important;
}

/* Также покроем main: чтобы цвет наследовался */
body.body-catalog-tovar.body-catalog-tovar main .stoika-hero,
body.body-catalog-tovar.body-catalog-tovar main .stoika-section--dark {
  color: #fff !important;
}


/* === stoika-section БЕЗ --soft = тёмная секция, белый текст === */
/* Span с inline color сохраняет свой — без !important на span */
section.stoika-section:not(.stoika-section--soft),
section.stoika-section:not(.stoika-section--soft) h1,
section.stoika-section:not(.stoika-section--soft) h2,
section.stoika-section:not(.stoika-section--soft) h3,
section.stoika-section:not(.stoika-section--soft) h4,
section.stoika-section:not(.stoika-section--soft) p,
section.stoika-section:not(.stoika-section--soft) li,
section.stoika-section:not(.stoika-section--soft) strong,
section.stoika-section:not(.stoika-section--soft) em,
section.stoika-section:not(.stoika-section--soft) .stoika-section__lead,
section.stoika-section:not(.stoika-section--soft) .stoika-card,
section.stoika-section:not(.stoika-section--soft) .stoika-card h3,
section.stoika-section:not(.stoika-section--soft) .stoika-card p,
section.stoika-section:not(.stoika-section--soft) .stoika-type,
section.stoika-section:not(.stoika-section--soft) .stoika-type h3,
section.stoika-section:not(.stoika-section--soft) .stoika-type p,
section.stoika-section:not(.stoika-section--soft) .stoika-protect__item,
section.stoika-section:not(.stoika-section--soft) .stoika-protect__item h3,
section.stoika-section:not(.stoika-section--soft) .stoika-protect__item p {
  color: #fff !important;
}
/* span — без !important, inline color побеждает */
section.stoika-section:not(.stoika-section--soft) span:not([style]) {
  color: #fff;
}
/* Полупрозрачный белый для body-текста */
section.stoika-section:not(.stoika-section--soft) p,
section.stoika-section:not(.stoika-section--soft) li,
section.stoika-section:not(.stoika-section--soft) .stoika-section__lead,
section.stoika-section:not(.stoika-section--soft) .stoika-card p,
section.stoika-section:not(.stoika-section--soft) .stoika-type p,
section.stoika-section:not(.stoika-section--soft) .stoika-protect__item p {
  color: rgba(255,255,255,0.85) !important;
}


/* === stoika-card на тёмной секции: темнее фона + бирюзовая рамка === */
section.stoika-section:not(.stoika-section--soft) .stoika-card,
section.stoika-section:not(.stoika-section--soft) .stoika-card.stoika-reveal,
section.stoika-section:not(.stoika-section--soft) .stoika-card.is-visible,
.stoika-hero .stoika-card {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(32, 167, 193, 0.35) !important;
}
section.stoika-section:not(.stoika-section--soft) .stoika-card:hover,
.stoika-hero .stoika-card:hover {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: #20A7C1 !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
}


/* === stoika-card: белая подложка с тёмным текстом даже на тёмной секции === */
section.stoika-section:not(.stoika-section--soft) .stoika-card,
section.stoika-section:not(.stoika-section--soft) .stoika-card.stoika-reveal,
section.stoika-section:not(.stoika-section--soft) .stoika-card.is-visible,
.stoika-hero .stoika-card {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}
section.stoika-section:not(.stoika-section--soft) .stoika-card h3,
section.stoika-section:not(.stoika-section--soft) .stoika-card h4,
.stoika-hero .stoika-card h3,
.stoika-hero .stoika-card h4 {
  color: #002540 !important;
}
section.stoika-section:not(.stoika-section--soft) .stoika-card p,
section.stoika-section:not(.stoika-section--soft) .stoika-card span:not([style]),
section.stoika-section:not(.stoika-section--soft) .stoika-card li,
.stoika-hero .stoika-card p,
.stoika-hero .stoika-card li {
  color: #002540 !important;
}
section.stoika-section:not(.stoika-section--soft) .stoika-card:hover,
.stoika-hero .stoika-card:hover {
  background: #fff !important;
  border-color: #20A7C1 !important;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 37, 64, 0.2) !important;
}


/* === stoika-card.stoika-reveal.is-visible — тёмный текст внутри (макс специфичность) === */
.stoika-card.stoika-reveal,
.stoika-card.stoika-reveal.is-visible,
.stoika-card.stoika-reveal h3,
.stoika-card.stoika-reveal h4,
.stoika-card.stoika-reveal p,
.stoika-card.stoika-reveal li,
.stoika-card.stoika-reveal span:not([style]),
.stoika-card.stoika-reveal.is-visible h3,
.stoika-card.stoika-reveal.is-visible h4,
.stoika-card.stoika-reveal.is-visible p,
.stoika-card.stoika-reveal.is-visible li,
.stoika-card.stoika-reveal.is-visible span:not([style]),
.stoika-card.stoika-reveal.is-visible div:not(.stoika-card__num) {
  color: #002540 !important;
}
.stoika-card.stoika-reveal p,
.stoika-card.stoika-reveal li,
.stoika-card.stoika-reveal.is-visible p,
.stoika-card.stoika-reveal.is-visible li {
  color: #002540 !important;
}
.stoika-card.stoika-reveal,
.stoika-card.stoika-reveal.is-visible {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}


/* === Gallery: убрать max-width:360px у изображений в .gallery-it === */
.gallery-it img,
.gallery-it a img,
[class*="gallery"] .gallery-it img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
  display: block;
}


/* === wolf-prose: размер шрифта 18px === */
.wolf-prose,
p.wolf-prose {
  font-size: 18px !important;
}


/* === stoika-card в светлой секции (--soft) — тёмный текст === */
.stoika-section--soft .stoika-card,
.stoika-section--soft .stoika-card.stoika-reveal,
.stoika-section--soft .stoika-card.stoika-reveal.is-visible {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}
.stoika-section--soft .stoika-card h3,
.stoika-section--soft .stoika-card h4,
.stoika-section--soft .stoika-card.stoika-reveal h3,
.stoika-section--soft .stoika-card.stoika-reveal h4,
.stoika-section--soft .stoika-card.stoika-reveal.is-visible h3,
.stoika-section--soft .stoika-card.stoika-reveal.is-visible h4 {
  color: #002540 !important;
}
.stoika-section--soft .stoika-card p,
.stoika-section--soft .stoika-card li,
.stoika-section--soft .stoika-card span:not([style]),
.stoika-section--soft .stoika-card.stoika-reveal p,
.stoika-section--soft .stoika-card.stoika-reveal li,
.stoika-section--soft .stoika-card.stoika-reveal.is-visible p,
.stoika-section--soft .stoika-card.stoika-reveal.is-visible li {
  color: #002540 !important;
}


/* === stoika-features: карточки в .stoika-features всегда с тёмным текстом #002540 === */
.stoika-features .stoika-card,
.stoika-features .stoika-card.stoika-reveal,
.stoika-features .stoika-card.stoika-reveal.is-visible {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}
.stoika-features .stoika-card h3,
.stoika-features .stoika-card h4,
.stoika-features .stoika-card.stoika-reveal h3,
.stoika-features .stoika-card.stoika-reveal h4,
.stoika-features .stoika-card.stoika-reveal.is-visible h3,
.stoika-features .stoika-card.stoika-reveal.is-visible h4,
.stoika-features .stoika-card p,
.stoika-features .stoika-card li,
.stoika-features .stoika-card span:not([style]),
.stoika-features .stoika-card.stoika-reveal p,
.stoika-features .stoika-card.stoika-reveal li,
.stoika-features .stoika-card.stoika-reveal.is-visible p,
.stoika-features .stoika-card.stoika-reveal.is-visible li {
  color: #002540 !important;
}


/* === stoika-features: карточки → тёмный текст (макс специфичность v2) === */
body .stoika-features.stoika-features .stoika-card,
body .stoika-features.stoika-features .stoika-card.stoika-reveal,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}
body .stoika-features.stoika-features .stoika-card h3,
body .stoika-features.stoika-features .stoika-card h4,
body .stoika-features.stoika-features .stoika-card p,
body .stoika-features.stoika-features .stoika-card li,
body .stoika-features.stoika-features .stoika-card span:not([style]),
body .stoika-features.stoika-features .stoika-card.stoika-reveal h3,
body .stoika-features.stoika-features .stoika-card.stoika-reveal h4,
body .stoika-features.stoika-features .stoika-card.stoika-reveal p,
body .stoika-features.stoika-features .stoika-card.stoika-reveal li,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h3,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h4,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible p,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible li,
body .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible span:not([style]) {
  color: #002540 !important;
}


/* === FINAL: stoika-features внутри stoika-section--dark = тёмный текст #002540 (override) === */
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
}
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card h4,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal h4,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h4,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section--dark .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible span:not([style]),
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card h4,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card li,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible h4,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible p,
body.body-catalog-tovar.body-catalog-tovar .stoika-section .stoika-features.stoika-features .stoika-card.stoika-reveal.is-visible li {
  color: #002540 !important;
}


/* === Digital блок защиты на странице 83 — 4×2 на десктопе, 2×4 на планшете, 1×8 на мобильном === */
@media (max-width: 1100px) {
  .page-83 .stoika-features[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 540px) {
  .page-83 .stoika-features[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}


/* === tth-box-span: подпись под таблицей по центру === */
.tth-box-span,
span.tth-box-span {
  display: block !important;
  text-align: center !important;
  margin: 12px auto 0 !important;
  max-width: 700px !important;
}


/* === stoika-protect__item: тёмный текст p (#002540) для блоков типа "уровней защиты" === */
body.body-catalog-tovar.body-catalog-tovar .stoika-protect__item p,
body.body-catalog-tovar.body-catalog-tovar .stoika-protect__item.stoika-reveal p,
body.body-catalog-tovar.body-catalog-tovar .stoika-protect__item.stoika-reveal.is-visible p {
  color: #002540 !important;
}
body.body-catalog-tovar.body-catalog-tovar .stoika-protect__item h3 {
  color: #002540 !important;
}


/* === stoika-type h3 (блок 'Подходит для защиты') — #002540 === */
body.body-catalog-tovar.body-catalog-tovar .stoika-type h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-type.stoika-reveal h3,
body.body-catalog-tovar.body-catalog-tovar .stoika-type.stoika-reveal.is-visible h3 {
  color: #002540 !important;
}


/* === AM/РЧ: отключить hover в блоке 'Из чего состоит' === */
.benefit-no-hover .benefit-it {
  transition: none !important;
}
.benefit-no-hover .benefit-it:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
}

/* === AM/РЧ: ссылки бирюзовые в .catalog-screen === */
body.body-catalog-tovar .catalog-screen a:not(.button-warning):not(.zakaz-button):not(.zakazat-link):not(.wolf-dealer):not(.catalog-it):not(.breadcrumb-item a) {
  color: #20A7C1 !important;
}
body.body-catalog-tovar .catalog-screen a:not(.button-warning):not(.zakaz-button):not(.zakazat-link):not(.wolf-dealer):hover {
  color: #41B4CA !important;
}


/* === sostav-vertical: цифры над текстом в блоке "Состав системы" === */
.sostav-vertical .benefit-it {
  display: flex !important;
  flex-direction: column;
  padding: 24px;
}
.sostav-vertical .benefit-it .num {
  position: static !important;
  display: block;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: #20A7C1 !important;
  font-size: 28px !important;
  font-weight: 700;
  border-radius: 0 !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  float: none !important;
  line-height: 1;
}
.sostav-vertical .benefit-it h3 {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.sostav-vertical .benefit-it p {
  margin-left: 0 !important;
  padding-left: 0 !important;
}


/* === FAQ summary: размер 18px === */
.wolf-faq summary,
details > summary {
  font-size: 18px !important;
}


/* === benefit-it p — 16px (Состав системы и др.) === */
.benefit-it p,
.sostav-vertical .benefit-it p {
  font-size: 16px !important;
}


/* === FAQ: текст ответов 16px === */
.wolf-faq details p,
.wolf-faq details > p,
.wolf-faq details ul,
.wolf-faq details li {
  font-size: 16px !important;
}


/* === Mobile fix для hero на лендингах деактиваторов === */
@media (max-width: 600px) {
  /* Hero не должен переполняться — overflow:hidden */
  body.body-catalog-tovar section[style*="background:#002540"][style*="position:relative"] {
    overflow: hidden !important;
  }
  /* Картинка hero — уменьшаем на мобилке */
  body.body-catalog-tovar section[style*="background:#002540"] img[style*="max-height"],
  body.body-catalog-tovar section[style*="background:#002540"] .vl-col-lg-6 img,
  body.body-catalog-tovar section[style*="background:#002540"] img[style*="max-width"] {
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  /* Радиальный градиент glow — уменьшаем чтобы не переливался за края */
  body.body-catalog-tovar section[style*="background:#002540"] > div[style*="radial-gradient"] {
    width: 100% !important;
    right: 0 !important;
    opacity: 0.5;
  }
  /* Stats grid — компактнее на мобилке */
  body.body-catalog-tovar section[style*="background:#002540"] [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}


/* === Inline grid 3-col → 1-col на мобилке (фикс выхода за контейнер) === */
@media (max-width: 768px) {
  body.body-catalog-tovar [style*="grid-template-columns:repeat(3,1fr)"],
  body.body-catalog-tovar [style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  body.body-catalog-tovar [style*="grid-template-columns:repeat(4,1fr)"],
  body.body-catalog-tovar [style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  body.body-catalog-tovar [style*="grid-template-columns:repeat(4,1fr)"],
  body.body-catalog-tovar [style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}


/* === Mobile: картинки деактиваторов в hero — max-width 65% + margin-top 32px === */
@media (max-width: 768px) {
  body.body-catalog-tovar section[style*="background:#002540"] .vl-col-lg-6 img,
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Деактиватор"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Sniper"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Maximum"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Universal"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Double"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="Встраиваемый"],
  body.body-catalog-tovar section[style*="background:#002540"] img[alt*="PRO"] {
    max-width: 65% !important;
    width: auto !important;
    height: auto !important;
    margin: 32px auto 0 !important;
    display: block !important;
  }
}


/* === wolf-faq: текст ответов всегда по левой стороне (даже если контейнер по центру) === */
.wolf-faq details p,
.wolf-faq details > p,
.wolf-faq details ul,
.wolf-faq details li {
  text-align: left !important;
}


/* === ТТХ для страниц со встроенным [[*tth_table2]]: отступы === */
body.body-catalog-tovar .tth-box {
  padding-top: 64px !important;
}
body.body-catalog-tovar .tth-box .tth-h3,
body.body-catalog-tovar .tth-h3 {
  margin-bottom: 40px !important;
  text-align: center !important;
}


/* === wolf-faq: summary (заголовок вопроса) всегда по левой стороне === */
.wolf-faq summary,
.wolf-faq details > summary {
  text-align: left !important;
}


/* === Датчики Digital: ссылки в content бирюзовые === */
body.body-catalog-tovar .stoika-section a:not(.button-warning):not(.zakazat-link):not(.stoika-hero__cta):not(.wolf-dealer):not(.zakaz-button),
body.body-catalog-tovar .stoika-hero a:not(.button-warning):not(.zakazat-link):not(.stoika-hero__cta):not(.wolf-dealer):not(.zakaz-button),
body.body-catalog-tovar .zerkal-benefit a:not(.button-warning):not(.zakazat-link):not(.wolf-dealer):not(.zakaz-button),
body.body-catalog-tovar .wolf-faq details a {
  color: #20A7C1 !important;
}
body.body-catalog-tovar .stoika-section a:not(.button-warning):not(.zakazat-link):hover,
body.body-catalog-tovar .stoika-hero a:not(.button-warning):not(.zakazat-link):hover,
body.body-catalog-tovar .zerkal-benefit a:not(.button-warning):not(.zakazat-link):hover,
body.body-catalog-tovar .wolf-faq details a:hover {
  color: #41B4CA !important;
}


/* === stoika-protect__item: бирюзовая обводка === */
.stoika-protect__item {
  border: 1px solid #20A7C1 !important;
}
.stoika-protect__item:hover {
  border-color: #41B4CA !important;
}
