/**
 * FacetWP — Reset / Clear All button
 */

.facetwp-reset-btn {
    display: none;               /* hidden until JS shows it */
    margin: 12px 0;
    padding: 8px 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
}

.facetwp-reset-btn:hover {
    background: #555;
}

.facetwp-reset-btn.is-active {
    display: block;
}

