/* Filters Page Layout */
.products-page-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: rgba(20, 20, 20, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 20px;
}

.products-grid-content {
    flex-grow: 1;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #2a2a2a;
    /* Header Background like image */
    padding: 8px 12px;
    border-left: 3px solid var(--primary-color);
}

/* Select Box */
.filter-group select {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* Checkboxes / Radios */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.filter-option:hover {
    color: var(--primary-color);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .products-page-layout {
        flex-direction: column;
    }

    .filters-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}