            /*video Gallery*/

.gallery1 {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
  background: #ffffff6e;
  margin-left: 30px;
    margin-right: 30px;
  
  
  scroll-behavior: smooth;
  width: 100%;
}

.card {
  min-width: 200px;
  height: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.card video,
.card img,
.card iframe {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

/* Title */
.title1 {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px;
}

/* Product Panel */
.product-panel {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 8px;
  padding: 5px;
  background: rgba(0,0,0,0.6);
}

.product-panel img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  
}

.product-panel .info {
  color: white;
  font-size: 12px;
}

/* Popup */
.popup1 {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: black;
  top:33px;
  left: 0px;
}

.popup-content1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup1 video,
.popup1 img,
.popup1 iframe {
  max-width: 90%;
  max-height: 90%;
  height: 77%;
    object-fit: contain;
    width: 100%;
}

/* Popup Product */
.popup-product1 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  padding: 10px;
  border-radius: 10px;
  color: white;
}

.popup-product1 a{
 
  display: flex;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
 
}

.popup-product1 img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

/* Close */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Nav */
.nav1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }
.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}



.gallery1::-webkit-scrollbar {
  display: none;
}

/* Buttons */
.gbtn {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 50px;
  border: none;
  font-size: 28px;
  color: white;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}

.prev-btn1 { left: 0; }
.next-btn1 { right: 0; }

.gbtn:hover {
  background: rgba(0,0,0,0.8);
}