/* ============================================================================
   OpticTrend — РЕДИЗАЙН ИНФО-СТРАНИЦ (/about/*). Заскоуплено под .ot-info.
   Подключается из каждой инфо-страницы при ot_info_redesign_enabled().
   Внедрено 2026-05-27. Откат: флаг INFO_REDESIGN_ENABLED=false |
   touch www/.info_off | ?new_info=0 | restore *.bak.2026-05-27_info.
   Прототип: info_pages_redesign.html. Шапка/крошки/<h1> — от шаблона lens4u
   (PAGE_TYPE='inner'), здесь только тело контента.
   ============================================================================ */

.ot-info {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-soft: #8a8a8a;
  --border: #e5e5e5;
  --border-soft: #efefef;
  --hover: #f5f5f5;
  --ai-accent: #1c3d6e;
  --ai-bg: #eef4ff;
  --ai-border: #cdd9ec;
  --sale: #c63131;
  --sale-bg: #fde8e8;
  --in-stock: #1a7a3e;
  --in-stock-bg: #e8f3ec;
  --popular-bg: #fff7e8;
  --popular-text: #8a5e15;
  --popular-border: #d8c18a;
  --warning: #d97706;
  --warning-bg: #fff4e0;
  --warning-border: #f3c373;
  --tg: #229ED9;

  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-tap-highlight-color: transparent;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4px 0 24px;
}
.ot-info *, .ot-info *::before, .ot-info *::after { box-sizing: border-box; }
.ot-info a { color: inherit; text-decoration: none; }
.ot-info button { font-family: inherit; cursor: pointer; }

/* ==== ОБЩИЙ ЛИД-ТЕКСТ (под шаблонным <h1>) ==== */
.ot-info .info-lead {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 720px;
}

/* ==== ПАНЕЛЬ-БЛОК ==== */
.ot-info .panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 14px;
}
.ot-info .panel-sm { padding: 22px 24px; }
.ot-info .panel h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
}
.ot-info .panel h2 + p { font-size: 14px; color: var(--text-muted); margin: 0 0 20px; }
.ot-info .panel h3 { font-size: 15.5px; font-weight: 700; margin: 18px 0 6px; }
.ot-info .panel p { font-size: 14.5px; line-height: 1.6; color: var(--text); margin: 0 0 10px; }
.ot-info .panel ul { padding-left: 0; list-style: none; margin: 6px 0; }
.ot-info .panel ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 6px;
}
.ot-info .panel ul li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--text-soft);
  border-radius: 50%;
  position: absolute;
  left: 6px; top: 11px;
}
.ot-info .panel a { color: var(--ai-accent); border-bottom: 1px solid var(--ai-border); }
.ot-info .panel a:hover { border-bottom-color: var(--ai-accent); }

/* Заголовок секции вне панели */
.ot-info .section-title {
  margin: 22px 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

/* ==== HIGHLIGHT-КАРТОЧКИ (3 в ряд) ==== */
.ot-info .highlights-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.ot-info .highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ot-info .highlight-card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ai-bg);
  border: 1px solid var(--ai-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ai-accent);
  flex-shrink: 0;
}
.ot-info .highlight-card-icon svg { width: 19px; height: 19px; }
.ot-info .highlight-card.warning .highlight-card-icon { background: var(--warning-bg); border-color: var(--warning-border); color: var(--warning); }
.ot-info .highlight-card.success .highlight-card-icon { background: var(--in-stock-bg); border-color: #b7d4bd; color: var(--in-stock); }
.ot-info .highlight-card.popular .highlight-card-icon { background: var(--popular-bg); border-color: var(--popular-border); color: var(--popular-text); }
.ot-info .highlight-card-title { font-size: 15px; font-weight: 700; margin: 0; }
.ot-info .highlight-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.ot-info .highlight-card-num { font-size: 24px; font-weight: 700; line-height: 1; letter-spacing: -0.5px; margin: 0; }

/* ==== FEATURES (карточки 2-3 в ряд) ==== */
.ot-info .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 14px;
}
.ot-info .feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ot-info .feature-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}
.ot-info .feature-card-icon svg { width: 20px; height: 20px; }
.ot-info .feature-card h3 { font-size: 15.5px; font-weight: 700; margin: 4px 0 0; }
.ot-info .feature-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ==== STATS — крупные цифры ==== */
.ot-info .stats-strip {
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ot-info .stat-item { text-align: center; }
.ot-info .stat-item-num { font-size: 36px; font-weight: 700; letter-spacing: -1px; line-height: 1; margin: 0 0 6px; }
.ot-info .stat-item-label { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ==== CTA блок ==== */
.ot-info .cta-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 14px;
}
.ot-info .cta-block h3 { font-size: 19px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.3px; }
.ot-info .cta-block p { font-size: 14px; color: var(--text-muted); margin: 0 0 16px; }
.ot-info .cta-block-actions { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ot-info .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.1s, border-color 0.1s;
}
.ot-info .cta-btn-primary { background: var(--text); color: #fff; border-color: var(--text); }
.ot-info .cta-btn-primary:hover { background: #000; }
.ot-info .cta-btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.ot-info .cta-btn-secondary:hover { border-color: var(--text); }
.ot-info .cta-btn-tg { background: var(--tg); color: #fff; border-color: var(--tg); }
.ot-info .cta-btn-tg:hover { background: #1a8bc4; }
.ot-info .cta-btn svg { width: 14px; height: 14px; }

/* ==== CONTACT GRID (контакты + карта) ==== */
.ot-info .contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.ot-info .contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.ot-info .contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ot-info .contact-row:last-child { border-bottom: none; }
.ot-info .contact-row-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}
.ot-info .contact-row-icon svg { width: 17px; height: 17px; }
.ot-info .contact-row-body { flex: 1; }
.ot-info .contact-row-label {
  font-size: 11.5px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 3px;
}
.ot-info .contact-row-value { font-size: 15px; color: var(--text); line-height: 1.4; }
.ot-info .contact-row-value strong { font-weight: 600; }
.ot-info .contact-row-value a { color: var(--text); border-bottom: 1px solid var(--text-soft); }

/* Карта */
.ot-info .contact-map {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
}
.ot-info .contact-map iframe { display: block; border: 0; width: 100%; height: 100%; min-height: 360px; }

/* Реквизиты — details/summary */
.ot-info details.requisites {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 14px;
  overflow: hidden;
}
.ot-info details.requisites > summary {
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
}
.ot-info details.requisites > summary::-webkit-details-marker { display: none; }
.ot-info details.requisites > summary::after { content: "⌄"; color: var(--text-soft); transition: transform 0.2s; }
.ot-info details.requisites[open] > summary::after { transform: rotate(180deg); }
.ot-info details.requisites .requisites-body {
  padding: 0 24px 22px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.ot-info details.requisites .requisites-body dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 6px 16px;
  margin: 0;
}
.ot-info details.requisites dt { color: var(--text-soft); }
.ot-info details.requisites dd { color: var(--text); margin: 0; word-break: break-all; }

/* ==== АККОРДЕОН (FAQ-секции) ==== */
.ot-info .accordion-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.ot-info details.accordion {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ot-info details.accordion > summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600;
}
.ot-info details.accordion > summary::-webkit-details-marker { display: none; }
.ot-info details.accordion .acc-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.ot-info details.accordion[open] .acc-num { background: var(--text); color: #fff; }
.ot-info details.accordion .acc-arrow { margin-left: auto; color: var(--text-soft); transition: transform 0.2s; width: 14px; height: 14px; }
.ot-info details.accordion[open] .acc-arrow { transform: rotate(180deg); color: var(--text); }
.ot-info details.accordion .acc-body { padding: 0 24px 22px 66px; font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.ot-info details.accordion .acc-body p { margin: 0 0 10px; color: var(--text); }
.ot-info details.accordion .acc-body ul { margin: 0; padding-left: 18px; }
.ot-info details.accordion .acc-body strong { font-weight: 600; }

/* ==== CODE-CALLOUT (код возврата) ==== */
.ot-info .code-callout {
  background: var(--popular-bg);
  border: 1px solid var(--popular-border);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 14px 0;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.ot-info .code-callout-icon {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--popular-text);
  flex-shrink: 0;
}
.ot-info .code-callout-icon svg { width: 16px; height: 16px; }
.ot-info .code-callout-body { flex: 1; min-width: 200px; }
.ot-info .code-callout-label {
  font-size: 11.5px; color: var(--popular-text);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  margin-bottom: 2px;
}
.ot-info .code-callout-value {
  font-size: 22px; font-weight: 700; color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.2px;
}
.ot-info .code-callout-copy {
  background: var(--text); color: #fff;
  border: none; padding: 9px 18px; border-radius: 18px;
  font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.ot-info .code-callout-copy svg { width: 13px; height: 13px; }

/* ==== ДВЕ КОЛОНКИ ✓/✗ ==== */
.ot-info .yes-no-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.ot-info .yes-no-card { border-radius: 12px; padding: 22px 24px; }
.ot-info .yes-no-card.yes { background: var(--in-stock-bg); border: 1px solid #b7d4bd; }
.ot-info .yes-no-card.no { background: var(--sale-bg); border: 1px solid #f0c4c4; }
.ot-info .yes-no-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ot-info .yes-no-card-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ot-info .yes-no-card-icon svg { width: 14px; height: 14px; }
.ot-info .yes-no-card.yes .yes-no-card-icon { color: var(--in-stock); }
.ot-info .yes-no-card.no .yes-no-card-icon { color: var(--sale); }
.ot-info .yes-no-card-title { font-size: 14.5px; font-weight: 700; margin: 0; }
.ot-info .yes-no-card.yes .yes-no-card-title { color: #0d5d2d; }
.ot-info .yes-no-card.no .yes-no-card-title { color: #8a1c1c; }
.ot-info .yes-no-card ul { margin: 0; padding: 0; list-style: none; }
.ot-info .yes-no-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
}
.ot-info .yes-no-card.yes ul li::before { content: "✓"; color: var(--in-stock); font-weight: 700; position: absolute; left: 0; top: 0; }
.ot-info .yes-no-card.no ul li::before { content: "×"; color: var(--sale); font-weight: 700; font-size: 16px; line-height: 1.3; position: absolute; left: 2px; top: 0; }

/* ==== ПРОЦЕСС-ТАЙМЛАЙН (шаги) ==== */
.ot-info .process-steps { display: flex; flex-direction: column; gap: 0; }
.ot-info .process-step { display: flex; gap: 16px; position: relative; padding-bottom: 20px; }
.ot-info .process-step:last-child { padding-bottom: 0; }
.ot-info .process-step-marker {
  width: 32px; height: 32px;
  background: var(--text); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0; position: relative; z-index: 2;
}
.ot-info .process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15.5px; top: 32px; bottom: 0;
  width: 1px; background: var(--border);
}
.ot-info .process-step-body { flex: 1; padding-top: 4px; }
.ot-info .process-step-title { font-size: 14.5px; font-weight: 700; margin: 0 0 4px; }
.ot-info .process-step-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }
.ot-info .process-step-text strong { color: var(--text); font-weight: 600; }

/* ==== WARNING-БЛОК ==== */
.ot-info .warning-block {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 14px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.ot-info .warning-block-icon {
  width: 32px; height: 32px;
  background: #fff;
  border: 1px solid var(--warning-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--warning);
  flex-shrink: 0;
}
.ot-info .warning-block-icon svg { width: 16px; height: 16px; }
.ot-info .warning-block-body { color: var(--warning); flex: 1; font-size: 13.5px; line-height: 1.55; }
.ot-info .warning-block-title { font-weight: 700; margin: 0 0 4px; font-size: 14.5px; color: var(--warning); }

/* ==== ПЛАТЁЖНЫЕ КАРТОЧКИ ==== */
.ot-info .payment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.ot-info .payment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.ot-info .payment-card-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}
.ot-info .payment-card-icon svg { width: 22px; height: 22px; }
.ot-info .payment-card h3 { font-size: 15.5px; font-weight: 700; margin: 4px 0 0; }
.ot-info .payment-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0 0 4px; }
.ot-info .payment-card-logos { display: flex; gap: 6px; flex-wrap: wrap; }
.ot-info .payment-logo {
  background: var(--bg); color: var(--text-muted);
  font-size: 10.5px; font-weight: 600;
  padding: 4px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}

/* ==== CROSS-LINK (переход на другую страницу) ==== */
.ot-info .cross-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px;
  background: var(--ai-bg);
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  margin: 14px 0;
  text-decoration: none; color: inherit;
  transition: background 0.1s;
}
.ot-info .cross-link:hover { background: #dde8f7; }
.ot-info .cross-link-icon {
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ai-accent);
  flex-shrink: 0;
}
.ot-info .cross-link-icon svg { width: 17px; height: 17px; }
.ot-info .cross-link-body { flex: 1; }
.ot-info .cross-link-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 2px; }
.ot-info .cross-link-text { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.ot-info .cross-link-arrow { color: var(--ai-accent); flex-shrink: 0; }
.ot-info .cross-link-arrow svg { width: 18px; height: 18px; }

/* ==== CARE GRID (карточки ухода) ==== */
.ot-info .care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.ot-info .care-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
}
.ot-info .care-card-icon {
  width: 48px; height: 48px;
  background: var(--ai-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ai-accent);
  margin-bottom: 12px;
}
.ot-info .care-card-icon svg { width: 24px; height: 24px; }
.ot-info .care-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 10px; }
.ot-info .care-card ul { margin: 0; padding: 0; list-style: none; }
.ot-info .care-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.ot-info .care-card ul li:last-child { margin-bottom: 0; }
.ot-info .care-card ul li::before { content: "✓"; color: var(--in-stock); font-weight: 700; position: absolute; left: 0; top: 0; }

/* ==== SHOWROOM (плашки «что можно») ==== */
.ot-info .showroom-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.ot-info .sf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: center;
}
.ot-info .sf-card-icon {
  width: 48px; height: 48px;
  background: var(--ai-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ai-accent);
  margin: 0 auto 12px;
}
.ot-info .sf-card-icon svg { width: 22px; height: 22px; }
.ot-info .sf-card h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 6px; }
.ot-info .sf-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
  .ot-info .highlights-3,
  .ot-info .features-grid,
  .ot-info .care-grid,
  .ot-info .showroom-features,
  .ot-info .payment-cards { grid-template-columns: repeat(2, 1fr); }
  .ot-info .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; padding: 24px; }
  .ot-info .stat-item-num { font-size: 28px; }
  .ot-info .contact-layout { grid-template-columns: 1fr; }
  .ot-info .contact-map iframe { min-height: 280px; }
  .ot-info .yes-no-grid { grid-template-columns: 1fr; }
  .ot-info details.requisites .requisites-body dl { grid-template-columns: 1fr; gap: 2px 0; }
  .ot-info details.requisites dt { margin-top: 8px; }
}
@media (max-width: 600px) {
  .ot-info .info-lead { font-size: 14.5px; }
  .ot-info .panel { padding: 22px 18px; border-radius: 10px; }
  .ot-info .highlights-3,
  .ot-info .features-grid,
  .ot-info .care-grid,
  .ot-info .showroom-features,
  .ot-info .payment-cards { grid-template-columns: 1fr; }
  .ot-info .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 22px; }
  .ot-info details.accordion > summary { padding: 16px 18px; font-size: 14px; }
  .ot-info details.accordion .acc-body { padding: 0 18px 18px 50px; }
  .ot-info .code-callout-value { font-size: 18px; }
  .ot-info .yes-no-card { padding: 18px; }
  .ot-info .cta-block { padding: 22px 18px; }
  .ot-info .cta-block h3 { font-size: 17px; }
  .ot-info .stat-item-num { font-size: 24px; }
}

/* ============================================================================
   ХЕДЕР СТРАНИЦЫ: H1 + хлебные крошки (вне .ot-info — их рендерит шаблон lens4u).
   Этот файл грузится ТОЛЬКО на /about/* → правила не влияют на остальной сайт,
   так что селекторы по .title / nav[aria-label] здесь безопасны.

   1) H1 — в стиле прототипа (info-hero h1): 36px / 700 / -0.7px / line-height 1.1.
   2) Крошки — приведены к СТАНДАРТУ сайта (как в каталоге/PDP — ot_breadcrumbs.css /
      pdp.css): серая плашка #f3f3f3 на всю ширину, системный шрифт 12.5px, цвет
      #6b6b6b, разделитель «·», ховер #1a1a1a; на телефоне — только родительский
      раздел как «‹ …» (решение заказчика).
   Текст крошек и H1 ограничены 1000px по центру = ширине .ot-info → единый левый край.
   ============================================================================ */

/* --- H1 (.title рендерит шаблон для PAGE_TYPE='inner') --- */
.main h1.title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1.1;
  color: #1a1a1a;
}

/* --- Хлебные крошки: СТАНДАРТ (один в один каталог/PDP), текст по ширине контента --- */
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] {
  max-width: none; margin: 0; padding: 14px 0 0;
  background: #f3f3f3;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs {
  max-width: 1000px; margin: 0 auto; padding: 0;
  font-size: 12.5px;
}
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item,
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__link { color: #6b6b6b; font-weight: 400; }
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__link:hover { color: #1a1a1a; }
nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__link:after {
  content: "·"; top: 0; padding: 0 7px; color: #b0b0b0; font-weight: 400;
}

/* Планшет (<1280px): крошки скрыты классом .visible-lg — показываем тонкой строкой */
@media (max-width: 1279px) {
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] {
    display: block !important; min-width: 0; padding-left: 0; padding-right: 0;
  }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs {
    margin: 8px auto; padding: 0 16px; font-size: 12px; line-height: 1.3;
    white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs::-webkit-scrollbar { display: none; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs { scrollbar-width: none; }
  .main h1.title { padding-left: 16px; padding-right: 16px; }
}

/* Телефон (≤767px): H1 мельче; крошки = только родительский раздел как «‹ …» назад */
@media (max-width: 767px) {
  .main h1.title { font-size: 26px; letter-spacing: -0.4px; padding-top: 14px; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs { overflow: visible; white-space: normal; margin: 8px auto; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item { display: none !important; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item:nth-last-child(2) { display: inline-flex !important; align-items: center; max-width: 100%; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item:nth-last-child(2) .breadcrumbs__link {
    font-size: 13px !important; color: #1a1a1a !important; font-weight: 500;
    max-width: 78vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item:nth-last-child(2) .breadcrumbs__link:after { content: none !important; padding: 0 !important; }
  nav.visible-lg.extra-padding[aria-label="Хлебные крошки"] .breadcrumbs__item:nth-last-child(2) .breadcrumbs__link:before { content: "‹"; margin-right: 7px; color: #6b6b6b; font-size: 16px; font-weight: 400; }
}

/* ============================================================================
   ЗАЛИВКА СТРАНИЦЫ — серый фон контентной зоны (как в корзине и карточке/PDP).
   Прототип: --bg #f3f3f3. Красим .main (зона ниже шапки) ТОЧЕЧНО — только когда на
   странице есть .ot-info, как pdp.css `body:has(.ot-pdp) .main`. Шапка/подвал со
   своими фонами не затрагиваются. Серая плашка крошек (выше) сливается с фоном бесшовно.
   На сером фоне белые карточки разделяются без рамок → убираем рамки neutral-карточек
   (рамки добавляли как воркэраунд для белого фона; цветные callout-рамки остаются).
   ============================================================================ */
body:has(.ot-info) .main { background: #f3f3f3; }

.ot-info .panel,
.ot-info .feature-card,
.ot-info .highlight-card,
.ot-info .payment-card,
.ot-info .care-card,
.ot-info .sf-card,
.ot-info details.accordion,
.ot-info details.requisites,
.ot-info .cta-block,
.ot-info .contact-map { border: none; }
