/* Power Google Reviews — stiluri front-end (stil Trustindex) */

/* ---------- comune ---------- */
.pgr-card {
	background: #f5f6f8;
	border-radius: 10px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	height: 100%;
	box-sizing: border-box;
}

.pgr-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

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

.pgr-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1a5c4a;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}

.pgr-card-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.pgr-author {
	font-weight: 700;
	color: #111827;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pgr-time {
	font-size: 12px;
	color: #6b7280;
}

.pgr-glogo {
	font-weight: 700;
	font-size: 22px;
	color: #4285f4;
	font-family: Arial, sans-serif;
	align-self: flex-start;
}

.pgr-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.pgr-verified {
	display: inline-flex;
	align-items: center;
}

.pgr-stars {
	line-height: 1;
	letter-spacing: 1px;
	font-size: 17px;
	color: #d1d5db;
	display: inline-block;
}

.pgr-star-full {
	color: #f6bb06;
}

.pgr-stars-lg {
	font-size: 30px;
	letter-spacing: 3px;
}

.pgr-text {
	color: #374151;
	font-size: 14px;
	line-height: 1.55;
}

.pgr-text-clamp {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pgr-readmore {
	background: none;
	border: none;
	padding: 0;
	margin-top: auto;
	align-self: flex-start;
	color: #9ca3af;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none;
}

.pgr-readmore:hover {
	color: #4285f4;
}

/* logo Google multicolor */
.pgr-google {
	font-family: Arial, sans-serif;
	font-weight: 700;
	font-size: 26px;
	letter-spacing: -1px;
	text-decoration: none;
	display: inline-block;
	line-height: 1;
}

.pgr-g-b { color: #4285f4; }
.pgr-g-r { color: #ea4335; }
.pgr-g-y { color: #fbbc05; }
.pgr-g-g { color: #34a853; }

.pgr-admin-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
}

/* ---------- slider cu panou sumar (stil Trustindex) ---------- */
.pgr-auto-footer {
	background: #fff;
	padding: 28px 20px;
	border-top: 1px solid #eef0f3;
}

.pgr-slider {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
}

.pgr-summary-panel {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.pgr-summary-panel a {
	text-decoration: none;
}

.pgr-word {
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 1px;
	color: #111827;
}

.pgr-basedon {
	font-size: 14px;
	color: #374151;
}

.pgr-slider-body {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
}

.pgr-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	flex: 1;
}

.pgr-track::-webkit-scrollbar {
	display: none;
}

.pgr-slide {
	flex: 0 0 300px;
	max-width: 85vw;
	scroll-snap-align: start;
	display: flex;
}

.pgr-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #374151;
	font-size: 22px;
	cursor: pointer;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
	z-index: 2;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 3px;
}

.pgr-prev { left: -14px; }
.pgr-next { right: -14px; }

.pgr-nav:hover { background: #f3f4f6; }

@media (max-width: 800px) {
	.pgr-slider {
		flex-direction: column;
		gap: 18px;
	}
	.pgr-summary-panel {
		flex: 0 0 auto;
	}
	.pgr-slider-body {
		width: 100%;
	}
}

/* ---------- grid ---------- */
.pgr-grid {
	display: grid;
	gap: 16px;
	margin: 20px 0;
}

.pgr-cols-1 { grid-template-columns: 1fr; }
.pgr-cols-2 { grid-template-columns: repeat(2, 1fr); }
.pgr-cols-3 { grid-template-columns: repeat(3, 1fr); }
.pgr-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.pgr-cols-3, .pgr-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.pgr-grid { grid-template-columns: 1fr !important; }
}

/* ---------- badge orizontal: EXCELENT ★★★★★ 2.470 recenzii Google ---------- */
.pgr-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 999px;
	padding: 9px 18px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: inherit;
	white-space: nowrap;
}

.pgr-badge-bottom-left,
.pgr-badge-bottom-center,
.pgr-badge-bottom-right {
	position: fixed;
	bottom: 16px;
	z-index: 99999;
}

.pgr-badge-bottom-left { left: 16px; }
.pgr-badge-bottom-right { right: 16px; }

.pgr-badge-bottom-center {
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
}

.pgr-badge-word {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.5px;
	color: #111827;
}

.pgr-badge .pgr-stars {
	font-size: 15px;
}

.pgr-badge-count {
	font-size: 13px;
	font-weight: 600;
	color: #111827;
}

.pgr-badge .pgr-google {
	font-size: 18px;
}

@media (max-width: 480px) {
	.pgr-badge {
		gap: 7px;
		padding: 7px 12px;
	}
	.pgr-badge-word { display: none; }
}
