.review-slider {
	overflow: hidden;
	padding: 20px 0;
}

.review-card {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	margin: 0 10px;
}

.review-author-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 15px;
}

.review-author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-author-name {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.review-rating {
	margin-bottom: 15px;
}

.star {
	color: #ffb900;
	font-size: 1.2rem;
}

.star.filled {
	color: #ffb900;
}

.review-content {
	font-style: italic;
	line-height: 1.6;
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
	color: #333;
	background: rgba(255,255,255,0.8);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 1.2rem;
}

.swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #333;
}