/* Container für Video + Slider */
.home-slider-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Volle Viewport-Höhe */
  overflow: hidden;
}

/* Video: Hintergrund, füllt den Container */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Slider: Füllt den Container */
.home-slider {
  position: relative;
  height: 100%;
  width: 100%;
}

/* Overlay: Muss den gesamten Slider abdecken */
.slider-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Jeder Slide muss die volle Höhe einnehmen */
.slider-item {
  height: 100vh; /* Wichtig: Gleiche Höhe wie der Container */
  display: flex;
  flex-direction: column;
}

/* Container für Produktbilder */
.product-image-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Produktbilder */
.hero-product {
  max-width: 100%;
  height: auto;
  display: inline-block;
  max-width: 450px;
}

/* Text und Buttons */
.slider-text {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Container für den Inhalt */
.slider-item .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.home-slider-container, .slider-item, .home-slider {
    height: 100vh !important;
    min-height: 100vh !important;
  }
  .hero-video {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .slider-item .overlay {
    height: 100% !important;
    width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }