.cpvg-play-button {
    font-size: 60px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.cpvg-main-slider {
  width: 100%;
  margin-bottom: 10px;
}

.cpvg-thumb-slider {
  width: 100%;
  height: 100px;
}

.cpvg-thumb-slider .swiper-slide {
  width: auto !important;
  opacity: 0.5;
  cursor: pointer;
}

.cpvg-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #0073aa;
}

.cpvg-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
	gap: 16px;
}

.cpvg-gallery-grid  .cpvg-slide {
	
}

.cpvg-video-thumb {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
    width: 135px;
}
.cpvg-video-thumb img {
	width: 100%;
	height: auto;
	display: block;
}
.cpvg-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") no-repeat center center;
	background-size: 60%;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.cpvg-video-thumb:hover .cpvg-play-icon {
	opacity: 1;
}

.cpvg-gallery-slider .cpvg-slide {
    margin: 0 10px; /* Horizontal gap: 20px total between slides */
}

.cpvg-gallery-slider {
    margin: 0 -10px; /* Offset the padding to keep layout aligned */
}

/* ==== Slider Container Padding ==== */
.cpvg-gallery-slider {
    position: relative;
}

/* ==== Arrows ==== */
.cpvg-gallery-slider .slick-prev,
.cpvg-gallery-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpvg-gallery-slider .slick-prev:hover,
.cpvg-gallery-slider .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.cpvg-gallery-slider .slick-prev {
    left: -20px;
}

.cpvg-gallery-slider .slick-next {
    right: -20px;
}

/* Optional: use font icons or custom SVG */
.cpvg-gallery-slider .slick-prev::before,
.cpvg-gallery-slider .slick-next::before {
    content: '';
}

/* ==== Dots (Bullets) ==== */
/* Slick Dots Styling */
.cpvg-gallery-slider .slick-dots {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 15px 0 0;
}

.cpvg-gallery-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.cpvg-gallery-slider .slick-dots li button {
    font-size: 0; /* 🔑 Prevents big default text size */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
	min-height: 10px
}

.cpvg-gallery-slider .slick-dots li.slick-active button {
    background-color: #333;
}

.cpvg-gallery-slider .slick-track {
	display: flex !important;
	justify-content: flex-start !important;
	width: 100% !Important
}


