/* Force consistent height for product titles and align prices using !important */
.product-item .product-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    height: 45px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin-bottom: 10px !important;
}

/* Force the price to the bottom of the container */
.product-item .price,
.woocommerce ul.products li.product .price {
    margin-top: auto !important;
    display: block !important;
}