#video-banner {
  height: 500px;
  overflow: hidden;
  margin-block: 70px;
  position: relative;
  margin-top:clamp(3.25rem, 0.8732rem + 10.1408vw, 10rem);
}

.video-parent {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔹 Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.video-overlay.hidden {
  opacity: 0;
}

/* زر التشغيل */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 152px;
  height: 152px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* النص والزر */
.video-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.6s ease;
  
}
.video-content p {

  font-size:25px;
}
@media(max-width:768px){
.video-content{
width:100%
}
.video-content p {
font-size:12px !important;
}
}

.video-content.show {
  opacity: 1;
}

.video-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}

#video-banner .btn-primary { 
  background:#ECB365 ;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-view .btn-primary {
  border-radius: 4px !important;
}

#video-banner .btn-primary:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  #video-banner {
    height: 300px;
  }

  .play-btn, .play-btn svg {
    width: 100px !important;
    height: 100px !important;
  }

  .video-content h2 {
    font-size: 22px;
  }
}