.czors-menu-drawer,
.czors-menu-drawer-overlay {
    display: none;
}

@media (max-width: 900px) {

    body.czors-drawer-open {
        overflow: hidden;
    }

    .czors-menu-drawer-overlay {
        position: fixed;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.58);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9998;
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .czors-menu-drawer-overlay.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .czors-menu-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: min(86vw, 360px);
        background: #101820;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(-105%);
        visibility: hidden;
        z-index: 9999;
        overflow-y: auto;
        overscroll-behavior: contain;
        transition:
            transform 0.28s ease,
            visibility 0.28s ease;
    }

    .czors-menu-drawer.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .czors-menu-drawer-header {
        min-height: 72px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .czors-menu-drawer-logo {
        display: inline-flex;
        align-items: center;
    }

    .czors-menu-drawer-logo img {
        display: block;
        width: auto;
        max-width: 110px;
        max-height: 40px;
    }

    .czors-menu-drawer-close {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        cursor: pointer;
    }

    .czors-menu-drawer-close svg {
        width: 21px;
        height: 21px;
    }

    .czors-menu-user-card {
        margin: 16px;
        padding: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.045);
        color: #ffffff;
        text-decoration: none;
    }

    .czors-menu-user-card > img {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        border-radius: 50%;
        object-fit: cover;
        background: rgba(255, 255, 255, 0.08);
    }

    .czors-menu-user-info {
        min-width: 0;
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .czors-menu-user-info strong {
        overflow: hidden;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        line-height: 1.3;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .czors-menu-user-info small {
        margin-top: 2px;
        overflow: hidden;
        color: rgba(255, 255, 255, 0.55);
        font-size: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .czors-menu-user-info > span {
        margin-top: 7px;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        color: #ffa629;
        font-size: 11px;
        font-weight: 700;
    }

    .czors-menu-user-info > span svg {
        width: 14px;
        height: 14px;
    }

    .czors-menu-drawer-nav {
        padding: 0 14px 28px;
        display: flex;
        flex-direction: column;
    }

    .czors-menu-section-label {
        padding: 16px 12px 7px;
        color: rgba(255, 255, 255, 0.38);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .czors-menu-drawer-nav > a {
        position: relative;
        min-height: 48px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        gap: 13px;
        border-radius: 13px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition:
            background 0.18s ease,
            color 0.18s ease;
    }

    .czors-menu-drawer-nav > a:hover,
    .czors-menu-drawer-nav > a.is-active {
        background: rgba(255, 166, 41, 0.12);
        color: #ffa629;
    }

    .czors-menu-drawer-nav > a svg {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }

    .czors-menu-drawer-nav .czors-menu-logout {
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        color: #ff8e8e;
    }
}