/* LoadTronic – Produkt-Popup für Drum Kit, Merch und CDs (Startseite und Shop).
   Baut auf den beat-qw-Stilen der Seiten auf. */

/* Product image gallery */
.merch-qw-gallery{ margin-bottom: 12px; }
.merch-qw-main{
  border-radius: 16px; overflow: hidden;
  background: #f0f4f8;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.merch-qw-main img{
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  transition: opacity .18s ease;
}
.merch-qw-main img.fading{ opacity: 0; }
.merch-qw-thumbs{
  /* eine Reihe – passen nicht alle hinein (Handy), lässt sie sich seitlich wischen */
  display: flex; gap: 6px;
  overflow-x: auto; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.merch-qw-thumb{
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 8px; border: 2px solid transparent;
  overflow: hidden; cursor: pointer; padding: 0;
  background: #f0f4f8;
  transition: border-color .15s ease;
}
.merch-qw-thumb:hover{ border-color: rgba(32,181,225,.5); }
.merch-qw-thumb.merch-qw-thumb--active{ border-color: var(--hero1, #20b5e1); }
.merch-qw-thumb img{
  width: 100%; height: 100%; object-fit: contain; display: block;
}
/* Bundle button (same look as beat-qw-bundle but is a <button>) */
.merch-qw-soon-note{ margin: 10px 0 0; font-size: 13px; line-height: 1.45; color: var(--muted); text-align: center; }
button.merch-qw-bundle:disabled{ opacity: .55; cursor: not-allowed; }
button.merch-qw-bundle{
  width: 100%;
  text-align: left;
  appearance: none; -webkit-appearance: none;
}
/* Two product images + plus sign in bundle box */
.merch-qw-bundle .bundle-img-wrap{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.merch-qw-bundle .bundle-img{
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(11,18,32,.06);
  flex-shrink: 0;
}
.merch-qw-bundle .beat-qw-bundle-plus{
  width: 28px; height: 28px;
}
@media (max-width: 560px){
  .merch-qw-bundle .bundle-img{ width: 40px; height: 40px; }
  .merch-qw-bundle .beat-qw-bundle-plus{ width: 22px; height: 22px; }
}
.merch-qw-info-card{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.12);
  background: #fff;
  overflow: hidden;
}
.merch-qw-desc{
  margin: 0;
  padding: 14px 16px 8px;
  color: rgba(11,18,32,.78);
  font-size: 14px;
  line-height: 1.55;
}
.merch-qw-desc p{
  margin: 0;
}
.merch-qw-desc p + p{
  margin-top: 10px;
}
.merch-qw-info-card .merch-qw-bundle{
  margin: 0;
  padding-top: 8px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.merch-qw-info-card .merch-qw-bundle:hover{
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
/* Single variant card (drum kit – no size choice) */
.merch-qw-single{
  padding: 14px 16px; border-radius: 16px;
  border: 2px solid #3F68AE;
  background: rgba(63,104,174,.08);
  margin-bottom: 16px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.merch-qw-single-label{
  font-weight: 900; font-size: 15px; color: rgba(11,18,32,.9);
}
.merch-qw-single-price{
  font-weight: 900; font-size: 15px; color: rgba(11,18,32,.88);
  flex-shrink: 0;
}

