
/* ============================= */
/*  GŁÓWNY WIERSZ FILTRÓW        */
/* ============================= */
.filters-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* ============================= */
/*  SEPARATOR MIĘDZY GRUPAMI    */
/* ============================= */
.filters-separator {
    width: 1px;
    height: 40px;
    background-color: #ddd;
}

/* ============================= */
/*  GRUPA FILTRÓW               */
/* ============================= */
.filters-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================= */
/*  LABEL (Rodzaj / Model / Kolor) */
/* ============================= */
.filter-label {
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
    white-space: nowrap;
    color: #333;
}

/* ============================= */
/*  WSPÓLNE DLA FILTRÓW          */
/* ============================= */
.filter-item {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.filter-item:hover {
    transform: scale(1.08);
}

/* ============================= */
/*  RODZAJ – KWADRAT            */
/* ============================= */
.filter-type {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.filter-type img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= */
/*  MODEL – MAŁY PROSTOKĄT      */
/* ============================= */
.filter-model {
    width: 60px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.filter-model img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================= */
/*  KOLOR – OKRĄG               */
/* ============================= */
.filter-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

/* ============================= */
/*  ZAZNACZENIE FILTRA          */
/* ============================= */
.filter-item.selected {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,.45);
}

/* ===== STAN AKTYWNY (KLIK) ===== */
.filter-item.active {
    box-shadow: 0 0 0 3px #0d6efd;
    transform: scale(1.15);
    z-index: 3;
}

/* KOLOR – dodatkowy kontrast */
.filter-color.active {
    border-color: #0d6efd;
}

.no-products-info {
    border: 1px dashed #dee2e6;
    border-radius: 12px;
    background: #f9f9f9;
}