/* Hide mobile cart item checkboxes (regular cart + sample cart) */

@media (max-width: 768px) {
    /* Per-item checkbox column */
    .checkout-cart-index .mobile-item-checkbox {
        display: none !important;
    }

    /* Bottom select-all checkbox */
    .checkout-cart-index .mobile-fixed-checkout-bar .select-all-items,
    .checkout-cart-index .mobile-fixed-checkout-bar label[for="select-all-mobile"] {
        display: none !important;
    }

    /* Tighten spacing after removing checkbox */
    .checkout-cart-index .cart.item .mobile-item-container {
        padding-left: 0;
    }

    .checkout-cart-index .mobile-fixed-checkout-bar .checkout-bar-left {
        gap: 0;
    }
}


