/* ── Mobile typography floor for the "v4" product-page template ──────────
   Every product page (~260+ of them) embeds its own copy of this template's
   CSS rather than sharing one file, and its font-size: clamp(FLOORpx, …)
   rules were tuned for a wide desktop canvas — on an actual phone the vw
   term is nearly zero, so text collapses to FLOOR, and many floors across
   the template sit at 10–11px, too small to read comfortably (e.g. on a
   Galaxy S-series phone).
   This file is linked once from inc/header.php, so it reaches every page
   without editing 260+ files individually. It only touches font-size,
   only inside the ≤600px query, and uses !important because each page's
   own inline <style> block is emitted later in the document than this
   external stylesheet, so equal-specificity rules would otherwise win by
   source order. Selectors below were aggregated from the shared template
   across the whole product-page set — see chat history for the scan. */
@media (max-width: 600px) {
  /* body copy / data the visitor actually reads → 14px */
  .v4-hero-lede,
  .v4-section-head p, .v4 .v4-section-head p,
  .v4-section p,
  .v4-section li,
  .v4-test-bullets li,
  .v4-fam-card p,
  .v4-arch-sub-cell p,
  .v4-details p,
  .v4-details table,
  .v4-ga-section .v4-ga-lede,
  .v4-ga-meta .v4-ga-meta-val,
  .v4-ga-ledger-v,
  .v4-ga-motor-kw,
  .v4 .va-card p,
  .vm-section p,
  .vm-keymetric .val,
  .vm-spec-grid .val,
  .vm-protocol-row .pdesc,
  .v4-cta p {
    font-size: 14px !important;
  }

  /* sub-headings / titles that sit above that body copy → 15px */
  .v4-ga-ortho-title,
  .vm-head h2,
  .vm-tagline,
  .vm-section h3,
  .v4-fam-card h4,
  .v4-arch-sub-cell h4,
  .v4-details h4,
  .v4 .va-card h4 {
    font-size: 15px !important;
  }

  /* meta / labels / micro-copy → 12px (kept compact on purpose, just not illegible) */
  .v4,
  .v4-btn, .v4 .v4-btn,
  .v4-download-title,
  .v4-download-label,
  .v4-download-meta,
  .v4-spec-table,
  .v4-spec-table th,
  .v4-app,
  .v4-app-num,
  .v4-faq-summary,
  .v4-faq-idx,
  .v4-faq-body,
  .v4-marker,
  .v4-trust-strip-label,
  .v4-trust-badge,
  .v4-metastrip, .v4 .v4-metastrip,
  .v4-figure-caption,
  .v4-spec-l,
  .v4-section-num,
  .v4-fam-tp,
  .v4-fam-card .tag,
  .v4-arch-sub-cell .code,
  .v4-colophon,
  .v4-cta-side dd,
  .v4-cta-side dt,
  .v4-ga-ortho-note,
  .vm-protocol-row .pname,
  .v4-details table th {
    font-size: 12px !important;
  }
}
