/* ========== Design-Variablen ========== */
:root{
  --brand:#010066;
  --brand-600:#0606a8;
  --brand-400:#3a3af0;
  --brand-200:#8a8aff;
  --bg: linear-gradient(135deg, #f7f8ff 0%, #e6e8fb 50%, #d4d8f7 100%);
  --fg:#0f172a;
  --muted:#475569;
  --glass-bg:rgba(255,255,255,0.4);
  --glass-border:rgba(1,0,102,0.15);
  --glass-border-hover:rgba(1,0,102,0.25);
  --radius:20px;
  --shadow-sm:0 8px 32px rgba(1,0,102,.12);
  --shadow-lg:0 24px 64px rgba(1,0,102,.24);
  --shadow-glow:0 0 40px rgba(58,58,240,.3);
  --transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Basis-Reset ========== */
*{ box-sizing:border-box }
html,body{ margin:0; padding:0 }

/* ========== Body und Hintergrund ========== */
body{
  color:var(--fg);
  font:16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  font-variant: small-caps;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* Animierter Hintergrund */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
}

/* ========== Basis-Typografie ========== */
a{ color:var(--brand-600); text-decoration:none; transition:var(--transition) }
a:hover{ text-decoration:underline; color:var(--brand-400); text-shadow:0 0 20px rgba(58,58,240,0.5); }

/* ========== Layout-Container ========== */
.container{ 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 24px;
  min-width: 320px; /* Mindestbreite für kleinste Bildschirme */
  width: 100%;
  box-sizing: border-box;
}

/* Flex-Body Layout-Korrekturen */
body { 
  overflow-x: hidden; /* Verhindert horizontales Scrolling */
}

body > * { 
  min-width: 0; 
  flex-shrink: 0; 
  box-sizing: border-box;
}

body > .site-header, 
body > main, 
body > .site-footer { 
  width: 100%; 
  max-width: 100vw;
}

/* Hauptinhalt nimmt verbleibenden Platz ein */
main { flex: 1; }

/* ========== Header und Navigation ========== */
/* Header für Mobile sichtbar machen */
.site-header{
  position:sticky; top:0; z-index:50;
  display:none; /* Desktop: versteckt */
  border-bottom:1.5px solid var(--glass-border);
  box-shadow:var(--shadow-sm);
  backdrop-filter:saturate(1.7) blur(18px);
  transition:var(--transition);
}

/* Mobile: Header anzeigen */
@media (max-width: 768px) {
  .site-header {
    display: block !important; /* Sichtbar machen */
    background: linear-gradient(90deg, 
      rgb(17, 0, 92) 0%, 
      rgb(25, 8, 110) 75%, 
      rgb(35, 15, 125) 100%);
    padding: 12px;
  }
}
.site-header:hover{ box-shadow:var(--shadow-lg); border-bottom-color:var(--glass-border-hover); }
.logo img{ 
  display:block; height:40px; width:auto; 
  filter:drop-shadow(0 2px 8px rgba(1,0,102,.10)); 
  transition:var(--transition);
}
.logo:hover img{ transform:scale(1.05); filter:drop-shadow(0 4px 16px rgba(1,0,102,.20)); }

.nav{ display:flex; gap:22px; align-items:center }
.nav a{ 
  color:var(--brand); font-weight:700; letter-spacing:0.02em; 
  padding:8px 14px; border-radius:12px; 
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.nav a::before{
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition:left 0.5s ease;
}
.nav a:hover{ 
  background:var(--glass-bg); 
  box-shadow:var(--shadow-sm); 
  transform:translateY(-2px);
  text-shadow:0 0 20px rgba(58,58,240,0.3);
}
.nav a:hover::before{ left:100%; }
.burger{
  display:none; /* Desktop: versteckt */
  background:var(--glass-bg); color:var(--fg);
  border:1px solid #c7caf8; padding:8px 12px; border-radius:10px;
  box-shadow:0 2px 8px rgba(1,0,102,.08);
}

/* Mobile: Burger sichtbar machen */
@media (max-width: 768px) {
  .burger {
    display: block !important;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
/* Universelle Sprachauswahl-Buttons */
.lang button, .lang-btn{ 
  color: rgba(255, 255, 255, 0.9) !important; 
  background: rgba(255, 255, 255, 0.08) !important; 
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important; 
  font-size: 16px !important;
  font-family: inherit !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.lang button:hover, .lang-btn:hover{ 
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important; 
  transform: scale(1.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.lang button.active, .lang-btn.active {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  font-weight: bold !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Header Controls Container */
@media (max-width: 768px) {
  .header-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 50px;
  }
  
  /* Logo links */
  .header-controls .logo {
    flex: 0 0 auto;
  }
  
  /* Burger Button */
  .header-controls .burger {
    display: block;
    flex: 0 0 auto;
    padding: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
  }
  
  /* Cart */
  .header-controls .cart {
    flex: 0 0 auto;
    margin-left: 0;
  }
  
  /* Language */
  .header-controls .lang {
    flex: 0 0 auto;
  }
  
  /* Bei sehr wenig Platz: Logo oben, Rest unten zentriert */
  @media (max-width: 500px) {
    .header-controls {
      justify-content: center;
      text-align: center;
    }
    
    .header-controls .logo {
      flex: 1 0 100%;
      text-align: center;
      margin-bottom: 10px;
    }
  }
}

/* Navigation unter dem Header */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-bottom: 1px solid var(--glass-border);
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    z-index: 1000;
  }
  
  .nav.open {
    display: flex;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(1, 0, 102, 0.4);
  }
}

/* Warenkorb-Anzeige im Header */
.cart{ display:flex; align-items:center; gap:8px; margin-left:12px }
.cart-link{
  display:flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:999px;
  background:var(--glass-bg); color:var(--brand);
  box-shadow: var(--shadow-sm);
  border:1.5px solid var(--glass-border);
  backdrop-filter:blur(12px);
  transition:var(--transition);
  position:relative; overflow:hidden;
}
.cart-link::before{
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition:left 0.5s ease;
}
.cart-link:hover{ 
  transform:scale(1.05); 
  box-shadow:var(--shadow-lg);
  border-color:var(--glass-border-hover);
}
.cart-link:hover::before{ left:100%; }
.cart-icon{ font-size:20px; line-height:1; transition:var(--transition); }
.cart-link:hover .cart-icon{ transform:rotate(15deg) scale(1.1); }
.cart-count{
  min-width:22px; height:22px; padding:0 6px;
  background:linear-gradient(135deg, var(--brand), var(--brand-400));
  color:#fff; border-radius:999px;
  font-weight:700; display:inline-flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.cart-link:hover .cart-count{ transform:scale(1.1); box-shadow:var(--shadow-glow); }
.cart-total{ font-variant-numeric:tabular-nums }
@media (max-width:720px){ .cart-total{ display:none } }

/* ========== Button-System ========== */
.btn{
  display:inline-block; padding:14px 24px; border-radius:16px;
  border:1.5px solid var(--brand);
  background:rgba(255, 255, 255, 0.9); 
  color:var(--brand); 
  font-weight:700; 
  text-decoration:none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  backdrop-filter:blur(12px);
  position:relative; overflow:hidden;
  font-size:1rem;
}
.btn::before{
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition:left 0.6s ease;
}
.btn:hover{ 
  box-shadow: var(--shadow-lg); 
  background:linear-gradient(135deg, var(--brand), var(--brand-400)); 
  color:#fff; 
  transform:translateY(-2px) scale(1.05);
  border-color:var(--brand-400);
  text-shadow:0 0 20px rgba(255,255,255,0.5);
  cursor:pointer;
}
.btn:hover::before{ left:100%; }
.btn:active{ transform: translateY(0) scale(1.02); transition-duration:0.1s; }

.btn.secondary{
  background:rgba(255,255,255,0.8); color:var(--brand); border-color:var(--glass-border);
}
.btn.secondary:hover {
  background:linear-gradient(135deg, var(--glass-bg), rgba(255,255,255,0.9));
  color:var(--brand-600);
  border-color:var(--brand-400);
  box-shadow:var(--shadow-lg);
}

/* ========== Karten und Grids ========== */
.grid{ display:grid; gap:22px }
.grid.albums{ grid-template-columns:repeat(auto-fill,minmax(220px,1fr)) }
.card{
  background:rgba(255, 255, 255, 0.9); border:1.5px solid var(--glass-border); 
  border-radius:var(--radius); overflow:hidden;
  box-shadow: var(--shadow-sm);
  backdrop-filter:blur(12px);
  transition:var(--transition);
  position:relative;
}
.card::before{
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.6s ease; z-index:1; pointer-events:none;
}
.card:hover{ 
  box-shadow:var(--shadow-lg); 
  transform:translateY(-8px) scale(1.03);
  border-color:var(--glass-border-hover);
}
.card:hover::before{ left:100%; }
.card .p{ padding:18px; position:relative; z-index:2; }

/* ========== Formular-System ========== */
input, textarea, select{
  width:100%; border:1.5px solid var(--glass-border); border-radius:14px;
  padding:12px 16px; background:rgba(255, 255, 255, 0.9); color:var(--fg);
  box-shadow:var(--shadow-sm); backdrop-filter:blur(8px);
  transition:var(--transition);
  font-size:1rem;
}
input:focus, textarea:focus, select:focus{
  outline:none; border-color:var(--brand-400);
  box-shadow:var(--shadow-lg), 0 0 0 3px rgba(58,58,240,0.1);
  transform:scale(1.02);
}
label{ display:block; margin:12px 0 8px; font-weight:600; }
::placeholder{ color:#94a3b8 }

/* ========== Tabellen-System (Warenkorb) ========== */
table{ width:100%; border-collapse:collapse; background:var(--glass-bg); border:1.5px solid var(--glass-border); border-radius:14px; overflow:hidden; box-shadow:var(--shadow-sm); backdrop-filter:blur(8px) }
th, td{ padding:12px 16px; border-bottom:1px solid #edf0ff }
th{ text-align:left; background:rgba(1,0,102,0.04) }
tr:last-child td{ border-bottom:none }

/* ========== Startseiten-Slider (Bildergalerie) ========== */
.slider{
  position:relative; overflow:hidden;
  border-radius:var(--radius); background:var(--glass-bg);
  border:1.5px solid var(--glass-border); padding:14px;
  box-shadow:var(--shadow-sm); backdrop-filter:blur(10px);
}
.slider-track{
  display:flex; align-items:center; gap:16px;
  transition:transform .2s linear; will-change:transform;
}
.slide{ flex:0 0 auto }
.slide img{
  width:100px; height:100px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(1,0,102,.10);
  display:block;
}

/* ========== Hilfselemente ========== */
.price{ font-weight:700; color:var(--brand) }
.muted, .muted *{ color:var(--muted) }
audio{ width:100% }

/* ========== Footer ========== */
.site-footer{
  margin-top:auto;
  padding:24px;
  background:var(--glass-bg); border-top:1.5px solid var(--glass-border); color:var(--brand);
  box-shadow:var(--shadow-sm); backdrop-filter:blur(10px);
  border-radius:var(--radius) var(--radius) 0 0;
}
.site-footer a{ color:var(--brand-600); }

/* ========== Audio-Player ========== */
.mini-player{ display:flex; align-items:center; gap:12px; padding:8px 12px; border:1.5px solid var(--glass-border); border-radius:12px; background:var(--glass-bg); box-shadow:0 4px 12px rgba(1,0,102,.08); max-width:380px; backdrop-filter:blur(8px) }
.mp-btn{
  width:32px; height:32px; border-radius:50%; border:1.5px solid #c7caf8; background:rgba(238,240,255,0.7); color:var(--brand); font-weight:700; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:background .18s
}
.mp-bar{ position:relative; flex:1; height:8px; background:#eef0ff; border-radius:999px; overflow:hidden }
.mp-progress{ position:absolute; left:0; top:0; bottom:0; width:0%; background:var(--brand); border-radius:999px }
.mp-time{ font-variant-numeric:tabular-nums; color:#475569; font-size:13px; min-width:44px; text-align:right }
.mini-player:hover .mp-btn{ background:#e5e8ff }

/* ========== Künstler-Header ========== */
.artist-title{
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 0 12px 0;
  font-size:clamp(1.7rem, 2.7vw, 2.2rem);
  line-height:1.1;
  background:var(--glass-bg);
  border-radius:var(--radius);
  padding:16px 22px;
  box-shadow:0 4px 18px rgba(1,0,102,.10);
  border:1.5px solid var(--glass-border);
  backdrop-filter:blur(8px);
}
.artist-avatar{
  width:56px; height:56px;
  border-radius:50%;
  object-fit:cover; object-position:center;
  box-shadow:0 4px 12px rgba(1,0,102,.15);
  border:2.5px solid #fff; background:#eef0ff;
}
@media (max-width:480px){
  .artist-avatar{ width:44px; height:44px }
  .artist-title{ font-size:1.2rem; padding:10px 12px }
}

/* Glasmorphismus-Effekte für alle Karten und Popups */
@media (max-width: 720px){
  .card .p{ padding:12px }
  .site-header{ padding:10px 8px }
  .container{ padding:10px }
}

/* ========== Startseiten-spezifische Styles ========== */

/* Flip-Galerie für Startseite */
.flip-gallery {
  position: relative;
  height: 400px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  overflow: hidden;
  width: 100%;
  max-width: 1200px; /* Standard-Begrenzung */
  margin-left: auto;
  margin-right: auto;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 20px;
  height: 100%;
  /* opacity: 0.6; - Entfernt, macht Bilder weißlich */
}

.flip-card {
  perspective: 1000px;
  border-radius: 8px;
  overflow: hidden;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.5s ease;
}

.flip-card .image-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: var(--brand);
  font-size: 2rem;
  opacity: 0.7;
  z-index: 1;
  transition: opacity 0.5s ease;
  border-radius: 8px;
  user-select: none;
}

.flip-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  background: rgba(255,255,255,0.5);
  padding: 32px 40px;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--glass-border);
  min-width: max-content;
  max-width: 90%;
}

.gallery-overlay h2 {
  margin: 0 0 12px 0;
  font-size: 2rem;
  color: var(--brand);
  font-weight: 700;
  white-space: nowrap;
}

.gallery-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  white-space: pre-line;
  line-height: 1.4;
}

.homepage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.homepage-container p {
    white-space: pre-line; 
}

.homepage-success-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    animation: slideDown 0.5s ease-out;
}

.homepage-success-banner h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.homepage-success-banner p {
    margin: 0;
    opacity: 0.9;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Suchformular */
.homepage-search-form {
    margin: 24px 0;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
}

.homepage-search-input {
    width: 70%;
    max-width: 460px;
    padding: 12px 16px;
    border: 2px solid rgba(1, 0, 102, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.homepage-search-input:focus {
    outline: none;
    border-color: #010066;
    box-shadow: 0 0 0 3px rgba(1, 0, 102, 0.1);
    background: white;
}

.homepage-search-results {
    position: absolute;
    left: 0;
    top: 100%;
    width: 70%;
    max-width: 460px;
    z-index: 20;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.15);
    border: 1px solid rgba(1, 0, 102, 0.1);
    max-height: 400px;
    overflow-y: auto;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-category {
    padding: 10px 16px;
    background: rgba(1, 0, 102, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    font-weight: 600 !important;
    color: #010066 !important;
    border-bottom: 1px solid rgba(1, 0, 102, 0.1);
    font-size: 0.95em !important;
    position: relative;
    z-index: 1;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-results-category:not(:first-child) {
    border-top: 2px solid rgba(1, 0, 102, 0.15);
}

.search-results-category.no-results {
    text-align: center;
    color: #666 !important;
    font-style: italic;
    text-transform: none;
    letter-spacing: normal;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(1, 0, 102, 0.05);
}

.search-result-item:hover {
    background: rgba(1, 0, 102, 0.08);
    transform: translateX(4px);
}

.search-result-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.search-result-image {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(1, 0, 102, 0.1);
}

.search-result-text {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: #010066;
    font-size: 0.95em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-subtitle {
    font-size: 0.85em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Album-Raster */
.homepage-albums-section {
    margin: 32px 0;
}

.homepage-albums-title {
    margin-bottom: 20px;
    color: #010066;
    font-size: 1.5rem;
    font-weight: 600;
}

.homepage-album-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(1, 0, 102, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 0, 102, 0.05);
}

.homepage-album-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.2);
    border-color: rgba(1, 0, 102, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.homepage-album-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homepage-album-card:hover img {
    transform: scale(1.05);
}

.homepage-album-info {
    padding: 16px;
}

.homepage-album-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #010066;
    font-size: 1rem;
}

.homepage-album-artist {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.homepage-album-price {
    font-weight: 700;
    color: #010066;
    font-size: 1.1rem;
}

.homepage-cart-btn-form {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.homepage-cart-btn {
    background: rgba(1, 0, 102, 0.9);
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 0, 102, 0.2);
}

.homepage-cart-btn:hover {
    background: #010066;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(1, 0, 102, 0.3);
}

.homepage-cart-btn:active {
    transform: scale(0.95);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .flip-gallery {
        height: 300px;
    }
    
    .flip-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 6px;
        padding: 12px;
    }
    
    .gallery-overlay {
        padding: 20px 24px;
    }
    
    .gallery-overlay h2 {
        font-size: 1.5rem;
    }
    
    .gallery-overlay p {
        font-size: 0.95rem;
    }
    
    .homepage-container {
        padding: 15px;
    }
    
    .homepage-search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .homepage-search-input {
        width: 100%;
        max-width: none;
    }
    
    .homepage-search-results {
        width: 100%;
        max-width: none;
    }
    
    .homepage-album-card {
        margin-bottom: 16px;
    }
    
    .homepage-cart-btn-form {
        top: 8px;
        right: 8px;
    }
    
    .homepage-cart-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .homepage-albums-title {
        font-size: 1.3rem;
    }
    
    .search-result-item {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .search-result-image {
        width: 28px;
        height: 28px;
    }
    
    .homepage-album-info {
        padding: 12px;
    }
}

/* ========== Warenkorb-spezifische Styles ========== */

/* Warenkorb-spezifische Button-Varianten */
.btn.cart-btn {
  padding:8px 12px;
  font-size:1.1em;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  color:var(--brand);
  border:1.5px solid var(--glass-border);
  box-shadow:var(--shadow-sm);
  position:relative;
  z-index:2;
  min-width:unset;
  min-height:unset;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:var(--transition);
}
.btn.cart-btn:hover {
  background:linear-gradient(135deg, var(--brand-400), var(--brand));
  color:#fff;
  box-shadow:var(--shadow-glow);
  text-decoration:none;
  transform:scale(1.1) rotate(5deg);
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.12);
}

.cart-table thead {
    background: linear-gradient(135deg, #010066, #1a1a8e);
}

.cart-table th {
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.cart-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(1, 0, 102, 0.1);
    vertical-align: middle;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table tr:hover {
    background: rgba(1, 0, 102, 0.03);
}

.cart-item-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-cover {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(1, 0, 102, 0.15);
}

.cart-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-item-title a {
    color: #010066;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-title a:hover {
    color: #1a1a8e;
    text-decoration: underline;
}

.cart-item-artist {
    font-size: 0.9em;
    color: #666;
}

.cart-item-artist a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-artist a:hover {
    color: #010066;
    text-decoration: underline;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-quantity-input {
    width: 60px;
    padding: 6px 8px;
    border: 2px solid rgba(1, 0, 102, 0.2);
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cart-quantity-input:focus {
    outline: none;
    border-color: #010066;
    box-shadow: 0 0 0 3px rgba(1, 0, 102, 0.1);
}

.cart-remove-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.cart-remove-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

.cart-remove-btn:active {
    transform: translateY(0);
}

.cart-totals-row {
    background: rgba(1, 0, 102, 0.05);
    font-weight: 500;
}

.cart-total-row {
    background: rgba(1, 0, 102, 0.1);
    font-weight: 700;
    font-size: 1.1em;
}

.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cart-empty-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.12);
    color: #666;
    font-size: 1.1em;
}

/* Mobile Anpassungen für Warenkorb */
@media (max-width: 768px) {
    .cart-container {
        padding: 15px;
    }
    
    .cart-table {
        font-size: 14px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 12px 8px;
    }
    
    .cart-item-display {
        gap: 8px;
    }
    
    .cart-item-cover {
        width: 40px;
        height: 40px;
    }
    
    .cart-item-placeholder {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cart-quantity-input {
        width: 50px;
        font-size: 12px;
    }
    
    .cart-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cart-table {
        display: block;
        width: 100%;
    }

    .cart-table tbody {
        display: block;
        width: 100%;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        display: block;
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(1, 0, 102, 0.1);
    }
    
    .cart-table td {
        display: flex;
        align-items: center;
        text-align: left !important;
        border: none;
        padding: 8px 0;
        gap: 8px;
    }
    
    .cart-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #010066;
        display: inline-block;
        min-width: 80px;
        flex-shrink: 0;
    }
    
    .cart-table td[data-label] {
        justify-content: space-between;
    }
    
    /* Spezielle Behandlung für Artikel-Spalte */
    .cart-table td:first-child {
        display: block;
    }
    
    .cart-table td:first-child:before {
        display: none;
    }
    
    .cart-quantity-controls {
        justify-content: flex-start;
        margin-top: 8px;
    }
    
    .cart-totals-row,
    .cart-total-row {
        background: rgba(1, 0, 102, 0.1) !important;
        margin-top: 8px;
    }
    
    .cart-totals-row td,
    .cart-total-row td {
        justify-content: flex-end;
        text-align: right !important;
        font-weight: 600;
    }
    
    .cart-totals-row td:before,
    .cart-total-row td:before {
        content: none;
    }
    
    .cart-total-row td {
        font-size: 1.1em;
        font-weight: 700;
    }
}

/* ========== Album-Seiten-spezifische Styles ========== */

/* Album-Layout und Trackliste */
.album-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
}

.album-cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.album-cover img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: 4px 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition);
}

.track-item:hover {
  background: rgba(1,0,102,0.04);
  transform: translateX(4px);
}

.track-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0; /* Wichtig für text overflow */
}

.track-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.track-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.simple-play-btn {
  background: var(--glass-bg);
  color: var(--brand);
  transition: var(--transition);
}

.simple-play-btn:hover {
  background: var(--brand);
  color: white;
  transform: scale(1.1);
}

.video-link {
  font-size: 0.8em;
  padding: 4px 8px;
  background: var(--glass-bg);
  border-radius: 4px;
  text-decoration: none;
  color: var(--brand);
  transition: var(--transition);
}

.video-link:hover {
  background: var(--brand);
  color: white;
}

.track-duration {
  font-size: 0.9em;
  font-variant-numeric: tabular-nums;
  min-width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.album-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.album-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.12);
    border: 1px solid rgba(1, 0, 102, 0.05);
}

.album-cover {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(1, 0, 102, 0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

.album-cover:hover {
    transform: scale(1.02);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.album-title {
    font-size: 2rem;
    font-weight: 700;
    color: #010066;
    margin-bottom: 8px;
    line-height: 1.2;
}

.album-artist {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.album-artist a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.album-artist a:hover {
    color: #010066;
    text-decoration: underline;
}

.album-release-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.album-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.album-purchase {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.album-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #010066;
}

.album-add-btn {
    background: linear-gradient(135deg, #010066, #1a1a8e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(1, 0, 102, 0.2);
}

.album-add-btn:hover {
    background: linear-gradient(135deg, #1a1a8e, #2d2d9f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 0, 102, 0.3);
}

.album-add-btn:active {
    transform: translateY(0);
}

/* Trackliste */
.album-tracklist {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(1, 0, 102, 0.12);
    border: 1px solid rgba(1, 0, 102, 0.05);
}

.album-tracklist-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #010066;
    margin-bottom: 20px;
}

.album-cd-section {
    margin-bottom: 24px;
}

.album-cd-section:last-child {
    margin-bottom: 0;
}

.album-cd-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #010066;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 2px solid rgba(1, 0, 102, 0.1);
}

.album-track-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.album-track-item:hover {
    background: rgba(1, 0, 102, 0.03);
    border-color: rgba(1, 0, 102, 0.1);
}

.album-track-number {
    font-weight: 600;
    color: #666;
    min-width: 30px;
    margin-right: 12px;
    font-size: 0.9rem;
}

.album-track-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.album-track-title {
    font-weight: 500;
    color: #333;
    flex: 1;
    font-size: 1rem;
}

.album-track-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    min-height: 24px; /* Mindesthöhe für einheitliche Darstellung */
}

.album-track-duration {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(1, 0, 102, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    align-self: center;
    position: absolute;
    right: 0; /* Fixe Position am rechten Rand */
    min-width: 45px; /* Mindestbreite für einheitliche Darstellung */
    text-align: center;
}

/* Play-Button und Video-Link bekommen feste Positionen */
.album-track-play-btn {
    background: rgba(1, 0, 102, 0.1);
    color: #010066;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    left: 76px;
}

.album-track-video-link {
    color: #010066;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: absolute;
    left: -6px;
}

.album-track-play-btn:hover {
    background: #010066;
    color: white;
    transform: scale(1.1);
}

.album-track-play-btn.playing {
    background: #010066;
    color: white;
}

.album-track-video-link:hover {
    background: rgba(1, 0, 102, 0.1);
    text-decoration: underline;
}

/* Padding für track-controls um Platz für absolute Positionierung zu schaffen */
.album-track-controls {
    padding-right: 60px; /* Platz für Duration rechts */
    padding-left: 100px; /* Platz für Video-Link links */
}

.album-total-duration {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(1, 0, 102, 0.1);
    font-weight: 600;
    color: #010066;
    text-align: right;
    font-size: 1.1rem;
}

/* Mobile Anpassungen für Album-Seiten */
@media (max-width: 768px) {
    .album-container {
        padding: 15px;
    }
    
    .album-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .album-info {
        min-height: auto;
    }
    
    .album-title {
        font-size: 1.6rem;
    }
    
    .album-artist {
        font-size: 1.1rem;
    }
    
    .album-purchase {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .album-price {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .album-add-btn {
        width: 100%;
        text-align: center;
    }
    
    .album-tracklist {
        padding: 20px;
    }
    
    .album-track-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .album-track-controls {
        align-self: flex-start;
    }
    
    .album-track-duration {
        align-self: center;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .album-header {
        padding: 16px;
    }
    
    .album-title {
        font-size: 1.4rem;
    }
    
    .album-tracklist {
        padding: 16px;
    }
    
    .album-track-item {
        padding: 10px 12px;
    }
    
    .album-track-number {
        min-width: 25px;
        margin-right: 8px;
    }
}

/* ========== Desktop Sidebar Navigation ========== */
.sidebar-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 240px;
  height: 100vh;
  background: linear-gradient(180deg, 
    rgb(17, 0, 92) 0%, 
    rgb(25, 8, 110) 30%, 
    rgb(35, 15, 125) 100%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  padding: 0 20px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.sidebar-logo img {
  height: 40px;
}

.sidebar-links {
  flex: 1;
  padding: 0 10px;
  overflow-y: auto;
  max-height: calc(100vh - 200px); /* Platz für Logo und Footer */
}

/* Scrollbar Styling für Sidebar */
.sidebar-links::-webkit-scrollbar {
  width: 6px;
}

.sidebar-links::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.sidebar-links::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.sidebar-links::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.sidebar-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.sidebar-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.sidebar-text {
  font-size: 14px;
}

/* Sidebar Submenu */
.sidebar-submenu {
  margin-left: 10px;
  padding-left: 15px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
}

.sidebar-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.sidebar-sublink:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(6px);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.sidebar-sublink.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-weight: 600;
}

.sidebar-sublink .sidebar-icon {
  font-size: 14px;
  width: 20px;
  opacity: 0.8;
}

.sidebar-sublink .sidebar-text {
  font-size: 13px;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: auto; /* Pushes footer to bottom */
}

.sidebar-lang {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: relative;
  z-index: 1000; /* Stellt sicher, dass die Sprachauswahl über allem liegt */
}

/* Sprachauswahl-Buttons werden durch die universelle Regel oben abgedeckt */

/* Sidebar Warenkorb als integrierter Link */
.sidebar-cart-link.sidebar-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

/* Verstecke Sidebar-Cart auf Mobile */
@media (max-width: 769px) {
  .sidebar-cart-link {
    display: none;
  }
}

.sidebar-cart-link.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.sidebar-cart-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-cart-count {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-cart-total {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

/* Main Content Anpassungen für Sidebar */
.main-wrapper {
  margin-left: 240px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: calc(100vw - 240px); /* Verhindert horizontales Scrolling */
  overflow-x: hidden;
  box-sizing: border-box;
}

.main-wrapper .container {
  flex: 1;
  max-width: none; /* Überschreibt die globale Container-Beschränkung */
  width: 100%;
  min-width: 600px; /* Mindestbreite für gute Lesbarkeit */
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
  /* Sidebar auf Mobile verstecken */
  .sidebar-nav {
    display: none;
  }
  
  /* Main Content ohne Sidebar Margin */
  .main-wrapper {
    margin-left: 0;
    width: 100vw;
  }
  
  .main-wrapper .container {
    min-width: 320px; /* Kleinere Mindestbreite für Mobile */
    padding: 16px; /* Weniger Padding auf Mobile */
  }
  
  .container {
    padding: 16px;
  }
}

/* Desktop-spezifische Anpassungen */
@media (min-width: 769px) {
  /* Body Padding für Sidebar */
  body {
    padding-left: 0;
  }
  
  /* Footer Anpassung */
  .site-footer {
    margin-left: 240px;
  }
}

/* Mittlere Bildschirmgrößen - angepasste Container-Breite */
@media (min-width: 769px) and (max-width: 1200px) {
  .main-wrapper .container {
    min-width: 500px; /* Etwas kleinere Mindestbreite für mittlere Screens */
    padding: 20px;
  }
}

/* Große Bildschirme - optimale Darstellung */
@media (min-width: 1201px) {
  .main-wrapper .container {
    min-width: 700px;
    max-width: 1000px; /* Begrenzt die maximale Breite für bessere Lesbarkeit */
    padding: 32px;
  }
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
  color: inherit;
}

.card a,
.nav a,
.cart-link {
  text-decoration: none;
}