.apsfe-filters {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.apsfe-filter-item {
    position: relative;
}

.apsfe-toggle {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.apsfe-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    padding: 15px;
    min-width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 999;
}

.apsfe-dropdown label {
    display: block;
    margin-bottom: 10px;
}

.apsfe-price-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.apsfe-price-inputs input {
    width: 70px;
    padding: 5px;
}


/* =========================
   APSFE Filters Clean Style
========================== */

/* Filter wrapper */
.apsfe-filter-item {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Filter toggle buttons */
.apsfe-toggle {
    background: transparent !important;
    color: #000 !important; /* black text */
    border: none !important;
    cursor: pointer;
    padding: 5px 10px;
    font-weight: 500;
    text-transform: none;
}

/* Dropdown wrapper */
.apsfe-dropdown {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Filter labels */
.apsfe-dropdown label,
.apsfe-clear-price,
#apsfe-clear-all-btn {
    color: #000 !important; /* black text */
    background: transparent !important;
    cursor: pointer;
    font-weight: 400;
    margin-right: 10px;
}

/* Checkbox and radio inputs text */
.apsfe-dropdown input[type="checkbox"] + label,
.apsfe-dropdown input[type="radio"] + label {
    color: #000 !important;
}

/* No hover effect */
.apsfe-toggle:hover,
.apsfe-dropdown label:hover,
.apsfe-clear-price:hover,
#apsfe-clear-all-btn:hover {
    background: transparent !important;
    color: #000 !important;
}

/* Clear buttons */
.apsfe-clear-price,
#apsfe-clear-all-btn {
    border: none !important;
    background: transparent !important;
    color: #000 !important;
    text-decoration: underline;
    font-size: 14px;
}

/* Adjust dropdown spacing */
.apsfe-dropdown .apsfe-stock {
    margin-right: 5px;
}