#product-filters h2{
    font-size: 18px;
}

.elementor-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.active-filter-item {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.woocommerce-shop select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    display: inline-flex;
    background-image: url('data:image/svg+xml;utf8,<svg fill="green" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 6px 30px 6px 12px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.active-filter-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.filter-label {
    margin-right: 4px;
    font-weight: 600;
    color: #6c757d;
    font-size: 12px;
}

.filter-text {
    margin-right: 8px;
    font-weight: 500;
    color: #495057;
}

.remove-filter {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    font-size: 12px;
    line-height: 1;
    transition: all 0.2s ease;
}

.remove-filter:hover {
    background: #c82333;
    transform: scale(1.1);
}

.remove-icon {
    font-weight: bold;
    font-size: 14px;
}

.clear-all-filters {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.clear-all-filters:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.no-filters {
    text-align: center;
    padding: 10px;
    color: #6c757d;
    font-style: italic;
}


.category-filter {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    max-height: 340px;
    overflow: hidden;
    transition: max-height 2s ease;
}

.category-filter a {
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid transparent;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.category-filter a:hover {
    background-color: #118A4E;
    color: #fff;
}

.category-filter a.active {
    background-color:#118A4E;
    color: #fff;
    border-color:#118A4E;
}

.category-filter-mobile {
    display: none;
}

#view-all-categories {
    color: #118A4E;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.attribute-cantidad-filter {
    margin-bottom: 20px;
}

.attribute-cantidad-filter label {
    font-size: 14px;
}

.attribute-cantidad-filter button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.attribute-cantidad-filter button:hover {
    background-color: #005f8d;
}

.attribute-cantidad-filter label {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 4px;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.attribute-cantidad-filter input[type="checkbox"] {
    display: none;
}

.attribute-cantidad-filter label.checked {
    background-color: #118A4E;
    color: #fff;
    border-color: #118A4E;
}

.attribute-cantidad-filter label:hover {
    background-color: #e0e0e0;
}

.attribute-cantidad-filter label span {
    display: inline-block;
}

@media (max-width: 768px) {
    .elementor-active-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .active-filters-list {
        justify-content: center;
    }

    .clear-all-filters {
        margin-left: 0;
        margin-top: 10px;
        align-self: center;
    }
    .category-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .category-filter a {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .category-filter-desktop {
        display: none;
    }

    .category-filter-mobile {
        display: block;
    }
}

