/* AB Mobile Menu Fix v10 */

/* Overlay: sits under the menu, above page */
#ab-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  z-index: 1; /* ensure always under menu */
}

/* Prevent background scrolling */
html.ab-mobile-menu-open,
body.ab-mobile-menu-open {
  touch-action: none;
  overscroll-behavior: contain;
}

/* JetMenu mobile menu always above overlay */
.jet-mobile-menu.jet-mobile-menu-active {
  position: fixed !important;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 9999 !important;
}

/* Elementor dropdown always above overlay */
.elementor-nav-menu--dropdown {
  position: absolute !important;
  z-index: 9999 !important;
}

/* Focus styles for accessibility */
.jet-mobile-menu a:focus,
.elementor-nav-menu--dropdown a:focus {
  outline: 3px solid #fff;
  outline-offset: 4px;
  border-radius: 3px;
}
