/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Text Domain: hello-elementor-child
*/
add_filter( 'wcdn_template_styles', function( $css ) {
	$css .= '
		td.product-name, td.product-name .name {
			white-space: normal;       /* allow wrap */
			word-break: break-word;    /* break long words if needed */
			overflow: visible;         /* don’t crop tail */
			text-overflow: clip;       /* no ellipsis */
			hyphens: manual;           /* don’t auto-hyphenate around " - " */
		}
	';
	return $css;
});

