.vpr-reels-wrap {
	position: relative;
	margin: 24px 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}
.vpr-reels-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 6px 4px 16px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	width: 100%;
	min-width: 0;
}
.vpr-reels-track::-webkit-scrollbar { display: none; }

.vpr-card {
	flex: 0 0 190px;
	scroll-snap-align: start;
	border: 1px solid #eee;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
}

.vpr-video-box {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: #000;
	flex-shrink: 0;
}
.vpr-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.vpr-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #e63946;
	color: #fff;
	border: none;
	font-size: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.vpr-video-box.vpr-playing .vpr-play-btn { display: none; }

.vpr-product-info {
	padding: 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vpr-product-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 10px;
	flex: 1;
}
.vpr-product-row img {
	width: 38px;
	height: 38px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
}
.vpr-product-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.vpr-product-title {
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.35;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}
.vpr-product-price {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
}

.vpr-add-to-cart.button {
	display: block;
	width: 100%;
	flex-shrink: 0;
	text-align: center;
	background: #1c3a3a;
	color: #fff !important;
	border-radius: 6px;
	padding: 9px 0;
	font-size: 13px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}
.vpr-add-to-cart.button:hover { background: #a8492f; }
.vpr-add-to-cart.button.loading { opacity: 0.6; }

.vpr-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	font-size: 16px;
	line-height: 1;
	color:#000;
}
.vpr-prev { left: -14px; }
.vpr-next { right: -14px; }

@media (max-width: 600px) {
	.vpr-nav { display: none; }
	.vpr-card { flex-basis: 160px; }
}