/* Disable body scrolling when mobile menu is open */
.wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    overflow-y: scroll !important;
    inset: 0;
    height: 100vh;
}

body:has(.wp-block-navigation__responsive-container.is-menu-open) {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}
