/**
 * ELO Amazon Reviews — Frontend Styles
 */

/* Container */
.elo-amazon-reviews-wrap {
	max-width: 800px;
	font-family: 'Gilroy-Medium', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #7E7E7E;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #DADADA;
}

/* Section Heading */
.elo-amazon-reviews-heading {
	font-size: 20px;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1E1E1E;
	margin: 0 0 10px;
}

/* Rating Summary */
.elo-rating-summary {
	display: flex;
	gap: 40px;
	padding: 30px 0;
	border-bottom: 1px solid #DADADA;
	margin-bottom: 30px;
}

.elo-rating-average {
	text-align: center;
	min-width: 120px;
}

.elo-rating-average .big-number {
	font-size: 48px;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1E1E1E;
	line-height: 1;
	display: block;
}

.elo-rating-average .star-count {
	font-size: 14px;
	color: #7E7E7E;
	margin-top: 5px;
	display: block;
}

/* Star Rendering */
.elo-stars-display {
	display: inline-flex;
	gap: 2px;
}

.elo-star {
	font-size: 18px;
	line-height: 1;
}

.elo-star--filled {
	color: #FF7735;
}

.elo-star--empty {
	color: #DADADA;
}

/* Distribution Bars */
.elo-rating-bars {
	flex: 1;
}

.elo-bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.elo-bar-label {
	font-size: 13px;
	color: #1E1E1E;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	width: 50px;
}

.elo-bar-track {
	flex: 1;
	height: 8px;
	background: #F8F8F8;
	border-radius: 4px;
	overflow: hidden;
	display: block;
}

.elo-bar-fill {
	height: 100%;
	background: #FF7735;
	border-radius: 4px;
	transition: width 0.3s;
	display: block;
}

.elo-bar-count {
	font-size: 12px;
	color: #A1A1A1;
	width: 30px;
	text-align: right;
}

/* Individual Review Card */
.elo-review-card {
	padding: 25px 0;
	border-bottom: 1px solid #F8F8F8;
}

.elo-review-card:last-child {
	border-bottom: none;
}

.elo-review-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.elo-review-title {
	font-size: 16px;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1E1E1E;
	margin: 8px 0;
}

.elo-review-meta {
	font-size: 13px;
	color: #A1A1A1;
	margin-bottom: 10px;
}

.elo-review-body {
	font-size: 14px;
	color: #7E7E7E;
	line-height: 1.6;
}

.elo-verified-badge {
	display: inline-block;
	padding: 2px 8px;
	background: #FF7735;
	color: #fff;
	font-size: 11px;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	border-radius: 3px;
}

.elo-helpful-count {
	font-size: 12px;
	color: #A1A1A1;
	margin-top: 10px;
}

/* Show More Button */
.elo-show-more {
	display: block;
	margin: 30px auto 0;
	padding: 12px 40px;
	background: #FF7735;
	color: #fff;
	font-family: 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	border: none;
	border-radius: 40px;
	cursor: pointer;
	transition: background 0.2s;
}

.elo-show-more:hover {
	background: #EB601D;
}

/* Responsive */
@media (max-width: 768px) {
	.elo-rating-summary {
		flex-direction: column;
		gap: 20px;
	}

	.elo-rating-average {
		text-align: left;
	}

	.elo-rating-average .big-number {
		font-size: 36px;
	}
}
