.lightbite-wellcome-background-image {
  position: relative;
  background: url("../img/LightBiteLogo.webp") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  background-color: #000;
}

.spacegaze-wellcome-background-image {
  position: relative;
  background: url("../img/SpaceGazeLogo.webp") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  background-color: #000;
}

/* Overlay */
.lightbite-wellcome-background-image::before,
.spacegaze-wellcome-background-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.lightbite-wellcome-background-image > *,
.spacegaze-wellcome-background-image > * {
  position: relative;
  z-index: 2;
}

/* Produkt-Sections */
.product-wellcome-container {
  min-height: 55vh;
  background-color: black;
  color: #fff;
}

.product-section {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.product-section .zigzag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-direction: row;
}

.product-section .text {
  flex: 0 0 70%;
}

.product-section .image {
  flex: 0 0 30%;
}

.product-section .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Desktop: Zickzack */
.product-section:nth-of-type(even) .zigzag {
  flex-direction: row-reverse;
}

/* Mobile: immer untereinander (erst Text, dann Bild) */
@media (max-width: 768px) {
  .product-section .zigzag {
    flex-direction: column;
    text-align: center;
  }

  .product-section:nth-of-type(even) .zigzag {
    flex-direction: column;
  }

  .product-section .image,
  .product-section .text {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Reihenfolge: Text zuerst, Bild danach */
  .product-section .text {
    order: 1;
  }

  .product-section .image {
    order: 2;
  }
}