/* ── Customer Reviews Carousel – 93fe3353 ── */

.crc-93fe3353-wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0 40px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ── Header ── */
.crc-93fe3353-header {
	text-align: center;
	margin-bottom: 40px;
}

.crc-93fe3353-heading {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 10px;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.crc-93fe3353-subtitle {
	font-size: 16px;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
	font-weight: 400;
}

/* ── Carousel Viewport ── */
.crc-93fe3353-carousel-viewport {
	overflow: visible;
	position: relative;
	padding: 10px 10px 20px;
	margin: -10px -10px -20px;
}

.crc-93fe3353-carousel-clip {
	overflow: hidden;
	padding: 10px 0 20px;
}

.crc-93fe3353-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* ── Card ── */
.crc-93fe3353-card {
	flex: 0 0 calc(33.3333% - 20px);
	margin: 0 10px;
	background: #ffffff;
	border-radius: 25px;
	padding: 32px 28px;
	box-shadow: 3px 3px 5px #00000080;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 0;
	box-sizing: border-box;
}

.crc-93fe3353-card:hover {
	transform: translateY(-6px);
	box-shadow: 3px 6px 12px #00000060;
}

/* ── Stars ── */
.crc-93fe3353-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
	font-size: 20px;
	line-height: 1;
}

.crc-93fe3353-star-filled {
	color: #f59e0b;
}

.crc-93fe3353-star-empty {
	color: #d1d5db;
}

/* ── Review Text ── */
.crc-93fe3353-review-text {
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
	margin: 0 0 20px;
	flex-grow: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

/* ── Reviewer ── */
.crc-93fe3353-reviewer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #f3f4f6;
}

.crc-93fe3353-avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
}

.crc-93fe3353-avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.crc-93fe3353-avatar-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #3b82f6;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 50%;
	letter-spacing: 0.02em;
}

.crc-93fe3353-reviewer-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.crc-93fe3353-name {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.crc-93fe3353-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	line-height: 1.3;
}

.crc-93fe3353-location,
.crc-93fe3353-date {
	color: #9ca3af;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.crc-93fe3353-separator {
	color: #d1d5db;
	flex-shrink: 0;
}

/* ── Navigation Arrows ── */
.crc-93fe3353-arrows {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.crc-93fe3353-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #1a1a2e;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
	padding: 0;
	outline: none;
	line-height: 0;
}

.crc-93fe3353-arrow:hover {
	background: #1a1a2e;
	border-color: #1a1a2e;
}

.crc-93fe3353-arrow:focus-visible {
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.crc-93fe3353-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Arrow chevron icons via CSS borders */
.crc-93fe3353-arrow-chevron {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-right: 2.5px solid #1a1a2e;
	border-bottom: 2.5px solid #1a1a2e;
	transition: border-color 0.25s ease;
}

.crc-93fe3353-arrow-prev .crc-93fe3353-arrow-chevron {
	transform: rotate(135deg);
	margin-left: 3px;
}

.crc-93fe3353-arrow-next .crc-93fe3353-arrow-chevron {
	transform: rotate(-45deg);
	margin-right: 3px;
}

.crc-93fe3353-arrow:hover .crc-93fe3353-arrow-chevron {
	border-color: #ffffff;
}

/* ── Dots ── */
.crc-93fe3353-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
}

.crc-93fe3353-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d1d5db;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
	outline: none;
}

.crc-93fe3353-dot:focus-visible {
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.crc-93fe3353-dot.crc-93fe3353-dot-active {
	background: #3b82f6;
	transform: scale(1.3);
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
	.crc-93fe3353-card {
		flex: 0 0 calc(50% - 20px);
	}

	.crc-93fe3353-heading {
		font-size: 28px;
	}
}

/* ── Responsive: Mobile ── */
@media (max-width: 767px) {
	.crc-93fe3353-wrapper {
		padding: 10px 0 30px;
	}

	.crc-93fe3353-header {
		margin-bottom: 28px;
	}

	.crc-93fe3353-heading {
		font-size: 24px;
	}

	.crc-93fe3353-subtitle {
		font-size: 14px;
	}

	.crc-93fe3353-carousel-viewport {
		overflow: visible;
		margin: 0;
		padding: 0;
	}

	.crc-93fe3353-carousel-clip {
		overflow: visible;
		padding: 0;
	}

	.crc-93fe3353-track {
		flex-direction: column;
		gap: 16px;
		transform: none !important;
	}

	.crc-93fe3353-card {
		flex: 0 0 auto;
		width: 100%;
		margin: 0;
	}

	.crc-93fe3353-card:hover {
		transform: none;
	}

	.crc-93fe3353-arrows,
	.crc-93fe3353-dots {
		display: none;
	}
}