Cart Drawer how to show "..." when item name is too long for 2 lines

I hope I haven’t misunderstood you! The following code will do what you want. You can change the values as you like. If you encounter any issues again, feel free to write, I’ll help.

  • Navigate to the ‘Edit Code’ option in your theme settings, then search for “base.css” in the search bar and add below codes
.cart-item__name {

    display: -webkit-box!important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  
}