/* ==========================================================================
   TWDH Business Review Display for Google — v1.0.0
   ========================================================================== */

.twdh-gr-wrap {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1a1a1a;
	line-height: 1.5;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.twdh-gr-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.twdh-gr-business {
	font-weight: 700;
	font-size: 1.05em;
}

.twdh-gr-overall {
	display: flex;
	align-items: center;
	gap: 6px;
}

.twdh-gr-overall-score {
	font-size: 1.5em;
	font-weight: 800;
	color: #1a1a1a;
}

.twdh-gr-total {
	color: #666;
	font-size: 0.875em;
}

/* ── Stars ─────────────────────────────────────────────────────────────── */

.twdh-gr-stars {
	margin-bottom: 10px;
}

.twdh-gr-stars-inner {
	display: inline-flex;
	gap: 1px;
}

.twdh-gr-star {
	font-size: 1.15em;
	display: inline-block;
	line-height: 1;
}

.twdh-gr-star--full  { color: #f5a623; }
.twdh-gr-star--half  { color: #f5a623; opacity: 0.55; }
.twdh-gr-star--empty { color: #ddd; }

/* ── Grid layout ───────────────────────────────────────────────────────── */

.twdh-gr-reviews--grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}

/* ── List layout ───────────────────────────────────────────────────────── */

.twdh-gr-reviews--list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ── Card ──────────────────────────────────────────────────────────────── */

.twdh-gr-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.twdh-gr-card:hover {
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
}

/* ── Card top (avatar + meta) ──────────────────────────────────────────── */

.twdh-gr-card-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.twdh-gr-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.twdh-gr-avatar--initials {
	background: #4285F4;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1em;
	flex-shrink: 0;
	border-radius: 50%;
	text-transform: uppercase;
}

.twdh-gr-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.twdh-gr-name {
	font-weight: 600;
	font-size: 0.9em;
	color: #1a1a1a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.twdh-gr-date {
	font-size: 0.78em;
	color: #888;
}

/* ── Review text ───────────────────────────────────────────────────────── */

.twdh-gr-text {
	margin: 0;
	font-size: 0.9em;
	color: #333;
	line-height: 1.6;
}

/* ── Powered by Google ─────────────────────────────────────────────────── */

.twdh-gr-powered {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	font-size: 0.75em;
	color: #999;
}

/* ── No reviews state ──────────────────────────────────────────────────── */

.twdh-gr-no-reviews {
	color: #666;
	font-style: italic;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
	.twdh-gr-reviews--grid {
		grid-template-columns: 1fr;
	}
}
