.ct-filter-list {
    list-style: none;
    padding-left: 0;
}

.ct-filter-item ul {
    display: none;
    margin-left: 1rem;
}

.ct-filter-item.is-active > .ct-filter-item-inner {
    font-weight: 600;
}

.ct-filter-item-inner {
    display: flex;
    align-items: center;
}

.ct-filter-link {
    text-decoration: none;
    color: inherit;
    /* Asegura que el área cliqueable ocupe el resto del espacio disponible */
    flex-grow: 1; 
}

.ct-collapse-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 6px;
    transition: transform 0.2s ease;
}

.ct-collapse-toggle.is-open {
    transform: rotate(90deg);
}

.ct-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.ct-active-filter {
    background: var(--theme-palette-color-6);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.ct-active-filter button {
    background: none;
    border: none;
    margin-left: 6px;
    cursor: pointer;
}

.ct-price-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ct-price-actions {
    display: flex;
    gap: 8px;
}

.is-hidden {
    display: none;
}

/* Títulos */
.ct-widget-title {
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ct-product-filters > .ct-widget-title:first-of-type {
    margin-top: 0;
}

.ct-filter-group {
    margin-bottom: 24px;
}

.ct-filter-group:last-child {
    margin-bottom: 0;
}



