.vvs-slider-wrapper {
	width: 100%;
	margin-bottom: 20px;
	z-index: 10;
}
.vvs-swiper {
	width: 100%;
	height: auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	background: #000;
}
.vvs-card {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	flex-direction: column;
}
.vvs-video-container {
	position: relative;
	width: 100%;
	background: #000;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 9 / 16;
}
.vvs-video-el {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.vvs-mp4, .vvs-youtube {
	pointer-events: none;
}
.vvs-controls-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: rgba(0,0,0,0.3);
}
.vvs-video-container:hover .vvs-controls-overlay,
.vvs-controls-overlay.active {
	opacity: 1;
}
.vvs-play-btn {
	background: rgba(0,0,0,0.6);
	border: none;
	border-radius: 50%;
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.vvs-play-btn:hover {
	transform: scale(1.1);
}
.vvs-play-btn.playing svg {
	display: none; /* Add pause icon path here if needed */
}
.vvs-mute-btn {
	position: absolute;
	bottom: 60px;
	right: 15px;
	background: rgba(0,0,0,0.7);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: white;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.vvs-icon-mute {
	display: flex;
	justify-content: center;
	align-items: center;
}
.vvs-bottom-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vvs-progress {
	width: 100%;
	height: 5px;
	background: rgba(255,255,255,0.3);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}
.vvs-progress-bar {
	height: 100%;
	background: #ff0000;
	border-radius: 5px;
	width: 0%;
	transition: width 0.1s linear;
}
.vvs-time-fullscreen {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	font-size: 12px;
	font-family: sans-serif;
}
.vvs-fullscreen-btn {
	background: none;
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
}
.vvs-caption {
	padding: 15px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	background: #1a1a1a;
}
.swiper-button-next, .swiper-button-prev {
	color: white;
	transform: scale(0.7);
}
.swiper-pagination-bullet {
	background: white;
}
