.merch-galerie {
    display: flex;
    flex-direction: row;
    gap: var(--block-margin, 20px);
    padding-bottom: 10px;
}

/* Touch / Mobile */
.scrollrad.is-touch .merch-section {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* momentum scroll auf iOS */
    scroll-snap-type: x mandatory;     /* optional: snap */
}




.scrollrad.is-touch .merch-galerie > .produkt {
    flex: 0 0 auto;
    scroll-snap-align: center;          /* optional: snap */
}


.merch-section {
    display: flex;
    align-items: flex-start;
    gap: var(--block-margin);
    margin: 5vh calc(-1*var(--fade-width)); /* top bottom mindestens 15vh wenn horizontales scrollen aktiv*/
    padding: 0 var(--fade-width);
    overflow: hidden;
}

.produkt {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    width: 300px;
}

.produkt-cover {
    height: 300px;
    object-fit: cover;
    display: block;
    position: relative;
    overflow: hidden;
}

.produkt-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

/* Standardbild sichtbar */
.produkt-cover .img-original {
  opacity: 1;
  z-index: 1;
}

/* Altbild versteckt */
.produkt-cover .img-alt {
  opacity: 0;
  z-index: 2;
}

.produkt-name {
    text-align: center;
    transform: rotate(calc(-1 * var(--rotation)));
    margin-bottom: 0;
	margin-top: 10px;
}

.produkt-beschreibung {
    text-align: center;
}

.merch-infotext {
    text-align: center;
}

.is-hidden{
    display: none;
}

@media (max-width: 768px) { /* ab Desktop */
.produkt {
 width: 200px;
}

.produkt-cover {
  height: 200px;
  object-fit: cover;
  display: block;
}
}
