.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;

    height: 100vh;
    width: 280px;

    background: #fff;
    z-index: 1050;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    display: block !important;
}


.mobile-menu.show {
    transform: translateX(0);
}

/* Inner scrolling */
.mobile-menu-inner {
    height: 100%;
    overflow-y: auto;
    color: black ;
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1040;
}

.acc-level,
.acc-panel {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.acc-item {
    border-bottom: 1px solid #e5e5e5;
}

.acc-trigger {
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.acc-panel {
    display: none;
    padding-left: 16px;
}

.acc-panel a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
}

.acc-item.is-open > .acc-panel {
    display: block;
}


.acc-trigger {
    position: relative;
    padding-right: 40px;
}

.acc-trigger::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.acc-item.is-open > .acc-trigger::after {
    transform: translateY(-50%) rotate(90deg);
}