/* =============================================
   WPBeter Filters — "Meer filters tonen"
   ============================================= */

.wpc-filters-section.wpbf-hidden {
    display: none;
}

.wpbf-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #E9F1F3;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: none !important;
}

.wpbf-more-btn:hover {
    background: #cce3e7;
    color: #1a1a1a !important;
}

.wpbf-more-btn:focus:not(:hover),
.wpbf-more-btn:focus-visible:not(:hover) {
    background: #E9F1F3;
    color: #1a1a1a !important;
    outline: none;
}

.wpbf-more-btn svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.wpbf-more-btn.wpbf-open svg {
    transform: rotate(180deg);
}

/* ── USP-balk + Contactblok (onderaan categoriepagina) ── */

.wpbpc-bottom-blocks {
    margin-top: 2rem;
}


/* ── Showroom pil (loop) ── */

.wpbp-showroom-pill {
    display: inline-block;
    background: #DFEBEE;
    color: #007186;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    line-height: 1.4;
}

.wpbp-showroom-pill-row {
    text-align: left;
    padding-top: 12px;
    padding-left: 16px;
}

/* ── Normering badge (loop overlay) ── */

.wpbp-normering-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #033741 !important;
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1.4;
    pointer-events: none;
    z-index: 1;
}

/* ── Adviesbanner ── */

.wpbpc-advice-banner {
    grid-column: 1 / -1;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpbp-advice-block {
    margin-top: 0 !important;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: #F7FAFC !important;
    border: 1px solid #eee !important;
}

.wpbp-advice-inner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.wpbp-advice-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e5e5;
}

.wpbp-advice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wpbp-advice-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.wpbp-advice-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.wpbp-advice-sub {
    font-size: 0.82rem;
    color: #666;
    margin: 0 !important;
    padding: 0 !important;
}

.wpbp-advice-actions {
    display: flex;
    gap: 0.5rem;
}

.wpbp-advice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.wpbp-advice-btn:hover {
    border-color: #007186;
    color: #007186;
}

.wpbp-advice-whatsapp {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.wpbp-advice-whatsapp:hover {
    border-color: #007186;
    color: #007186;
}

@media (max-width: 767px) {
    .wpbpc-advice-banner .wpbp-advice-block {
        flex-direction: column;
        gap: 0.75rem;
    }
    .wpbpc-advice-banner .wpbp-advice-actions {
        width: 100%;
    }
    .wpbpc-advice-banner .wpbp-advice-btn {
        flex: 1;
        text-align: center;
    }
}