.vcp-carousel-shell {
	display: block;
	width: 100%;
}

.vcp-carousel-shell--container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.vcp-carousel-shell--full {
	width: 100%;
	margin: 0;
}

.vcp-carousel {
	position: relative;
	width: 100%;
	padding: 1.5rem 0 3rem;
	--vcp-video-height: 560px;
	--vcp-edge-fade-color: 255, 255, 255;
}

.vcp-carousel .swiper {
	overflow: hidden;
}

@keyframes vcp-fade-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vcp-carousel::before,
.vcp-carousel::after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: clamp(36px, 8vw, 96px);
	pointer-events: none;
	z-index: 4;
}

.vcp-carousel::before {
	left: 0;
	background: linear-gradient(
		90deg,
		rgba(var(--vcp-edge-fade-color), 1) 0%,
		rgba(var(--vcp-edge-fade-color), 0) 100%
	);
}

.vcp-carousel::after {
	right: 0;
	background: linear-gradient(
		270deg,
		rgba(var(--vcp-edge-fade-color), 1) 0%,
		rgba(var(--vcp-edge-fade-color), 0) 100%
	);
}

.vcp-carousel .swiper {
	overflow: visible;
	padding: 0 4px;
}

.vcp-carousel .swiper-slide {
	flex: 0 0 auto;
	max-width: min(520px, 90vw);
	display: flex;
	justify-content: center;
	transition: transform 0.45s ease, opacity 0.45s ease;
	transform: scale(0.78);
	opacity: 0.45;
	will-change: transform, opacity;
}

.vcp-carousel .swiper-slide-prev,
.vcp-carousel .swiper-slide-next {
	transform: scale(0.88);
	opacity: 0.7;
	z-index: 2;
}

.vcp-carousel .swiper-slide-prev + .swiper-slide,
.vcp-carousel .swiper-slide-next + .swiper-slide {
	z-index: 1;
}

.vcp-carousel .swiper-slide-active {
	transform: scale(1);
	opacity: 1;
	z-index: 3;
}

.vcp-carousel .swiper-slide:only-child {
	transform: scale(1);
	opacity: 1;
}

.vcp-carousel .swiper-wrapper {
	align-items: stretch;
}

.vcp-card {
	position: relative;
	margin: 0;
	width: 320px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
}

.vcp-card video {
	height: auto;
	width: 320px;
	max-width: 100%;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 20px 40px rgba(23, 37, 84, 0.14);
	background: #000;
	display: block;
	animation: vcp-fade-in 0.6s ease both;
}

.vcp-audio-toggle {
	position: absolute;
	right: 0.8rem;
	bottom: 0.8rem;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(17, 24, 39, 0.78);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	z-index: 6;
	transition: background 0.2s ease, transform 0.2s ease;
	box-shadow: 0 12px 24px rgba(17, 24, 39, 0.24);
}

.vcp-audio-toggle:hover {
	background: rgba(17, 24, 39, 0.94);
	transform: scale(1.05);
}

.vcp-audio-toggle:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.vcp-audio-toggle__icon {
	width: 22px;
	height: 22px;
	display: none;
	color: #ffffff;
}

.vcp-audio-toggle .vcp-audio-toggle__icon--muted {
	display: block;
}

.vcp-audio-toggle.is-unmuted .vcp-audio-toggle__icon--muted {
	display: none;
}

.vcp-audio-toggle.is-unmuted .vcp-audio-toggle__icon--volume {
	display: block;
}

.vcp-audio-toggle__icon svg {
	width: 35px;
	height: 35px;
	display: block;
}

.vcp-audio-toggle.is-muted {
	color: #ffffff;
}

.vcp-audio-toggle.is-unmuted {
	color: #2dd4bf;
	background: rgba(18, 24, 46, 0.92);
	box-shadow: 0 16px 32px rgba(18, 24, 46, 0.35);
}

.vcp-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(23, 30, 60, 0.18);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vcp-nav:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 14px 28px rgba(23, 30, 60, 0.24);
}

.vcp-nav:focus-visible {
	outline: 2px solid #1a56db;
}

.vcp-nav-prev {
	left: 12px;
}

.vcp-nav-next {
	right: 12px;
}

.vcp-nav-icon {
	position: relative;
	width: 12px;
	height: 12px;
}

.vcp-nav-prev .vcp-nav-icon::before,
.vcp-nav-next .vcp-nav-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.vcp-nav-prev .vcp-nav-icon::before {
	border-right: 8px solid #111827;
	margin-left: 3px;
}

.vcp-nav-next .vcp-nav-icon::before {
	border-left: 8px solid #111827;
	margin-left: -3px;
}

.vcp-pagination {
	position: absolute;
	bottom: 0.75rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	pointer-events: none;
}

.vcp-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(17, 24, 39, 0.2);
	opacity: 1;
	transition: transform 0.2s ease, background-color 0.2s ease;
	pointer-events: auto;
}

.vcp-pagination .swiper-pagination-bullet-active {
	background: #111827;
	transform: scale(1.4);
}

.vcp-carousel-shell--container .vcp-nav-prev {
	left: 8px;
}

.vcp-carousel-shell--container .vcp-nav-next {
	right: 8px;
}

@media (max-width: 1024px) {
	.vcp-nav {
		width: 36px;
		height: 36px;
	}

	.vcp-carousel .swiper-slide {
		max-width: min(420px, 84vw);
		transform: scale(0.82);
	}

	.vcp-audio-toggle {
		width: 42px;
		height: 42px;
	}

	.vcp-nav-prev {
		left: 4px;
	}

	.vcp-nav-next {
		right: 4px;
	}
}

@media (max-width: 640px) {
	.vcp-carousel {
		padding-bottom: 2.25rem;
	}

	.vcp-carousel::before,
	.vcp-carousel::after {
		width: clamp(18px, 10vw, 48px);
	}

	.vcp-nav {
		display: none;
	}

	.vcp-carousel .swiper-slide {
		max-width: min(360px, 92vw);
		transform: scale(0.86);
	}

	.vcp-audio-toggle {
		width: 36px;
		height: 36px;
		right: 0.75rem;
		bottom: 0.75rem;
	}
}


/*added by me*/
@media (max-width: 640px) {
    .vcp-audio-toggle {
        width: 36px !important;
        height: 36px !important;
        right: 0.75rem !important;
        bottom: 0.75rem !important;
        padding: 0px !important;
        margin: 0px !important;
    }
}