/* e-retail AJAX Shop Filters - checkbox-style sidebar filters */

.widget_layered_nav ul,
.widget_layered_nav_filters ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_layered_nav ul li {
    margin: 0 0 10px 0;
}

.widget_layered_nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 26px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
}

.widget_layered_nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 1px solid #bbb;
    border-radius: 3px;
    background: #fff;
    box-sizing: border-box;
}

/* WooCommerce adds class "chosen" to the currently-active term link */
.widget_layered_nav ul li.chosen a::before {
    background: #e85d1f;
    border-color: #e85d1f;
}

.widget_layered_nav ul li.chosen a::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.widget_layered_nav ul li a:hover {
    color: #e85d1f;
}

/* Price filter button - match badge color */
.widget_price_filter .price_slider_amount .button {
    background: #e85d1f;
    color: #fff;
    border-radius: 20px;
    border: none;
}

/* Loading state while AJAX request is in flight */
.eaf-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.15s ease;
}
