/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version:s 1.0
*/



/* Títulos más largos en grilla de productos (Woo + Nasa/Elessi) */

/* Contenedores de título más comunes */
.woocommerce ul.products li.product .product-title,
.woocommerce ul.products li.product h3.product-title,
.nasa-sc.products.ns-type-grid .product .product-title,
.nasa-sc.products.ns-type-grid .product .name,
.nasa-modern-8 .product .product-title {
  white-space: normal !important;      /* quita nowrap */
  overflow: hidden !important;
  display: -webkit-box !important;      /* activa line-clamp */
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;     /* ⇐ poné 2 o 3 líneas */
  line-clamp: 2 !important;             /* estándar */
  height: auto !important;              /* evita alturas fijas del theme */
}

/* Enlaces dentro del título: mismo comportamiento (por si el theme lo aplica en <a>) */
.woocommerce ul.products li.product .product-title a,
.nasa-sc.products.ns-type-grid .product .product-title a,
.nasa-sc.products.ns-type-grid .product .name a {
  white-space: normal !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;     /* ⇐ igual que arriba */
  line-clamp: 2 !important;
}

/* Opcional: asegura alineación visual cuando hay 2 líneas */
.woocommerce ul.products li.product .product-title,
.nasa-sc.products.ns-type-grid .product .product-title,
.nasa-sc.products.ns-type-grid .product .name {
  min-height: calc(1.4em * 2);          /* ajustá si usás 3 líneas => 1.4em*3 */
}
