/* Frontend styles for Block‑Based Mega Menu */
.wp-block-bb-mega-menu {
    list-style: none;
}

/* Reset button inside the block */
.wp-block-bb-mega-menu button {
    background-color: initial;
    border: none;
    color: currentColor;
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-transform: inherit;
}

/* Container that holds the template part */
.wp-block-bb-mega-menu__menu-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1000;
    display: none; /* hidden by default */
    padding: 1rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Show the menu when the toggle has aria-expanded="true" */
.wp-block-bb-mega-menu [aria-expanded="true"] + .wp-block-bb-mega-menu__menu-container {
    display: block;
}

/* Close button in the menu container */
.wp-block-bb-mega-menu__menu-container .menu-container__close-button {
    position: absolute;
    right: .5rem;
    top: .5rem;
}

