Exibir 2 colunas de produtos no Mobile

@media only screen and (max-width: 479px){
    .acoes-produto-responsiva {
        top: unset;
        right: unset;
        width: 90%;
        text-align: center;
        bottom: 0;
    }
    .listagem .listagem-item {
        padding-bottom: 50px;
        text-align:center;
    }
    div#listagemProdutos li.listagem-linha  > ul > li {
        display: flex;
        margin-bottom: 30px;
    }
}    

mesmo assim, se quiser a fonte menor…

@media only screen and (max-width: 479px){
    .acoes-produto-responsiva {
        top: unset;
        right: unset;
        width: 90%;
        text-align: center;
        bottom: 0;
    }
    .listagem .listagem-item {
        padding-bottom: 50px;
        text-align:center;
    }
    div#listagemProdutos li.listagem-linha  > ul > li {
        display: flex;
        margin-bottom: 30px;
    }
    
    .acoes-produto-responsiva.visible-phone a.tag-comprar.fundo-principal *{
        font-size: 15px
    }
    
    .acoes-produto-responsiva .tag-comprar i {
        top: -2px;
    }
}    

2 curtidas