/* Zickzack / Feature-Layout für Produktseiten */
.product-section {
  padding-top: 5vh;
  padding-bottom: 5vh;
}

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

.product-section .text {
  flex: 0 0 70%;
  max-width: 1000px;
}

.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);
}

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

@media (max-width: 768px) {
  .product-section .zigzag {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

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

  .product-section .text {
    order: 1;
  }

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

  .img-slider {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .img-slider .slide {
    width: 100%;
    max-height: none;
  }

  .img-slider-arrows {
    display: flex;
    gap: 16px;
  }

  .slider-btn img {
    width: 24px;
    height: 24px;
  }
}

/* App-Screenshot-Galerie */
.app-preview-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.app-preview-gallery img {
  max-width: 200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 80px 240px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.app-preview-gallery img:hover {
  transform: scale(1.08);
}

/* Image Slider */
.img-slider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-slider .slide {
  display: none;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.img-slider .slide.active {
  display: block;
}

@media (min-width: 769px) {
  .img-slider-arrows {
    display: contents;
  }
  .slider-btn.prev { order: -1; }
  .slider-btn.next { order:  1; }
}

.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.slider-btn img {
  width: 32px;
  height: 32px;
}

.slider-btn:hover {
  opacity: 1;
}

/* Über-mich / Inhalts-Sections */
.about-me-section {
  max-width: 85vw;
  background-color: white;
  color: black;
  text-align: center;
  margin: auto;
}

.über-mich-list {
  list-style-type: disc;
  list-style-position: inside;
}
