.heading {
    color: #333333;
    text-transform: capitalize;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    margin: 0;
}
.wc-taxonomy-filter-container {
    margin-top: 20px;
    max-height: 223px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.wc-taxonomy-filter-container::-webkit-scrollbar {
    width: 5px;
    height: 20px;
}

.wc-taxonomy-filter-container::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.wc-taxonomy-filter-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: background-color 0.2s;
}

/* Hover effect para mejor UX */
.wc-taxonomy-filter-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.25);
}

/* Soporte para modo oscuro (opcional) */
@media (prefers-color-scheme: dark) {
    .wc-taxonomy-filter-container::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, 0.05);
    }
    .wc-taxonomy-filter-container::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.12);
    }
    .wc-taxonomy-filter-container::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.25);
    }
}

.vertical,
.accordion {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.wc-taxonomy-filter-accordion summary {
    align-items: center;
    display: flex;
    justify-content: space-between;
    list-style: none;
    cursor: pointer;
}
.wc-taxonomy-filter-accordion summary:hover .heading {
    color: #0063FD;
}
.wc-taxonomy-filter-accordion a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .25s ease;
}
.term-swatch-indicator {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--swatch-color, rgba(0,0,0,0.075));
    border-radius: 50%;
    width: 1em;
    height: 1em;
    color: #242424;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}
.term-swatch-indicator::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    width: 100%;
    border-bottom: 2px solid var(--swatch-color, #242424);
    opacity: 0;
    transition: inherit;
    pointer-events: none;
    bottom: -5px;
}
.wc-taxonomy-filter-accordion a:hover .term-swatch-indicator::after {
    opacity: 1;
}
.wc-taxonomy-filter-accordion .term-count {
    padding-inline: 5px;
    margin-inline-start: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 35px;
    color: #767676;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
.wc-taxonomy-filter-accordion a:hover .term-count {
    color: white;
    background-color: #0063FD;
}
.wc-taxonomy-filter-accordion a[aria-pressed="true"] .term-count {
    color: white;
    background-color: #0063FD;
}
.wc-taxonomy-filter-accordion summary .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all .25s ease;
}
.wc-taxonomy-filter-accordion[open] summary .icon {
    background-color: #f1f1f1;
}
.wc-taxonomy-filter-accordion summary svg {
    transition: all .25s ease;
}
.wc-taxonomy-filter-accordion[open] summary svg {
    transform: rotate(180deg);
}