/* Reviews Container */
.rci-reviews-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Reviews Grid - Single Column Strip */
.rci-reviews-grid {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

/* Review Item - Horizontal Strip Layout */
.rci-review-item {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 15px;
	width: 100%;
}

.rci-review-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Review Thumbnail */
.rci-review-thumbnail {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin: 0;
}

.rci-review-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Review Content */
.rci-review-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* Review Header */
.rci-review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	flex-wrap: wrap;
	gap: 10px;
}

.rci-review-author {
	font-weight: 600;
	font-size: 16px;
	color: #333;
}

/* Review Rating */
.rci-review-rating {
	margin-bottom: 0;
}

.rci-stars {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
}

.rci-star {
	color: #ddd;
	font-size: 18px;
	margin-right: 2px;
}

.rci-star-filled {
	color: #ffb900;
}

/* Review Description */
.rci-review-description {
	flex: 1;
	margin-bottom: 10px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.rci-review-description p {
	margin: 0 0 10px 0;
}

.rci-review-description p:last-child {
	margin-bottom: 0;
}

/* Review Date */
.rci-review-date {
	font-size: 12px;
	color: #999;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}

/* Load More Button */
.rci-load-more-wrapper {
	text-align: center;
	margin-top: 30px;
}

.rci-load-more-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.rci-load-more-btn:hover {
	background: #135e96;
}

.rci-load-more-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.rci-loading {
	color: #666;
	font-size: 14px;
	margin-top: 10px;
}

/* No Reviews */
.rci-no-reviews {
	text-align: center;
	padding: 40px 20px;
	color: #666;
	font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.rci-reviews-container {
		padding: 15px;
	}
	
	.rci-review-item {
		padding: 12px;
		gap: 12px;
	}
	
	.rci-review-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.rci-review-thumbnail {
		width: 50px;
		height: 50px;
	}
	
	.rci-review-item {
		padding: 10px;
		gap: 10px;
	}
	
	.rci-review-author {
		font-size: 14px;
	}
	
	.rci-review-description {
		font-size: 13px;
	}
}

