/* Pills Container */
.pills-container {
    margin-bottom: 20px;
    padding: 10px 0;
}

.pills-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 4px 12px;
}

.pill {
    padding: 10px 24px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pill:hover {
    border-color: #F5A623;
    color: #F5A623;
    transform: translateY(-2px);
    background: #F4F7F6;
}

.pill.active {
    background: linear-gradient(135deg, #F5A623, #E8871E);
    border-color: #F5A623;
    color: #1B4D3E;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

@media (max-width: 768px) {
    .pills-container {
        padding: 10px 12px;
        margin: 0;
    }
    .pills-wrapper {
        gap: 10px;
    }
    .pill {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}