.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important; /* Let it stretch */
}

/* Target the inner wrapper element if there is one */
.woocommerce ul.products li.product .product-wrapper,
.woocommerce ul.products li.product .elementor-widget-container,
.woocommerce ul.products li.product > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    height: 100% !important;
}

/* Ensure the title or the content area takes up the empty space */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    flex-grow: 1 !important;
    /* Optional: Provide a min-height as a fallback */
    min-height: 40px; 
}

/* Push the add to cart button to the bottom */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    margin-top: auto !important;
}
