/* Frontend styly pro Custom Product Filters */

.cpf-filter-widget {
    margin-bottom: 20px;
}

.cpf-clear-filters {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cpf-clear-link {
    color: #dc3232;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.cpf-clear-link:hover {
    color: #a00;
    text-decoration: underline;
}

.cpf-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpf-filter-item {
    margin: 0 0 8px 0;
    padding: 0;
}

.cpf-filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.cpf-filter-label:hover {
    color: #0073aa;
}

.cpf-filter-checkbox {
    margin: 0 8px 0 0 !important;
    flex-shrink: 0;
}

.cpf-filter-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cpf-count {
    color: #666;
    font-size: 12px;
    font-weight: normal;
}

/* Aktivní filtry */
.cpf-filter-checkbox:checked + .cpf-filter-text {
    font-weight: bold;
    color: #0073aa;
}

/* Loading stav */
.cpf-filter-widget.cpf-loading {
    opacity: 0.6;
    pointer-events: none;
}

.cpf-filter-widget.cpf-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: cpf-spin 1s linear infinite;
}

@keyframes cpf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responzivní design */
@media (max-width: 768px) {
    .cpf-filter-label {
        padding: 8px 0;
    }
    
    .cpf-filter-text {
        font-size: 16px;
    }
    
    .cpf-filter-checkbox {
        margin-right: 12px !important;
        transform: scale(1.2);
    }
}

/* Integrace s populárními tématy */

/* Storefront téma */
.storefront .cpf-filter-widget {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 3px;
}

/* Astra téma */
.astra .cpf-filter-widget {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
}

/* OceanWP téma */
.oceanwp .cpf-filter-widget {
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    border-radius: 3px;
}

/* Obecné sidebar styly */
.widget .cpf-filter-widget {
    padding: 0;
}

.widget_cpf_filter_widget .widget-title {
    margin-bottom: 15px;
}

/* WooCommerce sidebar integrace */
.woocommerce-sidebar .cpf-filter-widget,
.shop-sidebar .cpf-filter-widget {
    margin-bottom: 30px;
}

/* Přizpůsobení pro různé velikosti obrazovek */
@media (min-width: 1200px) {
    .cpf-filter-widget {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cpf-clear-filters {
        text-align: center;
    }
    
    .cpf-filter-item {
        margin-bottom: 12px;
    }
}
