/* Video-Hintergrund + Fallback — tiefschwarz / Purple-Obsidian */

.produkt-page {
  font-family: "Montserrat", system-ui, sans-serif;
  background-color: #0a0512;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(163, 102, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(90, 40, 140, 0.12), transparent 50%),
    linear-gradient(180deg, #0f071b 0%, #0a0512 45%, #050208 100%);
}

.video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

.video-background.is-hidden {
  opacity: 0;
}

.overlay-shading {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 7, 27, 0.35) 0%,
    rgba(10, 5, 18, 0.72) 55%,
    rgba(5, 2, 8, 0.92) 100%
  );
  z-index: -99;
  pointer-events: none;
}

.overlay-vignette {
  position: fixed;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.55);
  z-index: -98;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .video-background {
    display: none;
  }
}
