/* Filter-knop */
.filter-button {
    background: #d4af37; /* Goudkleur */
    color: #fff; /* Tekstkleur, zwart voor contrast */
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.filter-button:hover {
    background: #CBA135; /* Hover kleur */
}

/* Slide-in sidebar */
.filter-sidebar {
    position: fixed;
    top: 0; left: -420px;
    width: 400px; height: 100%;
    background: #F6F4F1; /* Nieuwe achtergrondkleur */
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
}

/* Overlay en rest blijft hetzelfde */
.filter-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.filter-sidebar.open {
    left: 0;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-button {
    background: none;
    border: none;
    font-size: 28px;
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
}

/* Plaats knop netjes in linkerkolom */
.botiga-sorting-left-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.botiga-sorting-right-inner {
    display: flex;
    flex-direction: column;
}

.botiga-sorting-right-inner .woocommerce-ordering {
    order: 1;
}

.botiga-sorting-right-inner .woocommerce-result-count {
    order: 2;
    margin-top: 5px;
}

