/*
 * Cart styles (Byteforge Toolkit)
 * - Left-align the cart actions row so the Update Cart button sits flush with table content
 */

/* Ensure the actions cell contents align to the left */
.woocommerce-cart-form__contents td.actions,
#qodef-woo-page .woocommerce-cart-form__contents td.actions,
.woocommerce-cart .shop_table.woocommerce-cart-form__contents td.actions {
    text-align: left !important;
    justify-content: flex-start !important; /* if theme uses flex */
}

/* Neutralize any theme floats/margins that push the button right */
.woocommerce-cart-form__contents td.actions .button {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* If the theme makes the actions cell a flex container, keep items left */
.woocommerce-cart-form__contents td.actions {
    gap: 8px;
}
