/* ================================
   DESKTOP SIDEBAR
================================ */

#mm-desktop .mm-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 70px;
    height: 100vh;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: width 0.3s;
    z-index: 9999;
}

#mm-desktop .mm-sidebar:hover {
    width: 240px;
}

#mm-desktop .mm-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

#mm-desktop .mm-sidebar li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    gap: 14px;
    transition: 0.2s;
}

#mm-desktop .mm-sidebar li a:hover {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(30px);
}

.mm-label {
    opacity: 0;
    transition: opacity 0.3s;
}

#mm-desktop .mm-sidebar:hover .mm-label {
    opacity: 1;
}


/* ================================
   MOBILE FLOATING BUTTON
================================ */

#mm-mobile-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    z-index: 9999;
    cursor: pointer;
}

/* Drawer */
#mm-mobile-drawer {
    position: fixed;
    left: -260px;
    top: 0;
    width: 260px;
    height: 100vh;
    background: rgba(20,20,20,0.65);
    color: #fff;
    backdrop-filter: blur(15px);
    padding: 30px 20px;
    transition: left 0.3s;
    z-index: 9998;
}

#mm-mobile-drawer.open {
    left: 0;
}

#mm-mobile-drawer ul {
    list-style: none;
    padding: 0;
}

#mm-mobile-drawer li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    padding: 12px 0;
    gap: 12px;
}
