/**
 * ISO Powersports — Custom Dokan Store Reviews Tab styling.
 *
 * Two-column layout:
 *  - Left: Reviews list / empty state
 *  - Right: Overall Rating card
 */

/* ── Layout grid ───────────────────────────────────────────────────── */
.iso-reviews-tab {
	padding: 24px 0;
}

.iso-reviews-tab__grid {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: start;
}

@media (max-width: 900px) {
	.iso-reviews-tab__grid {
		grid-template-columns: 1fr;
	}
}

/* ── Left: Empty state ─────────────────────────────────────────────── */
.iso-reviews-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
	background: #fafafa;
	border: 1px dashed #e3e3e3;
	border-radius: 12px;
	min-height: 360px;
}

.iso-reviews-empty__icon {
	color: #c9c9c9;
	margin-bottom: 16px;
}

.iso-reviews-empty__title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.iso-reviews-empty__desc {
	font-size: 14px;
	color: #7a7a7a;
	margin: 0;
}

/* ── Left: Reviews list ────────────────────────────────────────────── */
.iso-reviews-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.iso-review-item {
	display: flex;
	gap: 16px;
	padding: 20px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.iso-review-item__avatar img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}

.iso-review-item__body {
	flex: 1;
	min-width: 0;
}

.iso-review-item__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
}

.iso-review-item__author {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}

.iso-review-item__date {
	font-size: 12px;
	color: #9a9a9a;
	white-space: nowrap;
}

.iso-review-item__stars {
	display: inline-flex;
	gap: 2px;
	margin: 4px 0 6px;
	font-size: 16px;
	line-height: 1;
}

.iso-star {
	color: #e0e0e0;
}

.iso-star--filled {
	color: #f5a623;
}

.iso-review-item__product {
	font-size: 13px;
	margin: 0 0 8px;
}

.iso-review-item__product a {
	color: #c8102e;
	text-decoration: none;
	font-weight: 600;
}

.iso-review-item__product a:hover {
	text-decoration: underline;
}

.iso-review-item__content {
	font-size: 14px;
	color: #4a4a4a;
	line-height: 1.5;
}

.iso-review-item__content p {
	margin: 0 0 8px;
}

.iso-review-item__content p:last-child {
	margin-bottom: 0;
}

/* ── Right: Overall rating card ────────────────────────────────────── */
.iso-rating-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
	position: sticky;
	top: 24px;
}

.iso-rating-card__heading {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
}

.iso-rating-card__score {
	font-size: 48px;
	font-weight: 800;
	color: #c8102e;
	line-height: 1;
	margin-bottom: 8px;
}

.iso-rating-card__score-max {
	font-size: 24px;
	font-weight: 600;
	color: #c8102e;
}

.iso-rating-card__positive {
	font-size: 14px;
	font-weight: 600;
	color: #2ea44f;
	margin-bottom: 16px;
}

.iso-rating-card__divider {
	height: 1px;
	background: #ececec;
	margin: 16px 0;
}

/* Distribution bars */
.iso-rating-bars {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.iso-rating-bars__row {
	display: grid;
	grid-template-columns: 16px 1fr 28px;
	align-items: center;
	gap: 10px;
}

.iso-rating-bars__label {
	font-size: 13px;
	font-weight: 600;
	color: #4a4a4a;
	text-align: right;
}

.iso-rating-bars__track {
	position: relative;
	height: 8px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
}

.iso-rating-bars__fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #f5a623;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.iso-rating-bars__count {
	font-size: 12px;
	color: #7a7a7a;
	text-align: right;
}

.iso-rating-card__total {
	font-size: 13px;
	color: #7a7a7a;
	margin: 16px 0 0;
	text-align: center;
}

/* Rating parameters */
.iso-rating-card__params-heading {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.iso-rating-params {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.iso-rating-params li {
	font-size: 13px;
	line-height: 1.5;
	color: #4a4a4a;
}

.iso-rating-params strong {
	display: block;
	color: #1a1a1a;
	font-weight: 700;
	margin-bottom: 2px;
}

.iso-rating-params span {
	color: #7a7a7a;
}
