.swiper-container {
  height: 800px;
  /* statt nur max-height */
  overflow: hidden;
}

.swiper-wrapper,
.swiper-slide {
  height: 600px;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 600px;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 3rem;
}




.thumbs-swiper .swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
  border: 1px solid silver;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #C6D0E0;

}

.thumbs-swiper .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
  border: 1px solid silver;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #C6D0E0;
  display: flex;

  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}


/* Jede Slide bekommt gleich hohe Fläche */
.thumbs-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* nimmt volle 120px ein */
  background: #fff;
  flex-shrink: 0;
}

/* Das Bild bleibt immer zentriert und skaliert */
.thumbs-swiper .swiper-slide img {
  object-fit: contain;
  object-position: center;
  background: #fff;
  cursor: pointer;
  transition: transform .2s;
}

.thumbs-swiper .swiper-slide {
  height: 240px;
}

.swiper-slide .withDropshadow {
  margin: 1rem !important;
}

/* Bootstrap-Pfeil ausblenden */
.accordion-button::after {
  display: none !important;
}

/* Wir machen den Button zum sauberen Flex-Container */
.accordion-button {
  display: flex;
  align-items: center;
  /* Vertikal mittig ausrichten */
  justify-content: flex-start;
  gap: 0.5rem;
  /* Abstand zwischen Pfeil und Text */
  padding-left: 0;
  /* Kein Padding links */
}

/* Neues Icon links vom Text */
.accordion-button {
  display: flex;
  align-items: center;
  /* 🔹 sorgt für vertikale Zentrierung */
  justify-content: flex-start;
  gap: 0.5rem;
  /* schöner Abstand zwischen Pfeil und Text */
  padding-left: 0;
  line-height: 1.2;
  /* optional: Text optisch zentrieren */
}

.accordion-icon {
  display: inline-block;
  /* 🔹 Icon wird wie ein echtes Inline-Element behandelt */
  align-items: center;
  /* 🔹 Inhalt des Icons vertikal zentrieren */
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  background-position: center;
  /* 🔹 Icon exakt mittig */
  transition: var(--bs-accordion-btn-icon-transition);
  transform-origin: center;
  vertical-align: middle;
  /* 🔹 falls es doch noch leicht „springt“ */
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-icon {
  margin-right: 10px;
}

.accordion-button {
  display: block !important;
  font-size: 16px;
  font-weight: 700;
  color:#013476 !important;
}

.accordion-button:not(.collapsed) {
  background-color: white !important;
}
button:focus {
  outline: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.thumbs-swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  /* wichtig, damit Pfeile nicht abgeschnitten werden */
}

/* --- Thumbnails selbst --- */
.thumbs-swiper .swiper-slide {
  flex: 0 0 150px;
  /* Thumbnails schmäler machen */
  max-width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: etwas Luft zwischen den Thumbnails */
.thumbs-swiper .swiper-slide img,
.thumbs-swiper .swiper-slide svg {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
/* --- Thumbnail-Swiper Layout --- */
.thumbs-swiper {
  width: 80%;
  /* Standardmäßig auf 80% Breite */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* bleibt an */
  padding: 0 40px;
  /* Platz für Pfeile schaffen */
  box-sizing: border-box;
}

/* --- Thumbnails selbst --- */
.thumbs-swiper .swiper-slide {
  flex: 0 0 150px;
  /* Thumbnails schmäler machen */
  max-width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Thumbnail-Swiper Layout --- */
.thumbs-swiper {
  width: 80%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* bleibt an */
  padding: 0;
  box-sizing: border-box;
}

/* --- Thumbnails selbst --- */
.thumbs-swiper .swiper-slide {
  flex: 0 0 150px;
  max-width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Separater Container für Navigation (außerhalb von .thumbs-swiper) --- */
.thumbs-navigation {
  position: relative;
  margin-top: 10px;
}

.thumbs-prev,
.thumbs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  z-index: 10;
  color: #666;
  display: block;
}

.thumbs-prev {
  left: -45px;
  /* Pfeil nach links verschieben */
}

.thumbs-next {
  right: -45px;
  /* Pfeil nach rechts verschieben */
}

/* Hover-Effekt für die Pfeile */
.thumbs-prev:hover,
.thumbs-next:hover {
  color: #000;
  opacity: 0.8;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: -90px;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .thumbs-swiper {
    width: 100%;
    /* Auf mobilen Geräten die volle Breite */
    padding: 0;
  }

  /* Pfeile auf mobilen Geräten ausblenden */
  .thumbs-prev,
  .thumbs-next {
    display: none;
  }
}
