

/* ==========================================================================
   2026-07-13 — Mini-cart drawer (#site-cart-new) layout fix:
   flex layout instead of hard-coded list heights (84%/77%/80%/75%),
   so promotion-engine cart messages no longer push the buttons
   out of the panel. The item list now shrinks and scrolls instead.
   ========================================================================== */
div#middle-cart {
    padding-block-end: 20px !important;
}
div#middle-cart .widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
div#middle-cart .widget.woocommerce.widget_shopping_cart form.woocommerce-cart-form {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
}
/* Safety cap: if many promo messages stack up, scroll them instead of growing */
div#middle-cart .widget_shopping_cart_content .promeng-cart-messages {
    max-height: 150px;
    overflow-y: auto;
}
