#product-category .ec-category-rating-summary {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 100%;
	margin: 0 0 16px;
	padding: 10px 12px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: rgba(18, 18, 22, 0.48);
	color: #cbd5e1;
}

#product-category .ec-category-rating-summary__stars {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 3px;
	line-height: 1;
}

#product-category .ec-category-rating-summary__star {
	position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 14px;
}

#product-category .ec-category-rating-summary__star::before {
	content: "\f005";
	position: absolute;
	top: 0;
	left: 0;
	font-family: FontAwesome;
	color: rgba(130, 128, 145, 0.55);
}

#product-category .ec-category-rating-summary__star-fill {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	overflow: hidden;
	white-space: nowrap;
}

#product-category .ec-category-rating-summary__star-fill::before {
	content: "\f005";
	position: absolute;
	top: 0;
	left: 0;
	font-family: FontAwesome;
	color: #fbbf24;
	text-shadow: 0 0 8px rgba(251, 191, 36, 0.35);
}

#product-category .ec-category-rating-summary__body {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	min-width: 0;
}

#product-category .ec-category-rating-summary__score {
	font-family: "Montserrat-Bold", "Montserrat-SemiBold", Montserrat, sans-serif;
	font-size: 15px;
	line-height: 1;
	color: #f8fafc;
	white-space: nowrap;
}

#product-category .ec-category-rating-summary__text {
	min-width: 0;
	font-size: 12px;
	line-height: 1.35;
	color: #94a3b8;
}

@media (max-width: 767px) {
	#product-category .ec-category-rating-summary {
		align-items: flex-start;
		gap: 9px;
		padding: 10px;
	}

	#product-category .ec-category-rating-summary__body {
		display: block;
	}

	#product-category .ec-category-rating-summary__score {
		display: inline;
		margin-right: 6px;
	}

	#product-category .ec-category-rating-summary__text {
		display: inline;
	}
}
