/* Category Pills - Bolt Theme */
.pills-container {
    margin-bottom: 16px;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    padding: 6px 16px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.pill:hover {
    border-color: #0EA5E9;
    color: #0EA5E9;
    background: rgba(14, 165, 233, 0.04);
}

.pill.active {
    background: linear-gradient(135deg, #0EA5E9, #3B82F6);
    border-color: #0EA5E9;
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pills-container {
        padding: 10px 12px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .pills-wrapper {
        gap: 6px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .pill {
        font-size: 0.65rem;
        padding: 4px 12px;
        flex-shrink: 0;
    }
}