.filters {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.filter-options {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.filter-btn {
    background: #f4f4f4;
    border: 2px solid #FF6B00;
    color: #FF6B00;
    padding: .5rem 1rem;
    border-radius: 20px;
    cursor: pointer
}

.filter-btn.active {
    background: #FF6B00;
    color: #fff
}

/* Estilo para o badge de promoção */
.promotion-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: hwb(115 0% 50%); /* Vermelho para promoção, alterado do verde */
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Garantir que seja apenas um pequeno badge */
    width: auto;
    height: auto;
    /* Evitar que afete outros elementos */
    pointer-events: none;
}

/* Remover qualquer background da classe promotion-tag */
.promotion-tag {
    /* Não aplicar background, apenas uma sutíl borda se necessário */
    border: 1px solid #ffcccb;
    background: none; /* Garantir que não tenha background */
}

.hidden {
    display: none
}

.filter-menu {
    display: none
}

select {
        font-size: 18px; /* Aumenta apenas no mobile */
    }

@media(max-width:768px) {
    .filter-options {
        display: none
    }

    .filter-menu {
        display: block;
        width: 100%;
        padding: .7rem;
        border: 2px solid #FF6B00;
        border-radius: 8px;
        background: #fff;
        color: #333;
        margin-bottom: 1rem
    }

    .filter-options.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        background: #fff;
        z-index: 10;
        width: calc(100% - 2rem);
        box-shadow: 0 4px 8px rgba(0, 0, 0, .1)
    }
    
    select {
        font-size: 18px;
        padding: 10px;
    }
}
