/* Mobile Sidebar Styles */
@media (max-width: 991.98px) {
    .sidebar-filters {
        margin-bottom: 2rem;
    }
    
    .mobile-category-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(to right, #198754, #20c997);
        border: none;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(25, 135, 84, 0.2);
    }

    .mobile-category-button:hover {
        background: linear-gradient(to right, #157347, #1ba784);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
    }
    
    .mobile-category-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.25);
    }

    .mobile-category-button:hover {
        background: #f8f9fa;
        border-color: #198754;
    }

    .mobile-category-button i {
        transition: transform 0.3s ease;
    }

    .mobile-category-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .mobile-category-content.show {
        max-height: 1000px;
        transition: max-height 0.3s ease-in;
    }

    .category-list {
        padding: 1rem;
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 0.5rem;
    }
}

@media (min-width: 992px) {
    .mobile-category-button {
        display: none;
    }

    .mobile-category-content {
        max-height: none !important;
        overflow: visible !important;
    }
}