/**
 * SFS Commerce OS — the "Highlights" box (Materials/Color) on the
 * WooCommerce single-product page. Deliberately theme-neutral (not the
 * admin dashboard design system) since this renders inside whatever
 * storefront theme the store uses.
 */

.sfs-product-highlights {
	margin: 14px 0;
	padding: 12px 14px;
	background: #f7f5f2;
	border-radius: 4px;
}

.sfs-product-highlights-title {
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 6px;
}

.sfs-product-highlights-list {
	list-style: none;
	margin: 0;
	padding: 0;
	/* Matches the theme's own variation-label typography ("Libre Caslon
	   Text", 18px/500) rather than this block's own smaller default, so
	   it reads like a native part of the page instead of a bolted-on
	   widget -- falls back to a generic serif if the theme's font isn't
	   loaded (a different theme, or this font renamed/removed). */
	font-family: "Libre Caslon Text", Georgia, serif;
	font-size: 18px;
	font-weight: 500;
	color: #444;
}

.sfs-product-highlights-list li {
	margin-bottom: 4px;
}

.sfs-product-highlights-list li:last-child {
	margin-bottom: 0;
}
