.vpc-carousel-wrapper {
  background: #e5dafe;
  padding: 20px;
  border-radius: 20px;
  max-width: 95%;
  margin: auto;
  overflow: hidden;
}
.vpc-swiper {
  width: 100%;
  height: 250px;
}
.swiper-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vpc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}
.vpc-caption {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.vpc-products {
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
}
.vpc-swiper .swiper-slide {
    transition: transform 0.3s ease, scale 0.3s ease;
    transform: scale(0.8);
    opacity: 0.6;
    position: relative;
}

.vpc-swiper .swiper-slide.vpc-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.vpc-swiper .swiper-slide.vpc-inactive {
    z-index: 1;
	transform: scale(0.8);
}

.vpc-mute-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 16px;
}

