.shop-now-btn {
      position: absolute;
    bottom: 59px;
    right: 0;
    left: 0;
    width: 160px;
    text-align: center;
    background: #be645e;
    color: #fff;
    padding: 5px 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
    transition: background 0.3s ease;
    z-index: 2;
    margin: auto;
    border: 1px solid;
}
.shop-now-btn:hover {
  color: #fff;
}
.gallery-container {
  width: 100%;
  max-width: 600px;
}
.main-video{
    position: relative;
width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 10px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
              0 2px 15px rgba(255, 255, 255, 0.05) inset;
  border: 2px solid #333;
}

.main-video video {

width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  object-fit: contain; /* or contain */
}

.video-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  justify-content: center;
background: #a3804324;
padding: 5px;
}

.thumb {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.8s ease, border 0.8s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb.active-thumb {
  border: 2px solid #fff;
  transform: scale(1.05);
}
.other-video-container {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.other-video video {

  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  margin-bottom: 15px;
  height: 450px;
  width: 100%;
   background: antiquewhite;
  object-fit: cover; /* or contain */
}





.video-layout {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.banner{
    display: flex;
}
/* Glass Effect Banners */
.banner.glass {
  width: 400px;
  padding: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255,255,255,0.1);
  animation: glowPulse 3s infinite ease-in-out;
  transition: transform 0.4s ease;
}

.banner.glass:hover {
  transform: scale(1.05) rotateY(5deg);
}

/* Image inside glass card */
.banner img,video {
  width: 50%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  
}

/* Main Video Player */
.video-container {
position: relative;
  flex: 1;
  max-width: 800px;
}

.video-container video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  height: 450px;
  object-fit: cover;
}

/* Glowing Animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
}
