/* UI stability v1 — 2026-08-18.
   Scroll remains available by wheel, touch, keyboard and programmatic focus;
   only the visual scrollbar chrome is suppressed. */

html,
body,
body * {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
body *::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

.nav-dropdown-panel,
.mobile-nav-panel,
.mobile-menu {
  overscroll-behavior: contain;
}
