.mv-user-profile {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 6px 12px 6px 7px;
    border: 1px solid rgba(124,58,237,.18);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(124,58,237,.10);
    max-width: 210px;
}

.mv-user-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(124,58,237,.28);
}

.mv-user-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.mv-user-label {
    font-size: 10px;
    font-weight: 600;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mv-user-number {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mv-drawer-user {
    display: none;
    align-items: center;
    gap: 10px;
    margin: 14px 18px 4px;
    padding: 12px;
    border-radius: 12px;
    background: #F8F5FF;
    border: 1px solid rgba(124,58,237,.16);
}

.mv-auth-only {
    display: none;
}

.mv-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    z-index: 1100;
    flex-shrink: 0;
}

.mv-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #7C3AED;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mv-hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mv-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.mv-hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mv-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 8, 35, 0.5);
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mv-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mv-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 86vw;
    height: 100vh;
    background: #fff;
    z-index: 1099;
    box-shadow: -10px 0 30px rgba(15, 8, 35, 0.18);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mv-drawer.open {
    left: 0;
}

.mv-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(124,58,237,.1);
}

.mv-drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mv-drawer-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.mv-drawer-logo-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.mv-drawer-logo-text span {
    color: #7C3AED;
}

.mv-drawer-close {
    border: none;
    background: #F3EEFF;
    color: #7C3AED;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
}

.mv-drawer-links {
    list-style: none;
    padding: 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mv-drawer-links li a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.mv-drawer-links li a:hover,
.mv-drawer-links li a.active {
    background: #F3EEFF;
    color: #7C3AED;
}

.mv-drawer-foot {
    padding: 14px 16px;
    border-top: 1px solid rgba(124,58,237,.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.mv-drawer-foot .mv-btn-ghost,
.mv-drawer-foot .mv-btn-fill {
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    .mv-hamburger {
        display: flex;
    }
}
