/* ── Supprime le délai 300ms sur tous les éléments interactifs ──────────
   touch-action: manipulation désactive le double-tap-to-zoom qui cause
   la latence. Aucun impact sur le comportement existant. */
a, button, [role="button"], input, label, select, textarea,
[onclick], summary, [tabindex] {
  touch-action: manipulation;
}
