/* SOLUCIÓN PARA ESPACIOS VACÍOS EN PRODUCTOS */

.ajax_block_product:empty,
.product-miniature:empty {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.ajax_block_product {
    flex: 0 0 auto !important;
    margin-bottom: 20px !important;
    float: none !important;
}

@media (min-width: 576px) {
    .ajax_block_product {
        width: 50% !important;
        max-width: 50% !important;
    }
}

@media (min-width: 768px) {
    .ajax_block_product {
        width: 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

@media (min-width: 1200px) {
    .ajax_block_product {
        width: 25% !important;
        max-width: 25% !important;
    }
} 