/**
 * Product Card Fixes
 * 
 * CSS overrides for product card styling fixes
 * 
 * @package RinnoTools
 */

/* ============================================
   Remove flex-grow from product card name
   ============================================ */

/* Override flex-grow: 1 from static/css/style.css line 2178 */
.product-card__name {
	flex-grow: 0;
	-ms-flex-positive: 0; /* IE11 support */
}

/* Ensure it applies to all product card contexts */
.product-card .product-card__name,
.block-products-carousel__cell .product-card__name,
.products-list__item .product-card__name {
	flex-grow: 0;
	-ms-flex-positive: 0;
}

/* Ensure it works in all carousel and grid contexts */
.block-products-carousel .product-card__name,
.block-products-carousel__column .product-card__name,
.products-list .product-card__name {
	flex-grow: 0;
	-ms-flex-positive: 0;
}

/* Keep existing list layout behavior (already has flex-grow: 0 in base styles) */
/* No override needed for list layout as it already has flex-grow: 0 */
