/* E-stavivo Product Ratings */

.estavivo-product-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 12px 0 20px;
	font-size: 14px;
}

.estavivo-stars-container {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 24px;
	flex-shrink: 0;
}

.estavivo-stars-bg,
.estavivo-stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	gap: 2px;
	width: 100%;
	height: 100%;
}

.estavivo-stars-bg {
	color: #d3d3d3;
	z-index: 1;
}

.estavivo-stars-fill {
	color: #f5a623;
	overflow: hidden;
	white-space: nowrap;
	z-index: 2;
}

.estavivo-star-icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	display: block;
}

.estavivo-rating-text {
	display: flex;
	gap: 4px;
	align-items: baseline;
	color: #555;
	font-size: 13px;
}

.estavivo-rating-value {
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.estavivo-rating-max {
	color: #888;
	font-size: 13px;
}

.estavivo-rating-count {
	color: #888;
	font-size: 12px;
}

/* Tablet & Desktop */
@media (min-width: 480px) {
	.estavivo-product-rating {
		gap: 16px;
	}
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
	.estavivo-stars-bg {
		color: #444;
	}

	.estavivo-stars-fill {
		color: #ffa500;
	}

	.estavivo-rating-text {
		color: #aaa;
	}

	.estavivo-rating-value {
		color: #eee;
	}

	.estavivo-rating-max,
	.estavivo-rating-count {
		color: #999;
	}
}

/* Accessibility */
.estavivo-stars-container:focus-visible {
	outline: 2px solid #4a90e2;
	outline-offset: 2px;
	border-radius: 3px;
}
