/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 02:44:07 */
/* Remover aviso "Em estoque" */
.woocommerce .stock {
    display: none !important;
}

/* Reduzir filtro de preço */
.widget_price_filter {
    max-width: 300px;
    font-size: 15px;
}

/* Forçar 4 produtos por linha */
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.woocommerce ul.products li.product {
    width: 23%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.woocommerce ul.products li.product:nth-child(4n) {
    margin-right: 0;
}
@media (max-width: 900px) {
    .woocommerce ul.products li.product {
        width: 48%;
        margin-right: 2%;
    }
}

/* Reduzir tamanho das imagens dos produtos */
.woocommerce ul.products li.product img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
}
