/* Hanna Brand Filter PRO - Diseño profesional */

.hanna-pro-filters {
    margin-bottom: 20px;
}

/* Sección de filtro */
.hanna-filter-section {
    margin-bottom: 25px;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}

/* Título del filtro */
.hanna-filter-section .filter-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lista de filtros */
.hanna-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hanna-filter-list li {
    margin: 0 0 10px 0;
    padding: 0;
}

.hanna-filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 8px 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.hanna-filter-list li:hover label {
    background-color: #f8f9fa;
}

.hanna-filter-list li.active label {
    background-color: #e8f4f8;
}

/* Radio buttons personalizados */
.hanna-filter-list input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Texto del filtro */
.hanna-filter-list .filter-label {
    color: #34495e;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

.hanna-filter-list li:hover .filter-label {
    color: #2c3e50;
}

.hanna-filter-list li.active .filter-label {
    color: #2980b9;
    font-weight: 600;
}

/* Botón "Mostrar más" */
.hanna-filter-section .show-more {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hanna-filter-section .show-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hanna-filter-section {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .hanna-filter-section .filter-title {
        font-size: 16px;
    }
    
    .hanna-filter-list .filter-label {
        font-size: 14px;
    }
    
    .hanna-filter-list label {
        padding: 6px 3px;
    }
}

/* Widget en sidebar */
.widget.hanna_pro_filters_widget {
    background: #fff;
    padding: 0;
    border: none;
    border-radius: 0;
}

.widget.hanna_pro_filters_widget .hanna-filter-section {
    margin-bottom: 20px;
    border-width: 2px;
}

.widget.hanna_pro_filters_widget .hanna-filter-section:last-child {
    margin-bottom: 0;
}

/* Ocultar primeros 10 items por defecto si hay "Mostrar más" */
.hanna-filter-list.collapsed li:nth-child(n+11) {
    display: none;
}

.hanna-filter-list.expanded li {
    display: block;
}
