.elementor-173 .elementor-element.elementor-element-a687cc9{--display:flex;}/* Start custom CSS *//* Center all product content in the product box */
.woocommerce ul.products li.product {
    text-align: center; /* centers title, price, and button */
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #ffffff; /* white */
}
.woocommerce ul.products li.product .price {
    display: block;
    text-align: center;
}

/* Original/regular price */
.woocommerce ul.products li.product .price del {
    color: #ff0000; /* red */
}

/* Sale/discounted price */
.woocommerce ul.products li.product .price ins {
    color: #00cc00; /* green */
}

/* Center Add to Cart button and spacing */
.woocommerce ul.products li.product .add_to_cart_button {
    display: inline-block;
    margin-top: 10px; /* adjust spacing */
}

/* Optional: Add hover effect for Add to Cart button */
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background-color: #E4DA1E; /* change to your preferred hover color */
    color: #ffffff;/* End custom CSS */