/* ── Filter bar ── */
.cpf-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 30px;
    border-radius: 12px;
    background-color: #00283A;
}

.cpf-btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.06em;
    border-radius: 30px;
    cursor: pointer;
    background: #02162B;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.cpf-btn:hover,
.cpf-btn--active, .cpf-btn:focus {
    background: #8224E3;
    color: #fff;
    border: none;
    outline: none;
}

/* ── Hide filtered items ── */
[data-cpf-hidden="1"] {
    display: none !important;
}