/* ========================================
   FACETWP CHECKBOXES - DROPDOWNY
   ======================================== */

/* Główny kontener filtrów */
.facet-wrap {
    color: #282427;
    margin-bottom: 24px;
}

/* Facet container */
.facetwp-facet {
    margin-bottom: 2rem;
    background: #FFFFFF;
    border: 1px solid #C7C6C9;
    border-radius: 8px;
    overflow: hidden;
}

/* Checkboxy - główne kategorie */
.facetwp-checkbox {
    padding: 0.75rem 20px 0.75rem 2.5rem;
    margin: 0 20px;
    border-bottom: 1px solid #C7C6C9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-family: "Raleway", sans-serif;
}

.facetwp-checkbox:last-child {
    border-bottom: none;
}

.facetwp-checkbox:hover {
    background-color: #F6F1E4;
    border-radius: 6px;
}

/* Checkbox input - custom */
.facetwp-checkbox::before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #C7C6C9;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.2s ease;
}

/* Aktywny checkbox */
.facetwp-checkbox.checked::before {
    background-color: #51BFBF;
    border-color: #51BFBF;
}

/* Checkmark w zaznaczonym */
.facetwp-checkbox.checked::after {
    content: '✓';
    position: absolute;
    left: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
}

.facetwp-checkbox.checked .facetwp-display-value {
    font-weight: 600;
    color: #282427;
}

/* Nazwa kategorii */
.facetwp-display-value {
    padding-left: 0.5rem;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #282427;
    flex: 1;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

/* Licznik produktów - badge style */
.facetwp-counter {
    font-size: 12px;
    color: #535353;
    font-family: "Raleway", sans-serif;
    background-color: #F6F1E4;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.facetwp-checkbox.checked .facetwp-counter {
    background-color: #AED8CF;
    color: #282427;
}

/* Expand/collapse */
.facetwp-expand {
    font-size: 0.875rem;
    color: #51BFBF;
    margin-left: 0.5rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    cursor: pointer;
    transition: color 0.2s ease;
}

.facetwp-expand:hover {
    color: #45A7A7;
}

/* Podkategorie */
.facetwp-depth {
    padding-left: 1.5rem;
    margin-top: 0;
    background-color: #F6F1E4;
}

.facetwp-depth .facetwp-checkbox {
    padding: 0.65rem 20px 0.65rem 2.5rem;
    margin: 0 20px;
    border-bottom: 1px solid rgba(199, 198, 201, 0.5);
}

.facetwp-depth .facetwp-checkbox:last-child {
    border-bottom: none;
}

.facetwp-depth .facetwp-checkbox:hover {
    background-color: #AED8CF;
    border-radius: 6px;
}

.facetwp-depth .facetwp-display-value {
    font-size: 13px;
    color: #535353;
    font-weight: 400;
}

.facetwp-depth .facetwp-checkbox.checked .facetwp-display-value {
    color: #282427;
}

/* Ukryj niewidoczne podkategorie */
.facetwp-depth:not(.visible) {
    display: none;
}

/* Animacja rozwijania */
.facetwp-depth {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.facetwp-depth.visible {
    max-height: 1000px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .facetwp-checkbox {
        padding: 0.65rem 15px 0.65rem 2.25rem;
        margin: 0 15px;
        font-size: 13px;
    }
    
    .facetwp-checkbox::before {
        left: 0;
        width: 16px;
        height: 16px;
    }
    
    .facetwp-checkbox.checked::after {
        left: 0.15rem;
        font-size: 11px;
    }
    
    .facetwp-display-value {
        font-size: 13px;
    }
    
    .facetwp-counter {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .facetwp-depth .facetwp-checkbox {
        padding: 0.65rem 15px 0.65rem 2.25rem;
        margin: 0 15px;
    }
}