/* Base wrapper */
.mobile-menu-9b604c52-wrapper {
    position: relative;
    width: 100%;
}

/* Toggle Button */
.mobile-menu-9b604c52-toggle {
    background: #333;
    color: #fff;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container for the sliding menu */
.mobile-menu-9b604c52-container {
    position: relative;
    overflow: hidden; /* Clips the menus on the sides */
    width: 100%;
    background: #fff;
    transition: height 0.3s ease;
    display: none; /* Hidden until toggle clicked */
    margin-top: 10px;
    border: 1px solid #eee;
}

/* The main list that slides */
.mobile-menu-9b604c52-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    display: block;
    position: relative;
}

/* Ensure sub-menus sit horizontally inline on the right */
.mobile-menu-9b604c52-container ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Base links */
.mobile-menu-9b604c52-container a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    background: transparent;
}

/* Submenu structure */
.mobile-menu-9b604c52-container .sub-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important; /* Offset each submenu exactly to the right of its parent level */
    width: 100% !important;
    background: #fff;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Active submenu displays in full container space, but overflow: visible allows nested children to exist */
.mobile-menu-9b604c52-container .sub-menu.is-active {
    visibility: visible;
    height: auto;
    opacity: 1;
    overflow: visible !important;
    z-index: 10;
}

/* Back button */
.mobile-menu-9b604c52-back-btn {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: #f9f9f9;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
}
