 /* --- ФИКСИРОВАННЫЙ САЙДБАР --- */
        .sidebar-column {
            position: relative;
        }
        .sidebar-sticky-wrapper {
            position: sticky;
            top: calc(var(--nav-height) + 20px);
            height: fit-content;
        }

        .sidebar { width: 240px; padding-top: 20px; }
        .nav-link-custom {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            color: var(--text-main);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 5px;
            font-size: 14px;
            transition: 0.2s;
        }
        .nav-link-custom i { margin-right: 15px; color: var(--vibely-pink); }
        .nav-link-custom.active { background-color: var(--vibely-light-pink); }
        .nav-link-custom:hover:not(.active) { background-color: #1f1f1f; }


        @media (max-width: 992px) {
    .sidebar,
    .sidebar-column,
    .sidebar-sticky-wrapper {
        display: none !important;
    }
}