/* Ofertas/Liquidação Filter Tabs */
.ofertas-filter-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    margin: 0 0 8px 0;
    flex-wrap: wrap;
    align-items: center;
}

.ofertas-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid #dde3ec;
    border-radius: 24px;
    background: #f8f9fb;
    color: #4a5568;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ofertas-tab:hover {
    background: #eef2f7;
    border-color: #b0bec5;
    color: #2d3748;
}

.ofertas-tab.active {
    background: #003d7a;
    border-color: #003d7a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,61,122,0.18);
}

.ofertas-tab.active .ofertas-tab-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.ofertas-tab i {
    font-size: 12px;
}

.ofertas-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
    .ofertas-filter-tabs {
        gap: 6px;
        padding: 8px 0;
    }
    .ofertas-tab {
        padding: 6px 12px;
        font-size: 12px;
    }
    .ofertas-tab-count {
        min-width: 18px;
        height: 17px;
        font-size: 10px;
    }
}
