/* --- Adaptation Mobile & Responsive --- */
.sidebar-collapse {
    position: sticky;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 2rem;
    z-index: 1020;
}

.filter-category {
    padding: 0.3rem;
}

.filter-btn {
    background-color: white;
    margin-top: 0.9rem;
}

.fiter-checkbox {
    margin: 0.4rem;
}

.sidebar-filters {
    width: 100%;
    font-size: 0.8rem;
}

/* Desktop : Sidebar sticky avec scroll */
@media (min-width: 992px) {
    .sidebar-filters {
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
}

/* Mobile : Ajustements */
@media (max-width: 991.98px) {
    .sidebar-filters {
        padding-top: 1rem !important;
    }

    .img-container {
        height: 200px; /* Images moins hautes sur téléphone */
    }
}