/**
 * Onsite bundle — block cart/checkout line-item locks (paired with bundle-cart.js).
 * A bundle child is always a single unit, so its quantity control is hidden (no readonly "1" box).
 * A locked (required_forced) child additionally has its remove (trash) control hidden — the JS
 * `showRemoveItemLink` filter already drops it; these rules also cover any themed remove control.
 */
.lms-bundle-child .wc-block-components-quantity-selector {
    display: none !important;
}
.lms-bundle-locked .wc-block-cart-item__remove-link,
.lms-bundle-locked .remove,
.lms-bundle-locked a.remove {
    display: none !important;
}
