/* ===========================================================
   Taco.Rave – Merch / Page sections / Modal / Newsletter / Toast
   =========================================================== */

/* ----- Unified section system ----- */
.page-section {
  padding: 4rem 1.5rem;
  scroll-margin-top: 100px;
}

.page-section .section-inner,
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
  background: linear-gradient(180deg, #ffffff 0%, #fca55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--text-shadow-subtle);
}

.section-lead {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* About + Social uniform */
.about-section,
.social-section,
.merch-section,
.newsletter-section {
  scroll-margin-top: 100px;
}

.about-section p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.92;
}

/* Header right side mobile-friendly */
@media (max-width: 760px) {
  .header-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  /* Instagram-Button auf Mobile aus Top-Nav raus (Bottom-Nav hat Insta-Icon) */
  .nav-cta { display: none; }
  header[role="banner"] { padding: 0.5em 1em !important; }
  /* Header-Logo kompakt auf mobile (vorher Bild 110×120 = Header 150px hoch) */
  .logo-small { width: 64px !important; height: auto !important; }
}

/* Footer responsive */
.footer-nav { flex-wrap: wrap; row-gap: 0.4rem; }

/* ----- Merch container (full merch page) ----- */
.merch-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.merch-hero {
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

.merch-hero-instructions {
  max-width: 640px;
  margin: 0.75rem auto 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

.merch-instructions {
  margin-top: 1rem;
  text-align: center;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* ----- Merch grid ----- */
.merch-section .merch-grid,
.merch-container .merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media screen and (min-width: 600px) {
  .merch-section .merch-grid,
  .merch-container .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 980px) {
  .merch-section .merch-grid,
  .merch-container .merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .merch-container .merch-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- Merch tabs (category filter) ----- */
.merch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem auto 0.5rem;
  padding: 0.45rem 0.5rem;
  position: sticky;
  /* genug Abstand zur fixed-Header damit nichts überdeckt wird */
  top: 110px;
  z-index: 5;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 7, 7, 0.88);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* Scroll-Anker damit beim Klick auf #merch der Bereich nicht hinter dem
   Header verschwindet */
.merch-section, .merch-container {
  scroll-margin-top: 120px;
}

/* Auf Mobile nicht sticky – Bottom-Nav reicht für Orientierung */
@media (max-width: 760px) {
  .merch-tabs {
    position: static;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
}

.merch-tab {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--text-color);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
}

.merch-tab:hover {
  border-color: #fca55e;
  transform: translateY(-1px);
}

.merch-tab.active {
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  border-color: #fca55e;
  color: #000;
  box-shadow: 0 4px 14px rgba(252, 165, 94, 0.4);
}

.merch-empty {
  padding: 3rem 1rem;
  text-align: center;
  opacity: 0.7;
  grid-column: 1 / -1;
}

/* ===== Loading Skeletons ===== */
.skeleton {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(252, 165, 94, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-md);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.skeleton-card {
  background: var(--surface-color, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
}
.skeleton-card .skeleton-img {
  flex: 1;
  border-radius: 0;
}
.skeleton-card .skeleton-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.skeleton-card .skeleton-line {
  height: 14px;
  border-radius: var(--radius-sm);
}
.skeleton-card .skeleton-line--sm { height: 10px; width: 60%; }
@media (prefers-reduced-motion: reduce) {
  .skeleton { animation: none; opacity: 0.4; }
}

/* ===== Polished Empty States ===== */
.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.75;
}
.empty-state-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 165, 94, 0.08);
  border: 1px solid rgba(252, 165, 94, 0.2);
  color: #fca55e;
}
.empty-state-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.empty-state-text {
  font-size: 0.88rem;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}

/* ===== Toast Notifications ===== */
.toast-stack {
  position: fixed;
  bottom: calc(96px + env(safe-area-inset-bottom, 0));
  right: 1rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: calc(100vw - 2rem);
  pointer-events: none;
}
@media (min-width: 761px) {
  .toast-stack { bottom: 1.5rem; }
}
.toast {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 10, 5, 0.96);
  border: 1px solid rgba(252, 165, 94, 0.4);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: toast-in 0.3s var(--ease-soft) forwards;
  max-width: 360px;
}
.toast.toast--out { animation: toast-out 0.25s ease forwards; }
.toast--success { border-color: rgba(80, 200, 120, 0.5); }
.toast--success .toast-icon { color: #5ad487; }
.toast--err { border-color: rgba(220, 80, 80, 0.5); }
.toast--err .toast-icon { color: #ff7e7e; }
.toast--info .toast-icon { color: #fca55e; }
.toast-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.toast-msg { flex: 1; }
@keyframes toast-in {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
  to { transform: translateY(20px); opacity: 0; }
}

/* ----- Merch card ----- */
.merch-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: relative;
}

.merch-card:hover,
.merch-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(252, 165, 94, 0.6);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 165, 94, 0.18);
  outline: none;
}

.merch-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0c0c0c;
  overflow: hidden;
}

.merch-card-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.merch-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease;
  pointer-events: none;
}

.merch-card-img.active {
  opacity: 1;
  pointer-events: auto;
}

.merch-card:hover .merch-card-img.active {
  transform: scale(1.04);
}

/* Reduced motion: kein Skalieren, schnelle Fades */
@media (prefers-reduced-motion: reduce) {
  .merch-card-img { transition: opacity 0.15s ease; }
  .merch-card:hover .merch-card-img.active { transform: none; }
}

.merch-card-dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  padding: 0.3rem 0.55rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.merch-card-dot {
  /* Visuell 7px Punkt, aber 24px Tap-Area über Padding+BG-Clip */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  background-clip: content-box;
  border: 0;
  padding: 8.5px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.merch-card-dot:hover { background-color: rgba(255, 255, 255, 0.7); }

.merch-card-dot.active {
  background-color: #fca55e;
  transform: scale(1.3);
}

.merch-card-multi {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
  font-family: var(--font-secondary);
}

.merch-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  color: #000;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.merch-card-multi {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.merch-card-body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.merch-card-title {
  font-size: 1.1rem;
  margin: 0;
  font-family: var(--font-secondary);
  letter-spacing: 0.01em;
}

.merch-card-sub {
  margin: 0;
  opacity: 0.7;
  font-size: 0.88rem;
  line-height: 1.5;
}

.merch-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.85rem;
  flex-wrap: wrap;
}

.merch-card-price {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fca55e;
  text-shadow: var(--text-shadow-subtle);
  white-space: nowrap;
  flex: 0 0 auto;
}

.merch-card-buy {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

/* Bundle cards get a subtle special treatment */
.merch-card[data-category="bundle"] {
  border-color: rgba(252, 165, 94, 0.4);
  background: linear-gradient(180deg, var(--surface-color) 0%, rgba(252, 165, 94, 0.04) 100%);
}

.merch-card[data-category="bundle"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fca55e 0%, #ff6b9d 100%);
  z-index: 1;
}

.merch-card[data-category="bundle"] .merch-card-price {
  color: #ff7e45;
}

/* Hero polish */
/* Hero: shorter and tagline more prominent */
.hero {
  height: 60vh !important;
  min-height: 420px !important;
  max-height: 560px !important;
}

.hero .bubble-logo {
  width: clamp(220px, 38vw, 380px) !important;
  margin-top: -1rem;
}

.hero {
  padding-bottom: 4rem !important;
}

.hero::after {
  z-index: 0 !important;
}

.hero-tagline {
  margin-top: 1.75rem;
  font-family: var(--font-secondary);
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
  position: relative;
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0.55rem 1.35rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(252, 165, 94, 0.45);
  color: rgba(255, 255, 255, 0.95);
  max-width: 92vw;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 380px) {
  .hero-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.85rem;
  }
}

/* Empty state polish */
.merch-empty {
  padding: 3.5rem 1rem;
  text-align: center;
  opacity: 0.65;
  grid-column: 1 / -1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  font-size: 1.05rem;
}

/* ----- Modal / Product sheet ----- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  max-width: 900px;
  margin: 4vh auto 2vh;
  background: var(--surface-color);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: rgba(252, 165, 94, 0.4);
  transform: rotate(90deg);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 760px) {
  .product-modal-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-carousel {
  position: relative;
  background: #0c0c0c;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(252, 165, 94, 0.9);
  color: #000;
}

.carousel-arrow--prev {
  left: 0.6rem;
}

.carousel-arrow--next {
  right: 0.6rem;
}

.carousel-counter {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
  background: #fca55e;
  transform: scale(1.3);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}

.product-description {
  margin: 0;
  line-height: 1.65;
  opacity: 0.9;
}

.shop-detail-variants,
.merch-detail-variants {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-detail-variants .input-label,
.merch-detail-variants .input-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.variant-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--text-color);
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
  min-width: 48px;
}

.variant-btn:hover {
  border-color: #fca55e;
}

.variant-btn.active {
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  border-color: #fca55e;
  color: #000;
}

.shop-detail-checkout,
.merch-detail-checkout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-price-row,
.shop-shipping-row,
.shop-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.shop-price-row[hidden],
.shop-shipping-row[hidden],
.shop-total-row[hidden],
[hidden] {
  display: none !important;
}

.shop-total-row {
  font-size: 1.15rem;
  font-weight: 700;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-total-price,
.shop-price {
  color: #fca55e;
  font-family: var(--font-secondary);
}

.shop-legal {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

.shop-legal-links {
  font-size: 0.8rem;
  margin: 0;
}

.shop-legal-link {
  color: var(--primary-color);
  opacity: 0.7;
  text-decoration: underline;
  font-weight: 500;
}

.shop-buy-btn,
.merch-buy-btn {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

/* ----- Newsletter ----- */
.newsletter-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, rgba(252, 165, 94, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
}

.newsletter-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface-color);
  border: 1px solid rgba(252, 165, 94, 0.35);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.newsletter-card .section-title {
  margin-bottom: 0.4rem;
  text-align: left;
}

.newsletter-card p {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.newsletter-form {
  display: grid;
  gap: 0.85rem;
}

.newsletter-form .input-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.newsletter-form .input-field {
  width: 100%;
}

.newsletter-form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.85;
  cursor: pointer;
  font-weight: 400;
}

.newsletter-form .checkbox-field input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
  accent-color: #fca55e;
}

.newsletter-form .btn {
  justify-self: start;
}

.newsletter-msg {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.newsletter-msg--ok {
  color: #5ad487;
}

.newsletter-msg--err {
  color: #ff8484;
}

/* ----- Toast ----- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(252, 165, 94, 0.5);
  font-size: 0.95rem;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  max-width: calc(100vw - 2rem);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.toast--show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ----- Cookie banner (EU-konform) ----- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  max-width: 520px;
  margin-left: auto;
  background: var(--surface-color);
  border: 1px solid rgba(252, 165, 94, 0.3);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  z-index: 3000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  font-size: 0.88rem;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-banner-text {
  margin: 0;
  line-height: 1.5;
  font-size: 0.85rem;
}

.cookie-banner-text a {
  color: #fca55e;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-text code {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.05em 0.3em;
  border-radius: 4px;
  font-size: 0.92em;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

@media (min-width: 600px) {
  .cookie-banner-actions .btn { flex: 0 0 auto; }
}

/* ----- Mobile (modal full screen) ----- */
@media screen and (max-width: 759px) {
  .modal-content {
    margin: 0;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 3rem 1.25rem 5rem;
  }
  .product-carousel {
    aspect-ratio: 1 / 1;
  }
}

/* ----- Buttons (unified) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--text-color);
}

.btn--mini {
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  color: #000;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(252, 165, 94, 0.35);
}

.btn-primary:hover {
  color: #000;
  box-shadow: 0 10px 24px rgba(252, 165, 94, 0.5);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-color);
}

.btn-secondary:hover {
  border-color: #fca55e;
  background: rgba(252, 165, 94, 0.08);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-instagram {
  background: linear-gradient(135deg, #fca55e 0%, #ff6b9d 100%);
  color: #000;
  border-color: transparent;
}

.btn-instagram:hover {
  color: #000;
  box-shadow: 0 10px 24px rgba(255, 107, 157, 0.4);
}

/* ----- Footer ----- */
footer[role="contentinfo"] {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem 5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-nav a:hover {
  color: #fca55e;
  opacity: 1;
}

.footer-sep {
  opacity: 0.4;
}

.footer-admin {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.footer-admin::before {
  content: '🔒';
  font-size: 0.75rem;
  opacity: 0.85;
}

.footer-admin:hover {
  color: #fca55e !important;
  border-color: rgba(252, 165, 94, 0.5);
  background: rgba(252, 165, 94, 0.08);
}

/* ===========================================================
   Artists
   =========================================================== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.artist-card {
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  position: relative;
}

.artist-card:hover, .artist-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(252, 165, 94, 0.55);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5), 0 0 22px rgba(252, 165, 94, 0.16);
  outline: none;
}

.artist-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0c0c0c;
  overflow: hidden;
}

.artist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-card-media img {
  transform: scale(1.05);
}

.artist-card-type {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(252, 165, 94, 0.5);
  color: #fca55e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.artist-card-body {
  padding: 0.85rem 1rem 1.1rem;
}

.artist-card-name {
  margin: 0 0 0.2rem;
  font-family: var(--font-secondary);
  font-size: 1.05rem;
}

.artist-card-genre {
  margin: 0;
  opacity: 0.7;
  font-size: 0.83rem;
}

/* Artist Modal */
.artist-sheet .modal-content {
  max-width: 720px;
}

.artist-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.artist-modal-hero {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 560px) {
  .artist-modal-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .artist-modal-image {
    max-width: 200px;
    margin: 0 auto;
  }
}

.artist-modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(252, 165, 94, 0.35);
  background: #0c0c0c;
}

.artist-modal-type {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fca55e;
}

.artist-modal-name {
  margin: 0.25rem 0 0.35rem;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}

.artist-modal-genre {
  margin: 0;
  opacity: 0.75;
  font-size: 0.95rem;
}

.artist-modal-bio {
  margin: 0;
  line-height: 1.65;
  opacity: 0.9;
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.artist-link:hover {
  border-color: #fca55e;
  background: rgba(252, 165, 94, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.artist-link-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.artist-link-icon svg {
  width: 100%;
  height: 100%;
}

.artist-modal-subtitle {
  margin: 0 0 0.6rem;
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fca55e;
}

.artist-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .artist-videos {
    grid-template-columns: 1fr 1fr;
  }
}

.artist-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.artist-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.artist-video--sc {
  aspect-ratio: 5 / 1;
}

.artist-video--sc iframe {
  height: 166px;
}

.artist-modal-empty {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===========================================================
   Events
   =========================================================== */
.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}

@media (min-width: 780px) {
  .events-list {
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.event-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 165, 94, 0.4);
}

@media (max-width: 520px) {
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-card-media {
    aspect-ratio: 16 / 9;
  }
}

.event-card-media {
  background: #0c0c0c;
  overflow: hidden;
  position: relative;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 1rem 1.1rem 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (max-width: 520px) {
  .event-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }
}

.event-card-date {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fca55e;
}

.event-card-title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
}

.event-card-location {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.event-card-lineup {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.event-card-desc {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

.event-card-ticket {
  align-self: flex-start;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

/* Unsubscribe form */
.unsubscribe-form {
  max-width: 420px;
  margin: 1rem 0 2rem;
}

.legal-meta {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  opacity: 0.55;
  text-align: right;
}

/* Legal documents (Datenschutz, AGB) */
.legal-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin: 0.85rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-box--withdrawal {
  background: rgba(252, 165, 94, 0.05);
  border-color: rgba(252, 165, 94, 0.3);
}

.legal-box p {
  margin: 0.2rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 0.55rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  opacity: 0.85;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- Language Switcher ----- */
.lang-switcher {
  display: inline-flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px;
  margin-left: 0.6rem;
  order: 2;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.28rem 0.55rem;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
  line-height: 1;
  min-width: 32px;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  color: #000;
}

@media (max-width: 760px) {
  .lang-switcher {
    margin-left: 0.3rem;
  }
}

/* ===== Print Stylesheet (Legal-Seiten, Bestellungen, Rechnungen) ===== */
@media print {
  @page { margin: 2cm; size: A4 portrait; }
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
  }
  html, body { background: #fff !important; color: #000 !important; font-size: 11pt; line-height: 1.5; }
  header, footer, .bottom-nav, .menu-overlay, .cookie-banner, .toast, .toast-stack,
  .modal-overlay, .modal-close, .scroll-down, .scroll-top-btn, .merch-tabs,
  .nav-cta, #main-header, .lang-switcher, .show-more-btn, .mix-controls,
  .admin-tabs, .admin-header, .admin-section-head-actions, [hidden] { display: none !important; }
  body { padding: 0 !important; margin: 0 !important; }
  main, .page-main, .section-inner, .legal-content {
    max-width: 100% !important; padding: 0 !important; margin: 0 !important;
  }
  .modal { position: static !important; display: block !important; background: #fff !important; }
  .modal-content { border: 1px solid #ddd !important; max-width: 100% !important; max-height: none !important; padding: 0 !important; }
  a { color: #000 !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; opacity: 0.7; }
  a[href^="mailto:"]::after, a[href^="tel:"]::after, a[href^="#"]::after { content: ""; }
  h1, h2, h3 {
    page-break-after: avoid;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
  }
  p, li { page-break-inside: avoid; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  .hero, .background-overlay, video { display: none !important; }
  /* Legal-Seiten kompakter */
  .legal-content h2 { margin-top: 1.2em; font-size: 13pt; }
  .legal-content p, .legal-content li { font-size: 10.5pt; }
}

/* Pricing with shipping hint on card */
.merch-card-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.merch-card-shipping {
  font-size: 0.7rem;
  opacity: 0.55;
  margin-top: 0.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.merch-hero-stripe {
  font-size: 0.85rem;
  opacity: 0.65;
  font-style: italic;
}

/* ===========================================================
   Order / Apply Form Modals
   =========================================================== */
.order-sheet .modal-content,
.apply-sheet .modal-content {
  max-width: 540px;
}

.order-modal-body,
.apply-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.order-modal-head h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
}

.order-modal-sub {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.order-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-form .input-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.order-form .input-field {
  flex: 0 0 auto;
  width: 100%;
  font-weight: 400;
  min-height: 0;
}

.order-form textarea.input-field {
  min-height: 4rem;
  resize: vertical;
}

.order-form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.85;
  cursor: pointer;
  font-weight: 400;
}

.order-form .checkbox-field input {
  margin-top: 0.2rem;
  flex: 0 0 auto;
  accent-color: #fca55e;
}

.order-form-hint {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.8;
  padding: 0.6rem 0.85rem;
  background: rgba(252, 165, 94, 0.08);
  border: 1px solid rgba(252, 165, 94, 0.25);
  border-radius: 10px;
  line-height: 1.5;
}

.order-form-alt {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

.order-form-alt a {
  color: #fca55e;
  text-decoration: underline;
}

.order-success {
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.order-success-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5ad487 0%, #2ea366 100%);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(80, 200, 120, 0.4);
}

.order-success h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-secondary);
  font-size: 1.3rem;
}

.order-success p {
  margin: 0 0 0.6rem;
  line-height: 1.55;
}

.order-success strong {
  font-family: var(--font-secondary);
  color: #fca55e;
  font-size: 1.1em;
  letter-spacing: 0.05em;
}

.artist-apply-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(252, 165, 94, 0.06);
  border: 1px dashed rgba(252, 165, 94, 0.35);
  border-radius: 14px;
}

.artist-apply-cta p {
  margin: 0 0 0.85rem;
  opacity: 0.85;
}

/* ----- Newsletter Double-Opt-In Hint ----- */
.newsletter-doi-hint {
  margin: 0.5rem 0 1.25rem;
  font-size: 0.82rem;
  opacity: 0.7;
  background: rgba(252, 165, 94, 0.06);
  border-left: 2px solid rgba(252, 165, 94, 0.45);
  padding: 0.6rem 0.85rem;
  border-radius: 0 8px 8px 0;
}

/* ----- Show More / Collapse (Mobile) ----- */
.is-collapsed {
  display: none !important;
}

.show-more-btn {
  display: block;
  margin: 1.25rem auto 0;
  min-width: 240px;
  max-width: 90%;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Schmales Mobile: <420px – Hero kleiner, Cards kompakter, Section-Padding reduziert */
@media (max-width: 420px) {
  .hero {
    min-height: 60vh !important;
    height: auto !important;
    /* padding-top 6.5rem damit Logo deutlich unter Header startet */
    padding: 6.5rem 0.75rem 1.5rem !important;
  }
  .bubble-logo {
    width: clamp(180px, 65vw, 280px) !important;
    max-width: 280px !important;
  }
  .hero-tagline {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.95rem !important;
    line-height: 1.2;
    letter-spacing: 0.08em !important;
  }
  .section-title {
    font-size: 1.55rem !important;
  }
  .section-lead {
    font-size: 0.9rem !important;
  }
  .page-section,
  .section-inner {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }
  .merch-card-title {
    font-size: 1rem;
  }
  .event-card-title {
    font-size: 1.05rem;
  }
  .artist-card-name {
    font-size: 1rem;
  }
  .show-more-btn {
    min-width: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .newsletter-card {
    padding: 1.25rem 1rem;
  }
  .footer-inner {
    padding: 1rem 0.85rem;
  }
}

/* iPhone SE / sehr schmal (<360px) */
@media (max-width: 360px) {
  .bubble-logo {
    width: clamp(160px, 60vw, 220px) !important;
  }
  .merch-tabs {
    gap: 0.3rem;
  }
  .merch-tab {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ----- Mobile Spacing & Touch-Targets ----- */
@media (max-width: 760px) {
  .page-section {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .section-title {
    margin-bottom: 0.25rem;
  }
  .section-lead {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  /* Buttons mind. 44px hoch (Apple-Guideline) */
  .btn, .merch-tab, .lang-btn, .show-more-btn, .bottom-nav-item {
    min-height: 44px;
  }
  /* Mehr Luft zwischen Cards */
  .merch-section .merch-grid,
  .merch-container .merch-grid {
    gap: 1rem;
  }
  .events-list {
    gap: 1rem;
  }
  /* Bottom-Nav: Safe-Area-Padding für Notch-iPhones */
  .bottom-nav {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  /* Newsletter-Form-Inputs größer */
  .newsletter-form .input-field,
  .order-form input,
  .order-form textarea {
    font-size: 16px !important; /* verhindert iOS-Zoom */
    padding: 0.85rem 1rem;
  }
}

/* ----- Social: 3-Card Layout + Handle-Subtext ----- */
.social-section .social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 1.25rem auto 0;
  padding: 0 1rem;
}
.social-section .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: var(--surface-color, #1a1a1a);
  color: var(--text-color, #f5f5f5);
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.social-section .social-link:hover,
.social-section .social-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(252, 165, 94, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 165, 94, 0.22);
}
.social-section .social-link svg {
  color: #fca55e;
  margin-bottom: 0.35rem;
}
.social-handle {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  font-weight: 600;
  font-family: var(--font-secondary, 'Orbitron', monospace);
}
.social-hint {
  text-align: center;
  margin: 1rem auto 0;
  max-width: 540px;
  font-size: 0.78rem;
  opacity: 0.55;
  font-style: italic;
}

/* ----- Scroll-to-Top Button (Mobile + Desktop) ----- */
.scroll-top-btn {
  position: fixed;
  right: 1rem;
  /* Über der Bottom-Nav (78px Höhe + 14px Abstand + Safe-Area) */
  bottom: calc(96px + env(safe-area-inset-bottom, 0));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  color: #000;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(252, 165, 94, 0.4), 0 0 18px rgba(252, 165, 94, 0.2);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(252, 165, 94, 0.55), 0 0 22px rgba(252, 165, 94, 0.3);
}
@media (min-width: 761px) {
  .scroll-top-btn {
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
  }
}

/* ----- Focus Ring (Accessibility) ----- */
:focus-visible {
  outline: 2px solid #fca55e;
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}

/* ----- Mix der Woche ----- */
.mix-of-week-section {
  background: linear-gradient(160deg, rgba(252, 165, 94, 0.05) 0%, rgba(252, 165, 94, 0) 100%);
  border-top: 1px solid rgba(252, 165, 94, 0.18);
  border-bottom: 1px solid rgba(252, 165, 94, 0.18);
}
.mix-of-week-inner {
  text-align: center;
  padding: 2.5rem 1rem;
}
.mix-of-week-kicker {
  font-family: 'Orbitron', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fca55e;
  margin: 0 0 0.5rem;
  opacity: 0.85;
}
.mix-of-week-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 0 0 0.35rem;
}
.mix-of-week-subtitle {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0 0 1.5rem;
}
.mix-of-week-artist {
  color: #fca55e;
  text-decoration: none;
  font-weight: 700;
}
.mix-of-week-player {
  max-width: 720px;
  margin: 0 auto;
}
.mix-of-week-player iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(252, 165, 94, 0.18);
}
.mix-of-week-player .artist-video iframe { aspect-ratio: 16 / 9; min-height: 200px; }
.mix-of-week-player .artist-video--sc iframe { height: 180px; aspect-ratio: auto; }
.mix-of-week-player .artist-video--spotify iframe { height: 232px; aspect-ratio: auto; }
.mix-of-week-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Mix-Stage: enthält alle Slides, nur einer sichtbar */
.mix-stage {
  position: relative;
  min-height: 280px;
}
.mix-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mix-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.mix-of-week-inner--multi .mix-stage { padding-bottom: 0.5rem; }

/* Controls: Pfeile, Dots, Pause */
.mix-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1.25rem;
}
.mix-nav {
  background: rgba(252, 165, 94, 0.1);
  border: 1px solid rgba(252, 165, 94, 0.3);
  color: #fca55e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mix-nav:hover { background: rgba(252, 165, 94, 0.25); transform: translateY(-1px); }
.mix-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mix-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mix-dot:hover { background: rgba(255, 255, 255, 0.5); }
.mix-dot.active {
  background: linear-gradient(135deg, #fca55e 0%, #ff7e45 100%);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(252, 165, 94, 0.6);
}
.mix-pause {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mix-pause:hover { color: #fca55e; border-color: rgba(252, 165, 94, 0.4); }
.mix-counter {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-left: 0.4rem;
}
@media (max-width: 480px) {
  .mix-counter { width: 100%; text-align: center; margin: 0.25rem 0 0; }
}

/* ----- Journal / Logbuch ----- */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .journal-grid { grid-template-columns: repeat(3, 1fr); }
}
.journal-card {
  background: var(--surface-color, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.journal-card:hover, .journal-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(252, 165, 94, 0.55);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}
.journal-card-media {
  aspect-ratio: 16 / 10;
  background: #0c0c0c;
  overflow: hidden;
}
.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.journal-card-body {
  padding: 1rem 1.15rem 1.15rem;
}
.journal-card-date {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fca55e;
  opacity: 0.8;
  margin: 0 0 0.35rem;
}
.journal-card-title {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}
.journal-card-excerpt {
  font-size: 0.88rem;
  opacity: 0.8;
  margin: 0 0 0.55rem;
  line-height: 1.5;
}
.journal-card-tags {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  opacity: 0.55;
  margin: 0;
}
.journal-card-tags span { margin-right: 0.4rem; }

/* Journal Modal */
.journal-sheet .modal-content {
  max-width: 720px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
}
.journal-modal-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
}
.journal-modal-date {
  font-family: 'Orbitron', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #fca55e;
  opacity: 0.85;
  margin: 0 0 0.35rem;
}
.journal-modal-title {
  font-size: clamp(1.4rem, 3.5vw, 1.95rem);
  margin: 0 0 0.5rem;
}
.journal-modal-tags {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  opacity: 0.55;
  margin: 0 0 1rem;
}
.journal-modal-tags span { margin-right: 0.55rem; }
.journal-modal-body-text {
  line-height: 1.65;
  font-size: 0.96rem;
}
.journal-modal-body-text h1,
.journal-modal-body-text h2,
.journal-modal-body-text h3 {
  margin: 1.5rem 0 0.5rem;
}
.journal-modal-body-text p { margin: 0 0 1rem; }
.journal-modal-body-text a {
  color: #fca55e;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.journal-modal-body-text img {
  max-width: 100%;
  border-radius: 8px;
  margin: 0.75rem 0;
}
