/* Add these styles to your existing assets/website/css/style.css */

/* Products Page Specific Additions */
.filters-sidebar .card-header {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
}

.filter-label {
    font-weight: 600;
    color: var(--secondary-gray-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-toolbar {
    background: var(--white);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.view-toggle .btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.availability-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.products-container.list-view .product-card .row {
    align-items: center;
}

.products-container.list-view .product-image {
    height: 200px;
}

.no-products {
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}