/* RESET & BASICS */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #0a0c13;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION BAR STYLES --- */

.nav-logo img {
    height: 40px; /* Anpassen: 40px, 50px oder 60px – je nachdem wie groß du es willst */
    width: auto;  /* Behält das Seitenverhältnis bei */
    display: block; /* Verhindert ungewollte Lücken unter dem Bild */
}

.main-nav {
    /* HIER DIE ÄNDERUNG: */
    position: relative; /* Statt 'sticky' oder 'fixed' */
    
    /* 'top: 0' brauchst du nicht mehr zwingend, stört aber auch nicht */
    
    z-index: 1000; 
    
    /* Der Rest bleibt gleich */
    background: rgba(36, 37, 40, 0.9); 
    backdrop-filter: blur(10px); 
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.nav-wrapper {
    display: flex;
    justify-content: space-between; /* Logo links, Menu rechts */
    align-items: center;
}

/* LOGO STYLE */
.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 100px;
}

/* MENÜ LINKS */
.nav-links {
    display: flex;
    list-style: none; /* Keine Punkte */
    gap: 40px; /* Abstand zwischen den Worten */
    margin: 0;
    padding: 0;
    margin-right: 100px;
}

/* Basis-Style für die Links */
.nav-links li a {
    color: #c2c2c2;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; /* 600 ist schön kräftig, 400 wäre dünner */
    letter-spacing: 0; 
    /*text-transform: uppercase; */
    
    /* TRICK: Wir setzen eine unsichtbare Linie (transparent),
       damit der Platz schon reserviert ist. */
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0px; /* Abstand zwischen Wort und Strich */
    
    transition: all 0.3s ease;
}

/* Hover-Effekt: Linie und Text werden gelb */
.nav-links li a:hover {
    color: #ffffff; /* Deine Gelb-Farbe */
    border-color: #ffffff; /* Macht die transparente Linie sichtbar */
}

/* Active-Klasse (falls du anzeigen willst, wo man gerade ist) */
.nav-links li a.active {
    color: #fff;
    border-color: #ffffff;
}

/* --- MOBILE ANPASSUNG (Einfach: Links untereinander) --- */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column; /* Untereinander statt nebeneinander */
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.8rem;
    }
}

/* --- WARENKORB (Rechts) --- */
.nav-cart {
    color: #efefef;
    font-size: 1.1rem;
    z-index: 10;
    /* Optional: Abstand zum rechten Rand, falls gewünscht */
    /* margin-right: 10px; */ 
}

/* --- DAS MENÜ (Exakt Zentriert) --- */
/* Nur auf Desktop anwenden, sonst Crash auf Handy */
@media (min-width: 769px) {
    .nav-links {
        position: absolute; /* Löst es heraus */
        left: 50%;          /* Startet in der Mitte */
        transform: translateX(-50%); /* Schiebt es um die eigene Hälfte zurück -> EXAKTE MITTE */
        
        display: flex;
        gap: 40px;
        list-style: none;
        margin: 0;
        padding: 0;
        white-space: nowrap; /* Verhindert Umbrüche */
    }
}

/* --- MOBILE FALLBACK (Damit Handy noch geht) --- */
@media (max-width: 768px) {
    .nav-links {
        position: static; /* Normales Verhalten zurück */
        transform: none;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 20px;
    }
    .nav-wrapper {
        flex-direction: column;
    }
}


.bundle-image {
  display: flex;
  justify-content: center; /* Zentriert horizontal */
  align-items: center;     /* (Optional) Zentriert vertikal */
  padding-top: 10px;
  padding-bottom: 0px;
}

/* Hier änderst du die Größe */
.bundle-image img {
  width: 700px; /* Deine Wunschbreite */
  height: auto; /* Wichtig: Damit es nicht verzerrt wird */
  max-width: 100%; 
}

/* HERO SECTION */

.collection-hero {
    text-align: center;
    padding: 80px 0 40px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-sub {
    color: #888;
    font-size: 1.1rem;
}


/* GRID LAYOUT (DAS HERZSTÜCK) */
.product-grid {
    display: grid;
    /* 1. HIER IST DER BEFEHL: Erstelle genau 4 gleich große Spalten */
    grid-template-columns: repeat(4, 1fr); 
    
    gap: 20px;
    padding-bottom: 100px;
    
    /* 2. Damit das Ganze zentriert bleibt, begrenzen wir die Breite */
    max-width: 1000px; /* Optional: Passt gut zu 4 Karten */
    margin: 0 auto;    /* Zentriert den Grid-Block auf der Seite */
}

/* WICHTIG: Auf Tablets/Handys müssen es weniger Spalten sein */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablets */
    }
}

@media (max-width: 500px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 Spalte auf Handys */
    }
}

/* PRODUCT CARD DESIGN */
.product-card {
    /* Breite auf 100% setzen, damit sie die Grid-Spalte ausfüllt */
    width: 100%; 
    
    /* Deine alten Styles bleiben: */
    background: #1c1d21;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.image-wrapper {
    /* 1. Flexbox aktiviert die Zentrierung */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* 2. Hintergrund transparent oder passend zur Karte */
    background: transparent; 
    
    /* 3. Verhältnis anpassen: Quadratisch (1/1) passt meist besser zu 3D-Boxen */
    aspect-ratio: 1/1; 
    
    /* 4. Etwas Innenabstand, damit die Box nicht am Rand klebt */
    padding: 15px; 
    
    position: relative;
    overflow: hidden;
}

.product-img {
    /* 5. Bild darf nicht verzerrt werden */
    width: auto;
    height: auto;
    
    /* 6. Maximale Größe begrenzen, damit es im Rahmen bleibt */
    max-width: 100%;
    max-height: 100%;
    
    /* 7. WICHTIG: 'contain' zeigt das ganze Bild ohne Abschneiden */
    object-fit: contain; 
    
    transition: transform 0.5s ease;
    
    /* Optional: Ein schöner Schatten direkt am Bild für 3D-Effekt */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}


/* Badges (Neu, Bestseller) */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.badge.new { background: #f6d12e; color: #000; }
.badge.best { background: #fff; color: #000; }

/* Info Bereich unten */
.card-info {
    padding: 15px; /* Etwas weniger Padding für kompaktere Karten */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    
    /* HIER GEÄNDERT: Alles zentrieren */
    text-align: center; 
    align-items: center; /* Wichtig für Flexbox-Kinder */
    background-color: #121212;
}

.product-title {
    font-size: 0.75rem; /* Schrift minimal kleiner, damit sie in kleine Karten passt */
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
}

.price-row {
    margin-top: auto;
    display: flex;
    
    /* HIER GEÄNDERT: Nicht mehr 'space-between', sondern 'center' */
    justify-content: center; 
    align-items: center;
    width: 100%;
    
    /* Abstand zwischen Preis und Pfeil-Button */
    gap: 15px; 
}

.product-artist {
    font-size: 0.75rem;
    color: #9c9c9c;
    margin-bottom: 10px;
}

.price {
    font-weight: 500;
    color: #9e9e9e;
    font-size: 0.9rem;
}

.btn-arrow {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
/* --- COMPACT FEATURED HERO (CYMATICS STYLE) --- */
.featured-hero {
    /* Viel weniger Abstand oben/unten (vorher 60px/80px) */
    padding: 30px 0; 
   /* background: linear-gradient(180deg, #16171d 0%, #0a0c13 100%);*/
    background-color: #17181c;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0px;
    padding-bottom: 50px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert alles schön */
    gap: 0px; /* Abstand zwischen Text und Bild */
}

/* TEXT BEREICH */
.hero-text {
    flex: 0 1 600px; /* Darf nicht breiter als 500px werden */
    text-align: center;
    margin-top: 20px;
}

.hero-badge {
    background-color: #f6d12e;
    color: #000;
    font-weight: 600;
    font-size: 0.8rem; /* Kleiner */
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 14px; /* Weniger Abstand */
    letter-spacing: 1px;
}

.hero-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem; /* Vorher 3.5rem -> Deutlich kompakter */
    line-height: 1;    /* Engerer Zeilenabstand */
    color: #fff;
    margin-bottom: 14px; /* Weniger Abstand nach unten */
    text-transform: uppercase;
    font-weight: 600;
}

.hero-desc {
    color: #ccc;
    font-size: 1rem; /* Etwas kleiner */
    margin-bottom: 16px; /* Kompakter */
    line-height: 1.4;
    max-width: 90%; /* Damit der Text nicht zu breit läuft */
}

/* PREIS ROW - Kompakter zusammengeschoben */
.hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px; /* Näher am Button */
    justify-content: center;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
}

.new-price {
    color: #f6d12e;
    font-size: 1.8rem; /* Kleiner, aber immer noch dominant */
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
}

/* BUTTON - Etwas flacher */
.hero-cta {
    display: inline-block;
    background-color: #f6d12e;
    color: #000;
    padding: 10px 30px; /* Weniger Padding oben/unten */
    border-radius: 4px;
    font-weight: 650;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(246, 209, 46, 0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 209, 46, 0.4);
    background-color: #ffe055;
}

/* Trust Elements ausblenden oder sehr klein machen für Kompaktheit */
.hero-trust {
    display: none; /* Weg damit, spart Platz! (Optional) */
}

/* BILD BEREICH CONTAINER */
.hero-image {
    flex: 0 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* HIER NEU: Damit das Bild notfalls über den Rand ragen darf, 
       ohne die Sektion zu vergrößern */
    position: relative; 
    z-index: 2; /* Liegt über dem Text-Container, falls sie sich überlappen */
}

/* DAS BILD SELBST */
.bundle-img-hero {
    width: 100%;
    /* Die Basis-Größe lassen wir klein, damit die Sektion flach bleibt */
    max-width: 300px; 
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    
    /* HIER IST DIE MAGIE: */
    /* 1. scale(1.25): Macht das Bild optisch 25% größer, 
          ohne den Platzbedarf zu ändern. */
    /* 2. translateX(-40px): Schiebt das Bild 40px nach LINKS zum Text. */
    transform: scale(1.2) translateX(-20px) translateY(10px);

}


/* MOBILE ANPASSUNG */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: row; /* Auch auf Tablet nebeneinander lassen wenn möglich */
        align-items: center;
        text-align: left;
    }
    .hero-heading { font-size: 2rem; }
    .bundle-img-hero { max-width: 250px; }
}

@media (max-width: 768px) {
    .featured-hero { padding: 40px 0; }
    .hero-content {
        flex-direction: column-reverse; /* Auf Handy untereinander */
        text-align: center;
        gap: 20px;
    }
    .hero-desc { margin: 0 auto 15px auto; }
    .hero-price-row { justify-content: center; }
    .bundle-img-hero { max-width: 280px; margin-bottom: 10px; }
}
/* FILTER BAR */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding-bottom: 5px;
    padding-top: 150px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #ccc;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    border-color: #f6d12e;
    color: #f6d12e;
    background: rgba(246, 209, 46, 0.1);
}
.site-footer {
  background: #151515;
  padding: 40px 0;
  color: #ebebeb;
  margin-top: 80px;
  font-family: "Montserrat", sans-serif;
  border-top: 1px solid rgba(255,255,255,0.05); /* Optional: feine Linie oben */
}

/* HIER WAR DER HAUPTFEHLER: Flexbox fehlte */
.site-footer .footer-row {
  display: flex; /* Wichtig! Sonst greift 'gap' und Zentrierung nicht */
  justify-content: center; /* Zentriert alles horizontal */
  align-items: center; /* Zentriert alles vertikal */
  flex-wrap: wrap; /* Erlaubt Umbruch auf kleinen Screens */
  gap: 8px;
}

.site-footer .footer-copy {
  font-size: 10px;
  opacity: 0.85;
  white-space: nowrap;
  margin-bottom: 3px;
  color: #ebebeb;
}

/* Auch hier Flexbox aktivieren */
.site-footer .footer-links {
  display: flex; 
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer .footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  
  /* margin-bottom -4px ist oft problematisch, lieber weglassen wenn möglich */
}

.site-footer .footer-links a:hover {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}

.site-footer .dot {
  opacity: 0.5;
  font-size: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
  .site-footer {
    margin-top: 60px;
    padding: 30px 0;
  }
  
  .site-footer .footer-row {
    flex-direction: column; /* Untereinander statt nebeneinander */
    gap: 15px; /* Etwas mehr Abstand */
  }
  
  /* Den Punkt zwischen Copyright und Links auf Handy ausblenden */
  .dot.hide-mobile {
    display: none;
  }

  .site-footer .footer-copy {
    order: 2; /* Copyright ganz nach unten schieben? (Optional) */
  }

  .site-footer .footer-links {
    justify-content: center; /* Links zentrieren */
    justify-items: center;
    gap: 10px 15px; /* Vertikaler und horizontaler Abstand */
  }
} /* <--- HIER FEHLTE DIE SCHLIESSENDE KLAMMER */
.compatible-section { 
  width: 100%; /* Jetzt reicht 100% */
  margin-top: 50px; /* Margin evtl anpassen, da es keine Hero-Eltern mehr gibt */
  text-align: center;
  background-color: #17171a;
  padding: 2rem 0;
  padding-top: 30px;
  margin-bottom: -70px;
  margin-top: 80px;
}
.compatible-section h3 {
  font-size: 1rem;
  color: #808080;
  font-weight: 400;
}
.compatible-section .icons {
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.compatible-section .icons .icon {
  width: 60px;
  height: 60px;
  margin-right:10px ;
}