/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/


/* Product title truncate for all products */
.product-title {
  width: 100%;               /* container full width */
  white-space: nowrap;        /* single line */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;           /* adjust as needed */
  font-weight: 500;
  cursor: pointer;
  transition: max-height 0.3s ease;
  max-height: 30px;          /* single line height */
}

/* Expanded state on click */
.product-title.expanded {
  white-space: normal;       /* allow multiple lines */
  overflow: visible;
  text-overflow: clip;
  max-height: 500px;         /* enough for full title */
}
