/* Single Product — clamp the title to 2 lines, with ellipsis if longer. */

body.single-product .product_title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
