video {
  max-width: 500px;
  margin: auto;
  clip-path: inset(1px 1px);
}

@media (max-width: 500px) {
  h3.main-headline {
    font-size: 28px !important;
    line-height: 32px !important;
  }

  .ecom-block.ecom-core.core__block.elmspace.ecom-o0n6wtb7ps9 {
    margin: 0 !important;
  }
}

.video-container {
  position: relative;
  max-width: 800px;
  width: 100%; /* Add this */
  height: auto; /* Or specific height if needed */
  margin: 0 auto !important;
  touch-action: manipulation; /* Improves touch responsiveness */
  
}

video {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain; /* Ensures proper aspect ratio */
  cursor: pointer;
}

