* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.google-review-slider {
	max-width: 100%;
	margin: 0px auto;
	padding: 0px;
	font-family: "Poppins", sans-serif;
}

.review-header {
	text-align: center;
	margin-bottom: 20px;
}

.rating-summary h3 {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 10px 0;
}

.stars {
	color: #ffd700;
	font-size: 24px;
	margin-bottom: 5px;
}

.review-count {
	font-size: 14px;
	color: #666;
	margin: 0 0 10px 0;
}

.google-logo {
	width: 80px;
	height: auto;
	margin-top: 10px;
}

.slider-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	flex: 1;
	width: 100%;
}

.reviews-wrapper {
	display: flex;
	gap: 15px;
	padding: 10px 0;
	transition: transform .5s ease-in-out;
}

.review-card {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 20px;
	min-width: 350px;
	width: 350px;
	height: 350px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.review-header-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	flex-shrink: 0;
}

.reviewer-info {
	display: flex;
	align-items: center;
	gap: 10px;
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f06c00;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	color: #fff;
	overflow: hidden;
	flex-shrink: 0;
}

.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviewer-name {
	font-weight: bold;
	font-size: 14px;
	line-height: 1.2;
}

.review-date {
	color: #666;
	font-size: 12px;
}

.review-stars {
	color: #ffd700;
	font-size: 16px;
	margin: 5px 0;
	flex-shrink: 0;
}

.review-text {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.google-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.slider-button {
	background-color: #75a900;
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: background-color .3s ease;
	flex-shrink: 0;
}

.slider-button:hover {
	background-color: #75a900;
}

.slider-button:active {
	transform: scale(.95);
}

.slider-indicators {
	text-align: center;
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

@media (max-width: 1024px) {
	.review-card {
		min-width: 240px;
		width: 240px;
		height: 350px;
	}
}

@media (max-width: 768px) {
	.review-card {
		min-width: 230px;
		width: 230px;
		height: 350px;
		padding: 15px;
	}
	
	.reviewer-name {
		font-size: 14px;
	}
	
	.review-date {
		font-size: 12px;
	}
	
	.review-text {
		font-size: 14px;
	}
	
	.slider-button {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.review-card {
		min-width: 230px;
		width: 230px;
		height: 350px;
		padding: 12px;
	}
	
	.avatar {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
	
	.reviewer-name {
		font-size: 13px;
	}
	
	.review-date {
		font-size: 11px;
	}
	
	.review-text {
		font-size: 12px;
	}
	
	.slider-button {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
}