/**
 * Product Card Features More Indicator
 * 
 * Styles for the "+N" indicator when features list has more than 3 items
 * 
 * @package RinnoTools
 */

/* Base styling - matches existing features list item */
.product-card__features-list > .product-card__features-more {
	opacity: 0.75;
	font-weight: 600;
	/* Inherit all other styles from parent li selector */
}

/* Ensure it doesn't break layout or spacing */
.product-card__features-list > .product-card__features-more:before {
	/* Keep the bullet point like other items */
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 9px;
	width: 3px;
	height: 3px;
	background: currentColor;
	border-radius: 50%;
}

/* List layout specific adjustments */
.products-list[data-layout=list] .product-card .product-card__features-list > .product-card__features-more:before {
	top: 8px;
}
