/* ── Ochanta Category Filters ──────────────────────────────────────────────── */

.ochanta-filters-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.ochanta-filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.ochanta-filter-label {
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    white-space: nowrap;
}

.ochanta-filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.ochanta-filter-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.85em;
    line-height: 1.5;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
    border: 1px solid transparent;
}

.ochanta-filter-tag:hover {
    background-color: #e0e0e0;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}

.ochanta-filter-tag.is-active {
    background-color: #2271b1;
    color: #ffffff;
    border-color: #2271b1;
}

.ochanta-filter-tag.is-active:hover {
    background-color: #1a5a8c;
    color: #ffffff;
}
