/* ALL-LINK® mobile-override.css
   Layout is now handled in App.jsx via useIsMobile() hook.
   This file intentionally left minimal to avoid conflicts. */

/* iPhone safe area only */
@supports (padding: max(0px)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Hide horizontal scrollbar on category pill strip */
div[style*="overflow"]::-webkit-scrollbar {
  display: none;
}
