/* ===================================================================
   Beita Marketing v2 — Product page template
   Loaded AFTER marketing-v2.css + mockups.css. All selectors scoped
   under `body.v2` to avoid leaking into auth/donate/portal pages.

   Sections (in order):
     1.  .product-hero-v2          — breadcrumb + badge + H1 + mockup
     2.  .product-value-props      — 3-card grid (icon + title + desc)
     3.  .product-deep-dive        — alternating text/visual rows
     4.  .product-how-it-works     — 4-step timeline
     5.  .product-quote            — large pull-quote with attribution
     6.  .product-stats-band       — dark band with 3-4 KPIs
     7.  .product-plans-callout    — "כלול במסלולים …" info card
     8.  .product-faq-v2           — accordion (extends .faq-v2 styling)
     9.  .product-related-products — 3 related-product cards
   (Final CTA reuses `body.v2 .final-cta-v2` from marketing-v2.css.)
   =================================================================== */


/* ─── 1. PRODUCT HERO ─────────────────────────────────────────── */
body.v2 .product-hero-v2 {
  position: relative;
  padding-block: 64px 32px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-bottom: 1px solid var(--hairline);
}
body.v2 .product-hero-v2 .ph-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-max-v2);
  margin-inline: auto;
  padding-inline: var(--container-px-v2);
}
body.v2 .product-hero-v2 .ph-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
body.v2 .product-hero-v2 .ph-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s ease;
}
body.v2 .product-hero-v2 .ph-breadcrumb a:hover { color: var(--accent); }
body.v2 .product-hero-v2 .ph-breadcrumb .sep { color: var(--ink-mute); opacity: .6; }
body.v2 .product-hero-v2 .ph-breadcrumb .here { color: var(--ink); font-weight: 600; }

body.v2 .product-hero-v2 .ph-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px; font-weight: 700;
  letter-spacing: -.005em;
  margin-bottom: 22px;
}
body.v2 .product-hero-v2 .ph-badge i { width: 15px; height: 15px; }

body.v2 .product-hero-v2 h1 {
  font-family: var(--font-display);
  font-size: var(--fs-product-h1);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
body.v2 .product-hero-v2 h1 .accent { color: var(--accent); }
body.v2 .product-hero-v2 h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--accent);
}
body.v2 .product-hero-v2 .ph-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 30px;
}
body.v2 .product-hero-v2 .ph-ctas {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; margin-bottom: 26px;
}
body.v2 .product-hero-v2 .ph-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  color: var(--ink-mute); font-size: 14px;
  align-items: center;
}
body.v2 .product-hero-v2 .ph-trust span { display: inline-flex; align-items: center; gap: 6px; }
body.v2 .product-hero-v2 .ph-trust i { width: 14px; height: 14px; color: var(--accent); }

body.v2 .product-hero-v2 .ph-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  body.v2 .product-hero-v2 .ph-visual {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform .35s ease;
  }
  body.v2 .product-hero-v2 .ph-visual:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  }
}

/* TV theme picker (used only on /products/digital-screen.html) */
body.v2 .tv-theme-picker {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 18px;
}
body.v2 .tv-theme-picker .tp-swatch {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
body.v2 .tv-theme-picker .tp-swatch:hover {
  border-color: var(--accent);
  color: var(--accent);
}
body.v2 .tv-theme-picker .tp-swatch[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface-2);
}
body.v2 .tv-theme-picker .tp-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}
body.v2 .tv-theme-picker .tp-dot.classic { background: #D4A843; }
body.v2 .tv-theme-picker .tp-dot.clean   { background: #4D9DE6; }
body.v2 .tv-theme-picker .tp-dot.modern  { background: #14B8A6; }

@media (max-width: 1024px) {
  body.v2 .product-hero-v2 .ph-inner { grid-template-columns: 1fr; gap: 36px; }
  body.v2 .product-hero-v2 { padding-block: 36px 24px; }
  body.v2 .product-hero-v2 .ph-text { order: 1; }
  body.v2 .product-hero-v2 .ph-visual { order: 2; }
}


/* ─── 2. VALUE PROPS (3-card grid) ────────────────────────────── */
body.v2 .product-value-props {
  background: var(--surface);
}
body.v2 .product-value-props .vp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
body.v2 .product-value-props .vp-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .product-value-props .vp-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .product-value-props .vp-sub {
  color: var(--ink-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
body.v2 .product-value-props .vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .product-value-props .vp-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px 24px 26px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 6px 20px -14px rgba(26,26,46,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
body.v2 .product-value-props .vp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(26,26,46,.22);
}
body.v2 .product-value-props .vp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
body.v2 .product-value-props .vp-icon i { width: 26px; height: 26px; }
body.v2 .product-value-props .vp-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
body.v2 .product-value-props .vp-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  body.v2 .product-value-props .vp-grid { grid-template-columns: 1fr; gap: 16px; }
  body.v2 .product-value-props .vp-head { margin-bottom: 32px; }
}


/* ─── 3. DEEP DIVE (alternating rows) ─────────────────────────── */
body.v2 .product-deep-dive {
  background: var(--surface);
}
body.v2 .product-deep-dive + .product-deep-dive { padding-top: 0; }

body.v2 .product-deep-dive .pd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--container-max-v2);
  margin-inline: auto;
  padding-inline: var(--container-px-v2);
}
body.v2 .product-deep-dive.reversed .pd-row { direction: ltr; }
body.v2 .product-deep-dive.reversed .pd-row > * { direction: rtl; }

body.v2 .product-deep-dive .pd-text { max-width: 520px; }
body.v2 .product-deep-dive .pd-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .product-deep-dive .pd-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-product-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
body.v2 .product-deep-dive .pd-h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--accent);
}
body.v2 .product-deep-dive .pd-lead {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 26px;
}
body.v2 .product-deep-dive .pd-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
body.v2 .product-deep-dive .pd-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
body.v2 .product-deep-dive .pd-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230057B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  margin-top: 1px;
}

body.v2 .product-deep-dive .pd-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  body.v2 .product-deep-dive .pd-visual {
    transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
    transition: transform .35s ease;
  }
  body.v2 .product-deep-dive.reversed .pd-visual {
    transform: perspective(1200px) rotateY(3deg) rotateX(1.5deg);
  }
  body.v2 .product-deep-dive .pd-visual:hover {
    transform: perspective(1200px) rotateY(-1.5deg) rotateX(.75deg);
  }
  body.v2 .product-deep-dive.reversed .pd-visual:hover {
    transform: perspective(1200px) rotateY(1.5deg) rotateX(.75deg);
  }
}

@media (max-width: 1024px) {
  body.v2 .product-deep-dive .pd-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  body.v2 .product-deep-dive .pd-text { order: 1; max-width: 100%; }
  body.v2 .product-deep-dive .pd-visual { order: 2; }
  body.v2 .product-deep-dive.reversed .pd-row { direction: rtl; }
}


/* ─── 4. HOW IT WORKS (4-step timeline) ───────────────────────── */
body.v2 .product-how-it-works {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-warm) 100%);
}
body.v2 .product-how-it-works .hw-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
body.v2 .product-how-it-works .hw-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .product-how-it-works .hw-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .product-how-it-works .hw-sub {
  color: var(--ink-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
body.v2 .product-how-it-works .hw-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .product-how-it-works .hw-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--hairline-strong) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
body.v2 .product-how-it-works .hw-step {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 26px 22px 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 6px 20px -12px rgba(26,26,46,.16);
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
body.v2 .product-how-it-works .hw-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(26,26,46,.22);
}
body.v2 .product-how-it-works .hw-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--surface-2);
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  font-feature-settings: 'tnum';
}
body.v2 .product-how-it-works .hw-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.015em;
  margin: 0 0 8px;
  line-height: 1.3;
}
body.v2 .product-how-it-works .hw-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
body.v2 .product-how-it-works .hw-step .hw-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: -.005em;
}

@media (max-width: 1024px) {
  body.v2 .product-how-it-works .hw-steps { grid-template-columns: repeat(2, 1fr); }
  body.v2 .product-how-it-works .hw-steps::before { display: none; }
}
@media (max-width: 640px) {
  body.v2 .product-how-it-works .hw-steps { grid-template-columns: 1fr; gap: 16px; }
  body.v2 .product-how-it-works .hw-head { margin-bottom: 36px; }
}


/* ─── 5. PULL QUOTE ───────────────────────────────────────────── */
body.v2 .product-quote {
  background: var(--surface-warm);
  text-align: center;
}
body.v2 .product-quote .pq-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-inline: var(--container-px-v2);
}
body.v2 .product-quote .pq-mark {
  font-family: var(--font-serif);
  font-size: 160px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.8;
  color: var(--primary-tint);
  position: absolute;
  top: -24px;
  right: -8px;
  pointer-events: none;
  user-select: none;
}
body.v2 .product-quote .pq-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
body.v2 .product-quote .pq-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
body.v2 .product-quote .pq-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--surface-2);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
body.v2 .product-quote .pq-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
body.v2 .product-quote .pq-role {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 640px) {
  body.v2 .product-quote .pq-mark { font-size: 110px; top: -10px; right: 0; }
}


/* ─── 6. STATS BAND (3-4 KPIs on dark) ────────────────────────── */
body.v2 .product-stats-band {
  background: var(--ink);
  color: var(--surface-2);
  position: relative;
  overflow: hidden;
}
body.v2 .product-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(0,87,184,.20), transparent 55%),
    radial-gradient(circle at 82% 70%, rgba(74,71,163,.18), transparent 55%);
  pointer-events: none;
}
body.v2 .product-stats-band .container { position: relative; z-index: 1; }
body.v2 .product-stats-band .psb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .product-stats-band .psb-cell {
  text-align: center;
  padding: 18px 12px;
}
body.v2 .product-stats-band .psb-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--surface-2);
  margin-bottom: 8px;
  font-feature-settings: 'tnum';
}
body.v2 .product-stats-band .psb-value .accent { color: var(--accent-soft); }
body.v2 .product-stats-band .psb-label {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  body.v2 .product-stats-band .psb-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  body.v2 .product-stats-band .psb-cell { padding: 14px 10px; }
  body.v2 .product-stats-band .psb-value { font-size: 34px; }
}


/* ─── 7. PLANS CALLOUT ────────────────────────────────────────── */
body.v2 .product-plans-callout {
  background: var(--surface);
  padding-block: 64px;
}
body.v2 .product-plans-callout .pp-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--accent-tint) 100%);
  border: 1px solid rgba(45,45,112,0.14); /* fallback for browsers without color-mix() */
  border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
body.v2 .product-plans-callout .pp-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px -10px rgba(45,45,112,.30);
}
body.v2 .product-plans-callout .pp-icon i { width: 28px; height: 28px; }
body.v2 .product-plans-callout .pp-body { flex: 1 1 320px; }
body.v2 .product-plans-callout .pp-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 6px;
}
body.v2 .product-plans-callout .pp-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
body.v2 .product-plans-callout .pp-sub strong {
  color: var(--primary);
  font-weight: 700;
}
body.v2 .product-plans-callout .pp-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink);
  color: var(--surface-2);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
body.v2 .product-plans-callout .pp-link:hover {
  transform: translateY(-1px);
  background: var(--primary);
  box-shadow: 0 12px 24px -10px rgba(45,45,112,.30);
}
body.v2 .product-plans-callout .pp-link i { width: 15px; height: 15px; }

@media (max-width: 640px) {
  body.v2 .product-plans-callout .pp-card { padding: 24px 22px; }
  body.v2 .product-plans-callout .pp-link { width: 100%; justify-content: center; }
}


/* ─── 8. PRODUCT FAQ (extends .faq-v2) ────────────────────────── */
body.v2 .product-faq-v2 {
  background: var(--surface-2);
}
body.v2 .product-faq-v2 .pf-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
body.v2 .product-faq-v2 .pf-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .product-faq-v2 .pf-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .product-faq-v2 .pf-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.v2 .product-faq-v2 details {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.v2 .product-faq-v2 details[open] {
  border-color: var(--hairline-strong);
  box-shadow: 0 6px 18px -12px rgba(26,26,46,.18);
}
body.v2 .product-faq-v2 summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
body.v2 .product-faq-v2 summary::-webkit-details-marker { display: none; }
body.v2 .product-faq-v2 summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
  transition: transform .25s ease;
}
body.v2 .product-faq-v2 details[open] summary::after {
  transform: rotate(45deg);
}
body.v2 .product-faq-v2 .pf-body {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 640px) {
  body.v2 .product-faq-v2 summary { padding: 16px 18px; font-size: 15.5px; }
  body.v2 .product-faq-v2 .pf-body { padding: 0 18px 18px; font-size: 14.5px; }
}


/* ─── 9. RELATED PRODUCTS (3-card grid) ───────────────────────── */
body.v2 .product-related-products {
  background: var(--surface);
}
body.v2 .product-related-products .rp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
body.v2 .product-related-products .rp-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .product-related-products .rp-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
body.v2 .product-related-products .rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .product-related-products .rp-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.v2 .product-related-products .rp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(26,26,46,.22);
  border-color: var(--hairline-strong);
}
body.v2 .product-related-products .rp-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
body.v2 .product-related-products .rp-icon.green  { background: #D1FAE5; color: #047857; }
body.v2 .product-related-products .rp-icon.orange { background: #FEF3C7; color: #B45309; }
body.v2 .product-related-products .rp-icon.pink   { background: #FFE4E6; color: #BE123C; }
body.v2 .product-related-products .rp-icon.purple { background: #EDE9FE; color: #6D28D9; }
body.v2 .product-related-products .rp-icon i { width: 24px; height: 24px; }
body.v2 .product-related-products .rp-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
body.v2 .product-related-products .rp-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
body.v2 .product-related-products .rp-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}
body.v2 .product-related-products .rp-arrow i { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  body.v2 .product-related-products .rp-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ─── TV BEZEL THEMES (data-tv-theme attribute hook) ──────────── */
/* `classic` (gold/dark) is the default from mockups.css. Variants
   below override the screen palette only — bezel chrome unchanged. */
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen {
  background: radial-gradient(ellipse 70% 60% at 50% 30%, #142850, #0A1735);
  border-color: rgba(77,157,230,.4);
}
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-shul,
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-date,
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-time,
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-time-cell .lbl,
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-time-cell .val {
  color: #BBDDFF;
}
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-time {
  text-shadow: 0 0 40px rgba(77,157,230,.4);
  color: #4D9DE6;
}
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-time-cell {
  border-color: rgba(77,157,230,.3);
  background: rgba(77,157,230,.06);
}
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-marquee {
  border-top-color: rgba(77,157,230,.2);
}
body.v2 .tv-bezel[data-tv-theme="clean"] .tv-screen .tv-marquee::before { color: #4D9DE6; }

body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen {
  background: radial-gradient(ellipse 70% 60% at 50% 30%, #052E2B, #021816);
  border-color: rgba(20,184,166,.4);
}
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-shul,
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-date,
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-time-cell .lbl,
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-time-cell .val {
  color: #5EEAD4;
}
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-time {
  color: #14B8A6;
  text-shadow: 0 0 40px rgba(20,184,166,.4);
}
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-time-cell {
  border-color: rgba(20,184,166,.3);
  background: rgba(20,184,166,.06);
}
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-marquee {
  border-top-color: rgba(20,184,166,.2);
}
body.v2 .tv-bezel[data-tv-theme="modern"] .tv-screen .tv-marquee::before { color: #14B8A6; }


/* ─── SHARED — section spacing helper ─────────────────────────── */
body.v2 section[data-v2-section].product-plans-callout { padding-block: 64px; }
