/* Revenco Reviews Carousel */
.rrc-section,
.rrc-section * {
	box-sizing: border-box;
}
.rrc-section {
	--rrc-accent: #ff304f;
	width: 100%;
	overflow: hidden;
}
.rrc-inner {
	width: 100%;
	margin: 0 auto;
}
.rrc-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}
.rrc-heading-wrap {
	min-width: 0;
}
.rrc-eyebrow {
	margin: 0 0 4px;
	font-family: Poppins, Arial, sans-serif;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: .2px;
	text-transform: uppercase;
}
.rrc-heading {
	margin: 0;
	font-family: Poppins, Arial, sans-serif;
	font-size: clamp(22px, 2.1vw, 34px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.5px;
	text-transform: uppercase;
}
.rrc-view-all {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	text-decoration: none;
	font-family: Poppins, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	transition: opacity .2s ease;
}
.rrc-view-all:hover {
	opacity: .72;
}
.rrc-view-all-arrow {
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-1px);
}
.rrc-carousel {
	position: relative;
	width: 100%;
	padding: 0 48px;
}
.rrc-viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
}
.rrc-track {
	display: flex;
	align-items: stretch;
	will-change: transform;
	transition-property: transform;
	transition-timing-function: cubic-bezier(.25,.8,.25,1);
}
.rrc-slide {
	flex: 0 0 calc((100% - (2 * 32px)) / 3);
	min-width: 0;
	height: auto;
}
.rrc-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #ffd7dd;
	font-family: Poppins, Arial, sans-serif;
}
.rrc-stars {
	display: inline-flex;
	gap: 2px;
	margin-bottom: 11px;
	line-height: 1;
	letter-spacing: .5px;
}
.rrc-empty-star {
	opacity: .18;
}
.rrc-half-star {
	position: relative;
	opacity: .65;
}
.rrc-review-text {
	font-size: 13px;
	line-height: 1.58;
	font-weight: 400;
	margin-bottom: 18px;
}
.rrc-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}
.rrc-avatar {
	flex: 0 0 auto;
	object-fit: cover;
	display: block;
}

/* Reviewer image shape options */
.rrc-avatar-shape-circle .rrc-avatar {
	border-radius: 50%;
}
.rrc-avatar-shape-rounded .rrc-avatar {
	border-radius: 12px;
}
.rrc-avatar-shape-square .rrc-avatar {
	border-radius: 0;
}
.rrc-author-copy {
	min-width: 0;
}
.rrc-name {
	font-size: 12px;
	line-height: 1.35;
	font-weight: 700;
	margin-bottom: 2px;
}
.rrc-meta-row {
	display: flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
}
.rrc-meta {
	font-size: 11px;
	line-height: 1.4;
	font-weight: 400;
}
.rrc-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}
.rrc-flag img {
	display: block;
	height: auto;
	max-width: none;
}
.rrc-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: 2px solid;
	border-radius: 50%;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform .2s ease, opacity .2s ease;
	box-shadow: none;
}
.rrc-arrow:hover {
	transform: translateY(-50%) scale(1.04);
}
.rrc-arrow:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}
.rrc-prev {
	left: 2px;
}
.rrc-next {
	right: 2px;
}
.rrc-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 9px;
	margin-top: 12px;
}
.rrc-dot {
	width: 6px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: width .2s ease, background-color .2s ease;
}
.rrc-dot.is-active {
	width: 18px;
}

/* Responsive visibility controls */
@media (min-width: 1025px) {
	.rrc-hide-arrows-desktop .rrc-arrow { display: none !important; }
	.rrc-hide-dots-desktop .rrc-dots { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
	.rrc-hide-arrows-tablet .rrc-arrow { display: none !important; }
	.rrc-hide-dots-tablet .rrc-dots { display: none !important; }
	.rrc-slide {
		flex-basis: calc((100% - 24px) / 2);
	}
}
@media (max-width: 767px) {
	.rrc-header {
		align-items: flex-start;
	}
	.rrc-heading {
		font-size: 24px;
		line-height: 1.12;
	}
	.rrc-eyebrow {
		font-size: 11px;
	}
	.rrc-view-all {
		display: none;
	}
	.rrc-carousel {
		padding: 0 8px;
	}
	.rrc-slide {
		flex-basis: 100%;
	}
	.rrc-arrow {
		top: 48%;
	}
	.rrc-prev {
		left: -2px;
	}
	.rrc-next {
		right: -2px;
	}
	.rrc-hide-arrows-mobile .rrc-arrow { display: none !important; }
	.rrc-hide-dots-mobile .rrc-dots { display: none !important; }
}

/* Prevent browser image dragging from fighting swipe */
.rrc-carousel img {
	-webkit-user-drag: none;
	user-select: none;
}
.rrc-carousel.is-dragging .rrc-track {
	transition: none !important;
}
.rrc-carousel.is-dragging {
	cursor: grabbing;
}
