.custom-products-shortcode .products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.custom-products-shortcode .product {
    width: calc(25% - 20px);
    text-align: center;
    box-sizing: border-box;
}
.custom-products-shortcode .product img {
    max-width: 100%;
    height: auto;
}
.custom-products-shortcode .product h3 {
    font-size: 16px;
    margin: 10px 0;
}
.custom-products-shortcode .product .price {
    color: #e74c3c;
    font-weight: bold;
}
@media (max-width: 768px) {
    .custom-products-shortcode .product {
        width: calc(50% - 20px);
    }
}