.wvps-wrapper {
	--wvps-accent: #e8491d;
	--wvps-dark: #2c2c2c;
	--wvps-ink: #262420;
	max-width: 100%;
	/* margin: 40px auto; */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-sizing: border-box;
}
.wvps-wrapper * { box-sizing: border-box; }

.wvps-heading {
	text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: var(--wvps-ink);
    margin: 0 0 28px;
    font-family: "Montserrat";
}

.wvps-slider-shell {
	position: relative;
}

.wvps-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 4px 4px 6px;
	scrollbar-width: none;     /* Firefox */
	-ms-overflow-style: none;  /* old Edge/IE */
}

.wvps-track::-webkit-scrollbar { height: 6px;display: none; }
.wvps-track::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.wvps-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: var(--wvps-dark);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}
.wvps-nav svg{
	height:40px;
	width:40px;
	fill: #FFF;
}
.wvps-prev { left: 4px; }
.wvps-next { right: 4px; }
.wvps-nav:hover,.wvps-nav:focus { opacity: .85;background: var(--wvps-dark) !important; }

/* ---------- Card (Figma: "Watch Caraway's Influence") ---------- */
.wvps-card {
	scroll-snap-align: start;
	flex: 0 0 auto;
	width: 290px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #D4D3D3;
	border-radius: 8px;
}

.wvps-media {
	position: relative;
	width: 100%;
	aspect-ratio: 161 / 264;
	background: #d9d9d9;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.wvps-media video,
.wvps-media .wvps-static-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* YouTube/Vimeo iframes: oversized + centered so they crop to fill the
   card exactly like object-fit: cover does for <video>/<img> (object-fit
   itself isn't reliably supported on iframes across browsers). */
.wvps-iframe-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.wvps-iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 0;
	transform: translate(-50%, -50%);
}
/* Landscape (16:9) source covering a ~161:264 portrait card. */
.wvps-iframe-landscape { width: 292%; height: 100%; }
/* Vertical/Shorts (9:16) source covering the same card — needs only a
   slight crop since the ratios are already close. */
.wvps-iframe-portrait { width: 100%; height: 109%; }
/* No orientation detected (e.g. Vimeo, which crops itself via background=1). */
.wvps-iframe:not(.wvps-iframe-landscape):not(.wvps-iframe-portrait) {
	width: 100%;
	height: 100%;
}

.wvps-sound-toggle {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,.5);
	color: #fff;
	cursor: pointer;
	display: none;
}
.wvps-tagline {
	position: absolute;
	left: 12px;
	bottom: 12px;
	right: 46px;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .3px;
	text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.wvps-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--wvps-accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 20px;
}

.wvps-info {
	background: #fff;
	padding: 10px 10px 8px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.wvps-thumb {
	flex: 0 0 auto;
	width: 32px;
	height: 48px;
	border-radius: 2px;
	overflow: hidden;
}
.wvps-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.wvps-info-text { min-width: 0; min-height: 48px; }
.wvps-stars {
	color: var(--wvps-ink);
	letter-spacing: 1px;
	font-size: 13px;
	display: block;
	margin-bottom: 4px;
}
.wvps-title {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 2px;
	color: #393939;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: "Montserrat";
}
.wvps-desc{
	font-size: 11px;
	color: #393939;
	margin: 0;
	font-family: "Montserrat";
}
.wvps-subtitle {
	font-size: 11px;
	color: #777;
	margin: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wvps-addcart {
	width: 100%;
	background: var(--wvps-dark);
	color: #fff;
	border: none;
	padding: 9px 8px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	font-family: "Montserrat";
}
.wvps-addcart:hover { background: #000; }
.wvps-addcart.wvps-loading { opacity: .7; pointer-events: none; }

.wvps-empty { text-align: center; color: #888; }

@media (max-width: 600px) {
	.wvps-card { width: 200px; }
	.wvps-thumb { width: 26px; height: 40px; }
	.wvps-heading { font-size: 24px; }
}
