/* ============================================================
   Related Products Carousel Widget
   ============================================================ */
.rp-wrap { position: relative; width: 100%; }

.rp-main-wrap {
	display: flex;
	align-items: center;
	gap: 0;
}

.rp-swiper {
	overflow: hidden;
	flex: 1;
	min-width: 0;
}

/* ---- Card ---- */
.rp-card {
	display: block;
	text-decoration: none;
}

.rp-img {
	height: 280px;
	background-color: #f5f5f5;
	overflow: hidden;
}

.rp-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.rp-card:hover .rp-img img {
	transform: scale(1.05);
}

.rp-title {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	text-align: center;
	transition: color .3s ease;
}

.rp-card:hover .rp-title {
	color: #b71a33;
}

/* ---- Nav ---- */
.rp-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	user-select: none;
	line-height: 1;
	padding: 6px;
	transition: color .3s ease;
}

.rp-nav svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.rp-nav:hover { color: #b71a33; }
.rp-nav:hover svg { fill: currentColor; }
