/* Mobile remove bottom navigation 20260730
   Hide the entire fixed mobile navigation bar and remove its reserved space.
   Other mobile panels, forms, video backgrounds and desktop layout are unchanged. */
@media (max-width: 820px) {
  #mobileBottomNav,
  .mobile-bottom-nav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }
}
