/*
 * Category Filter Pills — horizontal scroll row
 * ---------------------------------------------- */

.category-filter {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 2px;
    flex: 1;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.category-filter__pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 30px;
    padding: 0 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.category-filter__pill.is-active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.category-filter__pill:active {
    transform: scale(0.96);
}