.cpg-wrapper {
  margin: 20px 0;
  position: relative;
}

/* Main gallery fixed size */
.cpg-gallery {
  width: 100%;
  max-width: 735px;
  height: 735px;
  margin: 0 auto;
  position: relative;
}
.cpg-gallery .cpg-slide {
  height: 735px;
}
.cpg-gallery .cpg-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Video slide in main gallery */
.cpg-video-slide {
  position: relative;
}
.cpg-video-slide .cpg-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
}
.cpg-video-slide .cpg-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* Thumbnails Grid - NOT A SLIDER */
.cpg-thumbs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 10px;
}

/* Thumbnail container */
.cpg-thumb {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
/*   border: 2px solid #eee; */
/*   border-radius: 6px; */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.cpg-thumb:hover {
/*   border-color: #3498db; */
  transform: translateY(-3px);
}
.cpg-thumb.slick-current {
/*   border-color: #3498db; */
/*   border-width: 3px; */
}

/* Play icon overlay for video thumbs */
.cpg-video-thumb {
  position: relative;
}
.cpg-video-thumb .cpg-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpg-video-thumb .cpg-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

/* Dot navigation */
.slick-gallery-dots {
  text-align: center;
  margin: 15px 0;
}
.slick-gallery-dots .slick-dots {
  position: static;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cpg-gallery {
    height: 400px;
  }
  .cpg-gallery .cpg-slide {
    height: 400px;
  }
  .cpg-video-slide .cpg-play-icon {
    width: 60px;
    height: 60px;
  }
  .cpg-video-slide .cpg-play-icon::after {
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .cpg-thumb {
    width: 70px;
    height: 70px;
  }
  .cpg-video-thumb .cpg-play-icon {
    width: 25px;
    height: 25px;
  }
  .cpg-video-thumb .cpg-play-icon::after {
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}

@media (max-width: 480px) {
  .cpg-thumb {
    width: 60px;
    height: 60px;
  }
  .cpg-thumbs-grid {
    gap: 8px;
  }
}