/* ========================================
   Mobile Drawer Menu - Clean & Readable
   ======================================== */

/* Main Drawer Container */
.mobile-drawer {
    background: #ffffff !important;
    width: min(300px, 88vw);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    border-left: 1px solid #e0e0e0;
}

/* Header Section */
.mobile-drawer-header {
    padding: 25px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-drawer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #4a235a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mobile-drawer-title {
    color: #2c1432 !important;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.mobile-drawer-subtitle {
    color: #6c757d !important;
    font-size: 0.85rem;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: #2c1432 !important;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-drawer-close:hover {
    transform: rotate(90deg);
    color: #000000 !important;
}

/* Navigation Section */
.mobile-drawer-nav {
    padding: 15px 0;
}

.mobile-drawer-nav-item {
    display: flex;
    align-items: center;
    padding: 14px 25px;
    color: #2c1432 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-right: 3px solid transparent;
    transition: all 0.2s ease;
}

.mobile-drawer-nav-item:hover {
    background: #f8f9fa;
    border-right-color: #4a235a;
    color: #4a235a !important;
}

.mobile-drawer-nav-item.active {
    background: #f0e6f6;
    border-right-color: #4a235a;
    color: #4a235a !important;
}

.mobile-drawer-nav-icon {
    width: 24px;
    margin-left: 12px;
    color: #4a235a !important;
    font-size: 1.1rem;
}

.mobile-drawer-nav-text {
    flex: 1;
    color: #2c1432 !important;
}

.mobile-drawer-nav-arrow {
    color: #6c757d !important;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: all 0.2s;
}

.mobile-drawer-nav-item:hover .mobile-drawer-nav-arrow {
    opacity: 1;
    transform: translateX(-3px);
}

/* Footer Section */
.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    margin-top: auto;
}

.mobile-drawer-footer-title {
    color: #6c757d !important;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-drawer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #4a235a !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-drawer-social:hover {
    background: #4a235a;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.mobile-drawer-version {
    color: #6c757d !important;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}
