/* ============================================================
   FORD FRONTIER INVESTMENTS — mobile-fix.css
   This file is intentionally minimal — all responsive rules
   are now consolidated in main.css. Only mobile-nav panel
   overrides live here.
   ============================================================ */

/* Mobile nav panel: slide in from right */
.nav__mobile {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav__mobile.open,
.nav__mobile.is-open {
  display: block;
  transform: translateX(0);
}
