    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
.text_list_section .slider_block {
    background-color: var(--secondary);
    padding: 20px 0;
    transform: rotate(-0deg);
}
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e9ecef;
        position: relative;
    }

    /* 2. Mobile-Only Styles (Bootstrap's 'lg' breakpoint) */
    @media (max-width: 991.98px) {

        /* --- The Drawer Container --- */
        #navbarSupportedContent {
            position: fixed;
            top: 0;
            left: 0;
            width: 300px;
            max-width: 90%;
            background-color: #fbfaff;
            z-index: 1045;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            padding: 0;
            height: 100vh;
        }

        /* "Shown" state */
        #navbarSupportedContent.show {
            transform: translateX(0);
        }

        /* --- The New Drawer Header (Your Alignment) --- */
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e9ecef;
            flex-shrink: 0;
        }

        .close-drawer {
            background: none;
            border: none;
            font-size: 2.25rem;
            font-weight: 300;
            color: #888;
            padding: 0 0.5rem;
            line-height: 1;
            transition: color 0.2s ease, transform 0.2s ease;
        }

        .close-drawer:hover,
        .close-drawer:focus {
            color: #000;
            transform: scale(1.1);
            outline: none;
        }

        /* --- The Links List --- */
        #navbarSupportedContent .navbar-nav {
            flex-direction: column;
            width: 100%;
            padding: 1rem 0;
            flex-grow: 1;
            overflow-y: auto;
            background: #fbfaff;
        }

        /* --- The Links Themselves --- */
        #navbarSupportedContent .nav-item {
            width: 100%;
            opacity: 0;
            transform: translateX(-15px);
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }

        #navbarSupportedContent .nav-link {
            padding: 0.9rem 1.75rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: #222;
            letter-spacing: 0.3px;
            transition: color 0.2s ease;
        }

        #navbarSupportedContent .nav-link:hover,
        #navbarSupportedContent .nav-link:focus {
            background-color: transparent;
            color: #5a4bff;
        }

        /* --- The "My Account" Button (Your Alignment) --- */
        #navbarSupportedContent .nav-item:last-child {
            margin-top: auto;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }

        /* == THE STAGGER EFFECT == */
        #navbarSupportedContent.show .nav-item {
            opacity: 1;
            transform: translateX(0);
        }

        #navbarSupportedContent.show .nav-item:last-child {
            opacity: 1;
            transform: translateY(0);
        }

        #navbarSupportedContent.show .nav-item:nth-child(1) {
            transition-delay: 0.08s;
        }

        #navbarSupportedContent.show .nav-item:nth-child(2) {
            transition-delay: 0.12s;
        }

        #navbarSupportedContent.show .nav-item:nth-child(3) {
            transition-delay: 0.16s;
        }

        #navbarSupportedContent.show .nav-item:nth-child(4) {
            transition-delay: 0.20s;
        }

        #navbarSupportedContent.show .nav-item:nth-child(5) {
            transition-delay: 0.24s;
        }

        #navbarSupportedContent.show .nav-item:nth-child(6) {
            transition-delay: 0.28s;
        }

        #navbarSupportedContent.show .nav-item:last-child {
            transition-delay: 0.35s;
        }

        #navbarSupportedContent .btn.puprple_btn {
            width: 100%;
            text-align: center;
            padding: 0.8rem 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
    }
