#google-reviews {
	margin: auto;
	text-align: center;
	padding: 20px;
	background: var(--surface-section, #f8f9fa);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.reviews {
	display: flex;
	flex-direction: row;
	gap: 20px;
	padding: 10px 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	width: 100%;
	max-width: 100%;
}

.review {
	background: var(--surface-card, white);
	padding: 15px;
	width: 350px;
	flex: 0 0 auto;
	margin: 10px 0;
	border-left: 5px solid var(--primary-color, #007BFF);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	color: var(--text-color, #333);
}

.review-author-rating {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin-bottom: 10px;
	justify-content: center;
	gap: 2px;
	color: #ffc107;
}

.review-text {
	font-size: 16px;
	font-style: italic;
}

.review-author {
	font-weight: bold;
	color: #555;
}

/* Scrollbar stilini özelleştirme */
.reviews::-webkit-scrollbar {
	height: 8px;
}

.reviews::-webkit-scrollbar-track {
	background: var(--surface-ground, #f1f1f1);
	border-radius: 4px;
}

.reviews::-webkit-scrollbar-thumb {
	background: var(--surface-border, #c1c1c1);
	border-radius: 4px;
}

.reviews::-webkit-scrollbar-thumb:hover {
	background: var(--surface-hover, #a8a8a8);
}

/* Koyu tema için özel stiller */
.theme-dark #google-reviews {
	background: var(--surface-section, #222);
}

.theme-dark .review {
	background: var(--surface-card, #333);
	border-left: 5px solid var(--primary-color, #0d89ff);
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.theme-dark .reviews::-webkit-scrollbar-track {
	background: var(--surface-ground, #222);
}

.theme-dark .reviews::-webkit-scrollbar-thumb {
	background: var(--surface-border, #444);
}

.theme-dark .reviews::-webkit-scrollbar-thumb:hover {
	background: var(--surface-hover, #555);
}

/* Mobil için optimizasyon */
@media (max-width: 768px) {
	.review {
		min-width: 280px;
	}
}
