/* Wittee - collapse Elementor shortcode widgets that rendered nothing.
 *
 * The product summary column is display:flex with gap:20px, so a widget with
 * zero height still costs a full gap. display:none takes it out of the flex
 * flow altogether. Handled in CSS so there is no layout shift after paint;
 * tidy.js repeats the same narrow rule for browsers without :has().
 */

.elementor-widget-shortcode:has(> .elementor-widget-container > .elementor-shortcode:empty) {
	display: none !important;
}

.elementor-widget-shortcode.wewt-empty {
	display: none !important;
}
