
   .wrvc-track {
  direction: ltr !important;
}

.wrvc-wrap {
	margin: 30px 0;
	direction: rtl;
	box-sizing: border-box;
}

.wrvc-wrap *,
.wrvc-wrap *::before,
.wrvc-wrap *::after {
	box-sizing: border-box;
}

.wrvc-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}

.wrvc-carousel {
	position: relative;
	overflow: hidden;
	padding: 0 42px; /* جا برای دکمه‌های ناوبری */
}

.wrvc-track {
	display: flex;
	transition: transform .4s ease;
	will-change: transform;
	touch-action: pan-y;
	cursor: grab;
	/* user-select: none; */
}

.wrvc-track:active {
	cursor: grabbing;
}

.wrvc-slide {
	flex-shrink: 0;
	box-sizing: border-box;
}

.wrvc-card {
	border: 1px solid #ececec;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: box-shadow .25s ease, transform .25s ease;
}

.wrvc-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
	transform: translateY(-3px);
}

.wrvc-card-img {
	display: block;
	position: relative;
	background: #f7f7f7;
}

.wrvc-card-img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.wrvc-badge-sale {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #e63946;
	color: #fff;
	font-size: 11px;
	line-height: 1;
	padding: 5px 8px;
	border-radius: 4px;
	font-weight: 600;
}

.wrvc-card-body {
	padding: 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wrvc-card-title {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	text-decoration: none;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.9em;
}

.wrvc-card-title:hover {
	color: #e63946;
}

.wrvc-card-price {
	font-size: 15px;
	color: #e63946;
	font-weight: 700;
	margin-top: auto;
}

.wrvc-card-price del {
	color: #999;
	font-weight: 400;
	font-size: 13px;
	margin-inline-start: 6px;
}

.wrvc-card-price ins {
	text-decoration: none;
}

.wrvc-card-btn {
	display: block;
	text-align: center;
	padding: 9px;
	background: #f5f5f5;
	border-radius: 6px;
	font-size: 13px;
	text-decoration: none;
	color: #333;
	transition: background .2s ease, color .2s ease;
}

.wrvc-card-btn:hover {
	background: #222;
	color: #fff;
}

/* دکمه‌های ناوبری */
.wrvc-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #eee;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	cursor: pointer;
	font-size: 15px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	padding: 0;
}

.wrvc-prev {
	left: 0;
}

.wrvc-next {
	right: 0;
}

.wrvc-nav:hover {
	background: #222;
	color: #fff;
	border-color: #222;
}

/* دات‌ها */
.wrvc-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	margin-top: 16px;
}

.wrvc-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
	display: inline-block;
}

.wrvc-dots span.active {
	background: #222;
	transform: scale(1.2);
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
	.wrvc-carousel {
		padding: 0 34px;
	}
	.wrvc-nav {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.wrvc-carousel {
		padding: 0 28px;
	}
	.wrvc-title {
		font-size: 17px;
	}
	.wrvc-card-title {
		font-size: 13px;
	}
}
.wrvc-card {
  display: block !important;
}