/* Сайдбар фиксирован, но позиция управляется через JS */
.sticky-sidebar {
    position: fixed !important;
    right: calc((100% - 1200px) / 2 + 15px) !important;
    width: 25% !important;
    max-width: 270px !important;
    max-height: calc(100vh - 30px) !important;
    overflow-y: auto !important;
    z-index: 100 !important;
    background: #fff !important;
    padding: 0 15px !important;
    transition: none !important;
}

/* Скролл внутри сайдбара */
.sticky-sidebar::-webkit-scrollbar {
    width: 4px;
}
.sticky-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.sticky-sidebar::-webkit-scrollbar-thumb {
    background: #367d78;
    border-radius: 4px;
}

/* Для мобильных — скрываем */
@media (max-width: 767px) {
    .sticky-sidebar {
        display: none !important;
    }
}