/* Make product cards flex columns and push Add to Cart button to bottom */
.wc-block-product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wc-block-product > h2,
.wc-block-product > .wp-block-woocommerce-product-price,
.wc-block-product > div[data-block-name="woocommerce/product-image"] {
    flex-grow: 1; /* Make title, price, image take available space */
}

.wc-block-product > .wp-block-button {
    margin-top: auto !important; /* Push button to bottom */
}


/* Desktop: 50% width, centered */
.wc-block-product > .wp-block-button .wp-block-button__link {
    width: 50% !important;   /* Override inline and class width */
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

/* Mobile: 100% width */
@media only screen and (max-width: 768px) {
    .wc-block-product > .wp-block-button .wp-block-button__link {
        width: 100% !important;
    }
}


