.youtube-videos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}


.youtube-video img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
    max-width: 100%;
    width: 100%;

}


  .youtube-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('/catalog/view/theme/default/image/youtube_videos.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.youtube-video img:hover {
  transform: scale(1.05);
}

.youtube-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.youtube-popup-content {
  position: relative;
}

.youtube-popup-close {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


@media (max-width: 768px){


.youtube-popup-content iframe{
  width: 100%;
}

.youtube-video img {
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
  padding: 5px;
    width: 100%;

}


}