.active-filter-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.active-filter-item {
    background-color: #f9f9f9;
    padding: 0px 11px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    color: #444;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.active-filter-item:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
}

.remove-filter {
    color: #ff5a5f;
    margin-left: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.remove-filter:hover {
    color: #d9534f;
    transform: rotate(360deg);
}

.filter-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
}

.reset-filters {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.reset-filters:hover {
    background-color: #005177;
    transform: scale(1.05);
}

.reset-filters-link {
    display: inline-block;
    margin-top: 8px;	
    font-size: 12px;
    font-weight: bold;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.reset-filters-link:hover {
    color: #005177;
    text-decoration: none;
}

#product-count {
    margin-top: 8px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.acf-inline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.acf-tag {
    background-color: #f7f7f7;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.acf-tag:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
    color: #333;
}

.spinning-x {
    color: #ff5a5f;
    margin-left: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.spinning-x:hover {
    color: #d9534f;
    transform: rotate(360deg);
}



