.product-filter-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    margin-top: 4px;
}

.accordion-header {
    background: white;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background: #e9ecef;
}

.accordion-toggle {
    font-size: 18px;
    color: #6c757d;
}

.accordion-content {
    background: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.show {
    max-height: 1000px;
    /* Adjust based on your content */
}

.post-type-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-type-list li {
    margin: 0;
    border-top: 1px solid #f1f1f1;
}

.post-type-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #212529;
    transition: background-color 0.2s;
}

.post-type-list a:hover {
    background-color: #f1f1f1;
    color: #0d6efd;
}

.active-term a {
    color: #0066cc !important;
    font-weight: bold;
}

.active-term .count {
    color: #0066cc !important;
}