/* =========================
   RATING SUMMARY CARD
========================= */

.tubuy-rating-summary-card {
	padding: 22px;
	border: 1px solid #eef2f7;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

/* =========================
   SUMMARY TITLE
========================= */

.tubuy-rating-summary-title {
	font-size: 18px;
	font-weight: 800;
	color: #07121d;
	margin: 0 0 16px;
}

/* =========================
   AVERAGE RATING
========================= */

.tubuy-rating-summary-average {
	font-size: 48px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -2px;
	color: #07121d;
	margin-bottom: 10px;
}

/* =========================
   SUMMARY STARS
========================= */

.tubuy-rating-summary-stars {
	margin-bottom: 12px;
}

.tubuy-rating-summary-stars .star-rating {
	font-size: 16px !important;
	margin: 0 auto 0 0 !important;
}

.tubuy-rating-summary-stars .star-rating::before {
	color: #fcd34d !important;
	opacity: 0.35;
}

.tubuy-rating-summary-stars .star-rating span::before {
	color: #f59e0b !important;
}

/* =========================
   SUMMARY COUNT
========================= */

.tubuy-rating-summary-count {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 22px;
}

/* =========================
   RATING BARS
========================= */

.tubuy-rating-bars {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

/* =========================
   BAR ITEM
========================= */

.tubuy-rating-bar-item {
	display: grid;
	grid-template-columns: 62px 1fr 72px;
	align-items: center;
	gap: 10px;
}

/* =========================
   BAR LABEL
========================= */

.tubuy-rating-bar-label {
	font-size: 13px;
	font-weight: 700;
	color: #07121d;
}

/* =========================
   BAR TRACK
========================= */

.tubuy-rating-bar-track {
	position: relative;
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: #eef2f7;
	overflow: hidden;
}

/* =========================
   BAR FILL
========================= */

.tubuy-rating-bar-fill {
	height: 100%;
	border-radius: 999px;
	background: #22c55e;
}

/* =========================
   BAR PERCENT
========================= */

.tubuy-rating-bar-percent {
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	text-align: right;
	white-space: nowrap;
}

/* =========================
   RECOMMENDATION BOX
========================= */

.tubuy-rating-recommendation {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-radius: 16px;
	background: #f0fdf4;
	border: 1px solid #dcfce7;
}

/* =========================
   RECOMMENDATION PERCENT
========================= */

.tubuy-recommendation-percent {
	font-size: 34px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -1px;
	color: #16a34a;
}

/* =========================
   RECOMMENDATION TEXT
========================= */

.tubuy-recommendation-text {
	font-size: 13px;
	line-height: 1.6;
	font-weight: 700;
	color: #166534;
}