/* Fix: Forzar el mismo ancho para cada tarjeta en el grid de productos de la tienda */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.new-product-slide {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
}

.new-product-card {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}
