/*
 * mobile-touch-targets.css
 * Couche additive — porte à ≥ 44px quelques contrôles tactiles qui restaient
 * à 32-37px sur mobile (issus du Tailwind compilé /dist) :
 *   - bouton "Déposer" du header (conversion)
 *   - lien "Créer un compte" du menu compte
 *   - boutons réseaux sociaux du footer
 * Chargée EN DERNIER. 100% additive (@media max-width:768px). Aucun impact desktop.
 * N'ajuste que la zone tactile (hauteur/largeur min), pas l'identité visuelle.
 */
@media (max-width: 768px) {
  a.lt-gl-nav__deposit,
  a.lt26-nav__deposit,
  a.lt26-user-dropdown__register,
  a.lt26-footer__social-btn {
    min-height: 44px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  a.lt26-footer__social-btn { min-width: 44px; }

  /* Acheter : pastilles de tri (étaient figées à 36px par .ae-sort.is-cin-ready) */
  .ae-sort .ae-sort-pill,
  .ae-sort.is-cin-ready .ae-sort-pill {
    min-height: 44px;
    height: auto;
    display: inline-flex;
    align-items: center;
  }
}
