@charset "UTF-8";

/* ================= GLOBALS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    height: 100%;
    background-color: #0a0c13;
 /* background: linear-gradient(180deg, #000000 0%, #1b1b1b 40%, #1f1f1f 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh; */
}

/* =========================================
   NAVIGATION BAR (Final)
   ========================================= */

.main-nav {
    position: relative; 
    z-index: 1000; 
    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 {
    position: relative; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

/* LOGO */
.nav-logo {
    margin: 0; 
    z-index: 10;
}
.nav-logo img { 
    height: 35px; 
    width: auto; 
    display: block; 
}

/* MENÜ LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #c2c2c2;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; 
    letter-spacing: 0; 
    
    border-bottom: 0.5px solid transparent;
    padding-bottom: 0px;
    
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffffff; 
    border-color: #ffffff; 
}

/* WARENKORB ICON (Kein Hover Effekt) */
.nav-cart {
    color: #efefef;
    font-size: 1.1rem;
    z-index: 10;
    display: flex;
    align-items: center;
}

/* --- DESKTOP ZENTRIERUNG --- */
@media (min-width: 769px) {
    .nav-links {
        position: absolute; 
        left: 50%;          
        transform: translateX(-50%); 
        white-space: nowrap; 
    }
}

/* --- MOBILE ANPASSUNG --- */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column; 
        gap: 15px;
    }
    
    .nav-links {
        position: static; 
        transform: none;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 20px;
    }
}

.sec {
    padding: 4rem 0;
}

/* Headings */
.main-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #f6d12e; /* Gold aus deinem Logo/Button */
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    padding-top: 50px;
}

.sub-heading {
    color: #888;
    font-weight: 400;
    font-size: 1rem;
}


/* ================= TABS NAVIGATION (Oben) ================= */
.collection-tabs-wrapper {
    width: 100%;
    /* Horizontal Scrollbar auf Mobile ermöglichen */
    overflow-x: auto;
    padding-bottom: 20px; /* Platz für Scrollbar */
    
    /* Scrollbar verstecken (optional, aber schöner) */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.collection-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.collection-tabs {
    display: flex;
    justify-content: center; /* Zentriert auf Desktop */
    gap: 1px;
    min-width: max-content; /* Wichtig für Mobile Scroll */
    padding: 0 20px;
    padding-top: 40px;
}

@media (max-width: 991px) {
    .collection-tabs {
        justify-content: flex-start; /* Linksstart auf Mobile */
    }
}

/* Einzelner Tab */
.collection-tab {
    width: 100px;
    cursor: pointer;
    text-align: center;
    opacity: 0.5; /* Inaktiv gedimmt */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-tab:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.collection-tab.active {
    opacity: 1;
    transform: translateY(-5px);
}

/* Das Bild im Tab (Kleine Karte) */
.tab-image-wrapper {
    width: 80px;
    height: 110px; /* Hochformat wie im Screenshot */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: #222;
}

.collection-tab.active .tab-image-wrapper {
    border-color: #fff; /* Weißer Rahmen für aktives Element */

    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.tab-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Schwarzweiß wenn inaktiv */
    transition: filter 0.3s ease;
}

.collection-tab.active .tab-image-wrapper img {
    filter: grayscale(0%); /* Farbe wenn aktiv */
}

/* Name unter dem Tab */
.tab-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ccc;
}
.collection-tab.active .tab-name {
    color: #fff;
}


/* ================= DISPLAY AREA (Hauptinhalt) ================= */
.display-area {
    transition: opacity 0.2s ease-in-out; /* Für den Fade-Effekt beim Wechsel */
}

/* Großes Bild Links */
.display-3d-image {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); /* Schöner Schatten */
    transform: perspective(1000px) rotateY(-5deg); /* Leichter 3D Effekt wie im Video */
    transition: transform 0.5s ease;
}
/* .display-3d-image:hover { 
    transform: perspective(1000px) rotateY(0deg) scale(1.01);
}
*/

/* Box Rechts */
.display-content-box {
    background: #1c1d21; /* Leichter Kontrast zum Body Background */
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
}

.display-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f6d12e; /* Gold */
    margin-bottom: 20px;
    line-height: 1.3;
}

.display-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}


/* ================= AUDIO PLAYER ================= */
.waveformSet {
    margin-bottom: 15px;
    /* background: rgba(255,255,255,0.03); */
    padding: 10px 15px;
     /* padding-top: 20px; */
    border-radius: 8px;
}

/* 1. Den Abstand beim LETZTEN Player entfernen */
.waveformSet:last-child {
    margin-bottom: 0;
}

/* 2. Optional: Wenn es dir immer noch zu viel ist, 
   reduziere das Padding der Box nur unten etwas */
.display-content-box {
    /* Dein bestehendes Padding (z.B. 40px) überschreiben: */
    padding: 40px 40px 30px 40px; /* Oben Rechts Unten Links */
}

.wave-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn-icon {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    width: 20px;
    text-align: center;
    transition: color 0.2s;
}

.waveformContainer {
    flex: 1;
}

.wave-title {
    font-size: 0.8rem;
    color: #b6b6b6;
    margin-top: 5px;
    margin-left: 35px; /* Unter die Waveform rücken */
    letter-spacing: 1px;
    text-align: center;
}

.compatible-section {
  margin-top: 3rem;
  text-align: center;
  background-color: #26262b;
  padding: 2rem 0;
}
.compatible-section h3 {
  font-size: 1rem;
  color: #c7c7c7;
}
.compatible-section .icons {
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.compatible-section .icons .icon {
  width: 60px;
  height: 60px;
  margin-right:10px ;
}
.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-price {
  font-size: 18px;
  text-align: center;
  padding-top: 50px;
  color: white;
  font-weight: 500;
}
.buy-button-wrapper {
  margin-top: 2rem;
  text-align: center;
}
.buy-button-wrapper .buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 70px;
  /* ← kompakter, nicer */
  border-radius: 6px;
background-color:#f7d638;
color: #000000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform 0.01s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease, background-color 0.15s ease;
  transition: all 0.2s ease;
}
.buy-button-wrapper .buy-button span {
  color: #005ea6;
}
.buy-button-wrapper .buy-button .paypal-logo {
  height: 33px;
  margin-left: 4px;
  margin-top: 4px;
  vertical-align: middle;
}
.buy-button-wrapper .buy-button:hover {
  /* background-color: #efc436; */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 214, 56, 0.3);
}

/* --- REVIEWS SECTION (NEU EINGEFÜGT VON HOMEPAGE) --- */
.section-reviews {
    background-color: transparent; /* Passt zum Dark Mode */
    padding: 50px 0;
    overflow: hidden;
}

.reviews-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Wrapper für Pfeile + Slider */
.reviews-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Platz für Pfeile an den Seiten */
}

.reviews-swiper {
    width: 100%;
    padding: 10px; /* Damit Schatten nicht abgeschnitten werden */
}

/* Das Review Bild Styling */
.review-img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Runde Ecken für die Screenshots */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5); /* Schöner Schatten */
    transition: transform 0.3s ease;
}


/* --- REVIEWS PFEILE (Spezifisch) --- */
/* Wir nutzen eigene Klassen (.review-next/prev), damit wir sie unabhängig steuern können */
.reviews-slider-wrapper .review-next,
.reviews-slider-wrapper .review-prev {
    color: #9c9c9c; /* Gold */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.reviews-slider-wrapper .review-next:after,
.reviews-slider-wrapper .review-prev:after {
    font-size: 30px;
    font-family: 'swiper-icons'; /* Swiper Standard Icons */
    font-weight: bold;
}

.reviews-slider-wrapper .review-next:hover,
.reviews-slider-wrapper .review-prev:hover {
    color: #fcff54;
}

/* Positionierung */
.reviews-slider-wrapper .review-prev { left: 0; }
.reviews-slider-wrapper .review-next { right: 0; }

/* Icon Content zuweisen (nötig für Custom Classes bei Swiper) */
.reviews-slider-wrapper .review-prev:after { content: 'prev'; }
.reviews-slider-wrapper .review-next:after { content: 'next'; }

.google-ref-link {
    color: #ccc; /* Dezent grau */
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2); /* Feine Linie */
    transition: all 0.3s ease;
    margin-left: 5px;
}

.google-ref-link:hover {
    color: #f6f6f6; /* Gold beim Drüberfahren */
    border-color: #f2f2f2;
}
/* --- ENDE REVIEWS SECTION STYLES --- */

.highlight-section {
  mask-image: linear-gradient(to right, transparent 0%, transparent 8%, black 20%, black 80%, transparent 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 8%, black 20%, black 80%, transparent 92%, transparent 100%);
}
.highlight-section h3 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.highlight-section h4 {
  text-align: center;
  color: #a9a9a9;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.highlight-section .highlight-grid-desktop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .highlight-section .highlight-grid-desktop {
    display: none !important;
  }
}
.highlight-section .highlight-grid-desktop .highlight-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-section .highlight-grid-desktop .highlight-item-wrapper img {
  max-width: 100%;
  height: auto;
}
.highlight-section .highlight-swiper-mobile {
  display: none !important;
  padding: 50px 0;
}
.highlight-section .highlight-swiper-mobile .swiper-pagination {
  position: relative;
  margin-top: 30px;
  bottom: 0 !important;
}
.highlight-section .highlight-swiper-mobile .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-section .highlight-swiper-mobile .swiper-slide img {
  max-width: 100%;
  height: auto;
}
.highlight-section .highlight-grid-mobile {
  display: none !important;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .highlight-section .highlight-grid-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }
}
.highlight-section .highlight-grid-mobile .highlight-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-section .highlight-grid-mobile .highlight-item-wrapper img {
  max-width: 100%;
  height: auto;
}

.brand-strip__logos {
  text-align: center;
}
.brand-strip__logos img {
  max-width: 600px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: grayscale(100%);
}

.brand-strip__logos-desktop {
  display: block !important;
}
@media (max-width: 767px) {
  .brand-strip__logos-desktop {
    display: none !important;
  }
}

.brand-strip__logos-mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .brand-strip__logos-mobile {
    display: block !important;
  }
}

.brand-strip-marquee {
  display: none !important;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .brand-strip-marquee {
    display: block !important;
  }
}
.brand-strip-marquee .marquee-track {
  overflow: hidden;
  white-space: nowrap;
}
.brand-strip-marquee .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: marquee 30s linear infinite;
}
.brand-strip-marquee .brandstrip-mobile-item {
  max-width: 120px;
  width: auto;
  height: auto;
  opacity: 0.9;
  filter: grayscale(100%);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.backstory {
  background: #23272e;
  padding: 40px 0;
}
.backstory .backstory-left {
  padding-right: 45px;
}
.backstory .backstory-left h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.backstory .backstory-left p {
  color: #c8c8c8;
  font-size: 0.9rem;
  line-height: 1.6;
}
.backstory .creator-wrapper {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 45px;
}
@media (max-width: 767px) {
  .backstory .creator-wrapper {
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
.backstory .creator-wrapper .creator-photo-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
}
@media (max-width: 767px) {
  .backstory .creator-wrapper .creator-photo-wrapper {
    width: 200px;
    height: 200px;
  }
}
.backstory .creator-wrapper .creator-photo-wrapper .creator-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  /* Wir ändern die Position auf 'center top', damit das Bild oben ansetzt */
  object-position: center top; 
  
  /* HIER IST DIE MAGIE: */
  /* scale(1.3) = 130% Zoom (mach es größer, wenn du mehr Zoom willst) */
  /* translateY(15px) = Schiebt das Bild 15px nach UNTEN (mehr Platz über Kopf) */
  transform: scale(1.3) translateY(15px);
}
@media (max-width: 991px) {
  .backstory {
    padding: 40px 20px;
  }
  .backstory .backstory-left {
    margin-bottom: 2rem;
    text-align: center;
    padding-right: 0;
  }
  .backstory .creator-wrapper {
    padding-left: 0;
  }
}

.faq .faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
}
.faq .faq-item {
  background: #22232a;
  border-radius: 10px;
  border: 1px solid #333542;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq .faq-item.is-open .faq-toggle {
  transform: rotate(180deg);
}
.faq .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  text-align: left;
}
.faq .faq-question:hover .faq-icon {
  border-color: #f6d12e;
}
.faq .faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #80829a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.faq .faq-question-text {
  flex: 1;
  font-size: 17px;
}
.faq .faq-toggle {
  font-size: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1b1c22;
  border-top: 1px solid #2b2d38;
  transition: max-height 0.22s ease;
}
.faq .faq-answer p {
  padding: 16px 22px 20px;
  margin: 0;
  font-size: 15px;
  color: #d5d5de;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 767px) {
  .faq .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .faq .faq-question {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq .faq-question-text {
    font-size: 15px;
  }
  .faq .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .faq .faq-answer p {
    padding: 14px 18px 18px;
    font-size: 14px;
  }
}

.site-footer {
  background: #151515;
  padding: 40px 0;
  color: #ebebeb;
  margin-top: 80px;
  font-family: "Montserrat";
}
.site-footer .footer-row {
  gap: 8px;
}
.site-footer .footer-copy {
  font-size: 10px;
  opacity: 0.85;
  white-space: nowrap;
  margin-bottom: 0;
  color: #ebebeb;
}
.site-footer .footer-links {
  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;
}
.site-footer .footer-links a:hover {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}
.site-footer .dot {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .site-footer {
    margin-top: 60px;
    padding: 30px 0;
  }
  .site-footer .footer-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .site-footer .footer-copy {
    margin-bottom: 0;
    text-align: center;
  }
  .site-footer .footer-links {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=styles.css.map */

/* =========================================
   RESTORE OLD DESKTOP SCROLLER
   ========================================= */

/* Scroller Container mit Fade-Effekt an den Seiten */
.highlight-scroller {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 40px 0;
  
  /* Der Fade-Effekt */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 2%,
    black 15%,
    black 85%,
    transparent 98%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 2%,
    black 15%,
    black 85%,
    transparent 98%,
    transparent 100%
  );
}

/* Die Track-Leiste für die Bilder */
.highlight-track {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Styling nur für Desktop-Items */
.highlight-scroller .highlight-item {
  width: 260px; /* Deine alte feste Größe */
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.highlight-scroller .highlight-item:hover {
  transform: scale(1.02);
}

.highlight-scroller a {
    text-decoration: none;
    border: none;
}

/* MOBILE FIXES 
   Stellt sicher, dass der Mobile-Slider angezeigt wird, 
   da der Programmierer "display: none !important" im CSS hatte.
*/
@media (max-width: 991px) {
    .highlight-swiper-mobile {
        display: block !important;
        padding-bottom: 40px;
    }
    
    .highlight-swiper-mobile .swiper-pagination {
        bottom: 0px !important;
    }
}

/* =========================================
   FIX: MOBILE VERSION SICHTBAR MACHEN
   ========================================= */

@media (max-width: 991px) {
    /* Erzwingt die Anzeige des Sliders auf Mobile/Tablet */
    .highlight-section .highlight-swiper-mobile {
        display: block !important;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    /* Positionierung der Punkte (Pagination) korrigieren */
    .highlight-section .highlight-swiper-mobile .swiper-pagination {
        position: absolute;
        bottom: 10px !important;
        width: 100%;
    }
    
    /* Stellt sicher, dass die Bilder im Slider zentriert sind */
    .highlight-section .highlight-swiper-mobile .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* ============================================================
   FIX: FADE-EFFEKT NUR FÜR MOBILE BRAND-STRIP (LOGOS)
   ============================================================ */

/* 1. Zuerst den "falschen" globalen Effekt von der ganzen Sektion entfernen */
/* Damit werden deine Highlight-Bilder wieder klar und randlos */
.highlight-section {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* 2. Den Fade-Effekt NUR auf das Logo-Laufband (Mobile) anwenden */
/* Die Klasse .brand-strip-marquee ist nur auf Handy/Tablet sichtbar */
.brand-strip-marquee {
    /* Ein weicher Verlauf: Transparent (0%) -> Sichtbar (10%) ... Sichtbar (90%) -> Transparent (100%) */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%) !important;
    
    /* Sicherstellen, dass der Container die volle Breite nutzt, damit der Fade am Rand sitzt */
    width: 100%;
    display: block !important;
}

/* =========================================
   INDIVIDUELLE LOGO-GRÖSSEN (MOBILE)
   ========================================= */

/* Macht ein Logo kleiner (z.B. 70px breit) */
.brand-strip-marquee .brandstrip-mobile-item.logo-klein {
    max-width: 100px !important; 
    /* Optional: Falls es zu klein wirkt, padding anpassen */
    margin: 0 10px; 
}

/* Macht ein Logo größer (z.B. 160px breit) */
.brand-strip-marquee .brandstrip-mobile-item.logo-gross {
    max-width: 180px !important;
    padding-left: 10px;
}

/* Macht ein Logo riesig (falls nötig) */
.brand-strip-marquee .brandstrip-mobile-item.logo-xl {
    max-width: 200px !important;
}

/* =========================================
   FIX: STRIKTE TRENNUNG DESKTOP / MOBILE
   ========================================= */

/* 1. REGEL FÜR DESKTOP (Alles über 992px) */
@media (min-width: 992px) {
    /* Den beweglichen Mobile-Slider ZWANGSWEISE ausblenden */
    .brand-strip-marquee,
    .brand-strip__logos-mobile {
        display: none !important;
    }

    /* Das statische Desktop-Bild anzeigen */
    .brand-strip__logos-desktop {
        display: block !important;
    }
}

/* 2. REGEL FÜR MOBILE (Alles unter 991px) */
@media (max-width: 991px) {
    /* Den beweglichen Mobile-Slider anzeigen */
    .brand-strip-marquee,
    .brand-strip__logos-mobile {
        display: block !important;
    }

    /* Das statische Desktop-Bild ausblenden */
    .brand-strip__logos-desktop {
        display: none !important;
    }
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
  padding: 100px 24px 80px;
  background: transparent;
  text-align: center;
}

.pricing-title {
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 60px;
}

/* GRID */
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD */
.pricing-card {
  background-color: #1c1d21;
  /* background: linear-gradient(
    180deg,
    #2b2b2b 0%,
    #1f1f1f 100% */
  );
  border-radius: 22px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0px;
}

/* Highlight Plan */
.pricing-card.highlight {
  background-color: #1c1d21;
 /* background: linear-gradient(
    180deg,
    #2b2b2b 0%,
    #1f1f1f 100% */
  );
  border: 1px solid rgba(255,255,255,0.15);
}

/* Plan Name */
.plan-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
  padding-top: 36px;
}

.pricing-card .plan-name {
  padding-bottom: 25px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
  padding-top: 36px;
}

.pricing-card .plan-name-highlight {
  padding-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
  padding-top: 36px;
}

/* Price */
.price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: -10px;
  color: #ffffff;
}

.price-old {
  opacity: 1;
}

.price-main {
  color: #ffffff;
  text-shadow: 0 0 0px rgba(246,255,79,0.2);
}

/* Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  width: 100%;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #e5e5e5;
  font-weight: 400;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f6ff4f;
  font-weight: 700;
}
.plan-features li.unavailable {
  color: #666666; /* Dunkelgrau statt Weiß */
  opacity: 0.6;
}

/* Das Häkchen überschreiben und ein X oder Minus machen */
.plan-features li.unavailable::before {
  content: "✕"; /* Oder "-" */
  color: #666666;  /* Dunkles Grau statt Gelb */
}

/* Buttons */
.plan-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Outline Button */
.plan-button.outline {
  border: 1px solid #f6ff4f;
  color: #f6ff4f;
  background: transparent;
}

/* Filled Button */
.plan-button.filled {
  background: #f6ff4f;
  color: #000;
  box-shadow: 0 12px 30px rgba(246,255,79,0.2);
}

.plan-button:hover {
  transform: translateY(-1px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-title {
    font-size: 28px;
  }
}

.price-divider {
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );

  /* sauberes Ein-/Ausfaden */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.plugin-grid {
    display: grid;
    /* WICHTIG: 'auto' sorgt dafür, dass die Spalten eng am Text anliegen */
    grid-template-columns: repeat(3, auto);
    
    /* Zentriert den gesamten Block in der Mitte */
    justify-content: center;
    
    /* Abstand verringert (vorher 16px -> jetzt 10px oder 8px) */
    gap: 8px 100px; 
    
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 25px;
    list-style: none; /* Standard-Punkte entfernen für sauberere Ausrichtung */
}

.plugin-grid li {
    font-size: 0.9rem;
    color: #d5d5de;
    line-height: 1.4;
    text-align: left;
    
    /* Eigene Bulletpoints, damit sie schön am Text kleben */
    display: flex;
    align-items: center;
}

/* Der kleine Punkt vor jedem Wort */
.plugin-grid li::before {
    content: "•";
    color: #80829a; /* Farbe des Fragezeichen-Icons oder Weiß */
    margin-right: 6px; /* Abstand zwischen Punkt und Text */
    font-size: 1.2em;
    line-height: 1;
}

/* === RESPONSIVE ANPASSUNG === */

/* Ab Tablet (unter 900px) -> 2 Spalten */
@media (max-width: 900px) {
    .plugin-grid {
        grid-template-columns: repeat(2, auto);
        gap: 8px 20px; /* Auf Tablet etwas mehr Luft seitlich */
    }
}

/* Ab Handy (unter 550px) -> 1 Spalte, linksbündig */
@media (max-width: 550px) {
    .plugin-grid {
        grid-template-columns: 1fr; /* Wieder volle Breite */
        justify-content: start;     /* Linksbündig */
        padding-left: 10px;         /* Kleiner Einzug */
    }
    .plugin-grid li {
        justify-content: flex-start;
    }
}
.lieferumfang li {
    font-size: 0.9rem;
    color: #d5d5de;
    line-height: 1.4;
    text-align: left;
    
    /* Eigene Bulletpoints, damit sie schön am Text kleben */
    display: flex;
    align-items: center;
}

/* Der kleine Punkt vor jedem Wort */
.lieferumfang li::before {
    content: "•";
    color: #80829a; /* Farbe des Fragezeichen-Icons oder Weiß */
    margin-right: 6px; /* Abstand zwischen Punkt und Text */
    font-size: 1.2em;
    line-height: 1;
}
@media (max-width: 550px) {
    .lieferumfang {
        padding-bottom: 10px ;         /* Kleiner Einzug */
    }
    }

    @media (max-width: 550px) {
    .lieferumfang {
        padding-bottom: 10px;
    }
} /* Hier wurde die Klammer geschlossen */

/* =========================================
   NUCLEAR FIX: MOBILE SLIDER (V2)
   ========================================= */

@media (max-width: 991px) {
    /* 1. Der Hauptcontainer */
    html body .highlight-section .highlight-swiper-mobile {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        overflow: hidden !important; /* Wichtig, damit nichts rausragt */
        padding-top: 20px;
        padding-bottom: 50px;
    }

    /* 2. DER WRAPPER (Hier lag das Problem mit dem "Untereinander") */
    html body .highlight-section .highlight-swiper-mobile .swiper-wrapper {
        display: flex !important; /* Zwingt die Bilder nebeneinander */
        flex-direction: row !important;
        width: 100% !important;
        height: 100% !important;
        box-sizing: content-box !important;
    }

    /* 3. Die einzelnen Slides */
    html body .highlight-section .highlight-swiper-mobile .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        width: 100% !important; /* Nimmt die volle Breite ein */
        height: auto !important;
    }
    
    /* 4. Die Pagination-Punkte */
    html body .highlight-section .highlight-swiper-mobile .swiper-pagination {
        display: block !important;
        opacity: 1 !important;
        bottom: 0px !important;
        position: absolute !important;
        width: 100% !important;
        z-index: 10 !important;
    }
    
    /* Desktop-Elemente ausblenden */
    html body .highlight-scroller {
        display: none !important;
    }
}
/* =========================================
   PAGINATION NOTFALL-FIX (Sichtbar machen)
   ========================================= */

@media (max-width: 991px) {
    /* 1. Container vorbereiten */
    html body .highlight-section .highlight-swiper-mobile {
        position: relative !important; /* Wichtig für die Positionierung der Punkte */
        padding-bottom: 50px !important; /* Platz unten für die Punkte schaffen */
        overflow: visible !important; /* Testweise erlauben, dass Dinge rausraken */
    }

    /* 2. Den Container der Punkte erzwingen */
    html body .highlight-section .highlight-swiper-mobile .swiper-pagination {
        display: flex !important;
        position: absolute !important;
        bottom: 0px !important;     /* Ganz unten am Rand */
        left: 0 !important;
        width: 100% !important;
        height: 40px !important;    /* Feste Höhe erzwingen */
        justify-content: center !important;
        align-items: center !important;
        z-index: 9999 !important;   /* Ganz nach vorne */
        opacity: 1 !important;
        background: transparent !important; /* Kein Hintergrundbalken */
    }

    /* 3. Die Punkte selbst (Bullets) */
    html body .highlight-section .highlight-swiper-mobile .swiper-pagination-bullet {
        display: inline-block !important;
        width: 6px !important;
        height: 6px !important;
        margin: 0 4px !important;
        border-radius: 50% !important;
        opacity: 1 !important;
        
        /* TEST-FARBE (Rot): Wenn du sie siehst, ändern wir es zu Gold */
        background: #333 !important;
    }

    /* 4. Der aktive Punkt */
    html body .highlight-section .highlight-swiper-mobile .swiper-pagination-bullet-active {
        background: #f6d12e !important; /* Gold */
        transform: scale(1.3) !important;
    }
}

/* =========================================
   HERO PLAYER (Cymatics Style)
   ========================================= */

.hero-player-wrapper {
    width: 100%;
    max-width: 900px; /* Nicht zu breit auf riesigen Screens */
    margin: 50px auto 20px auto; /* Abstand nach oben/unten */
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 20px; /* Damit es auf Handy nicht am Rand klebt */
}

/* Der Runde Play-Button */
.hero-play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ebebeb;             /* Goldenes Icon */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    flex-shrink: 0; /* Verhindert, dass der Button gequetscht wird */
    transition: all 0.2s ease;
    margin-bottom: 22px;
}


/* Der Container für die Wellen */
.hero-waveform-container {
    flex: 1; /* Nimmt den restlichen Platz ein */
    height: 80px; /* Schön hoch wie im Screenshot */
    opacity: 0.9;
}

/* Mobile Anpassung */
@media (max-width: 767px) {
    .hero-player-wrapper {
        gap: 0px;
        margin-top: 30px;
    }
    .hero-play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-top: 20px;
        
    }
    .hero-waveform-container {
        height: 60px; /* Etwas flacher auf Handy */
    }
}

.single-presets-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    padding-top: 50px;
}

/* =========================================
   SINGLE PRESETS STYLING (Compact & Clean)
   ========================================= */

/* 1. Äußerer Rahmen */
.single-presets-slider-wrapper {
    position: relative;
    max-width: 1100px; /* Etwas schmaler insgesamt -> wirkt kompakter */
    margin: 0 auto;
    padding: 0 50px;   /* Platz für die Pfeile */
}

/* 2. Swiper Container */
.single-presets-swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 20px 5px; /* Platz für Schatten */
}

/* 3. Die Karte (Kompakter) */
.single-item {
    display: block;
    background: #151515; /* Ein Tick dunkler für mehr "Premium" Look */
    border-radius: 8px;  /* Etwas weniger rund */
    padding: 12px;       /* Weniger Innenabstand (vorher 15px) */
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
}

.single-item:hover {
    transform: translateY(-3px); /* Nicht ganz so hoch springen */
    border-color: #f6d12e;
    background: #1f1f1f;
    outline-color: #fff;
}

/* 4. Das Bild (Kleiner zwingen) */
.single-item img {
    width: 100%;
    height: auto;
    max-height: 180px; /* HIER: Maximale Höhe reduziert (vorher 250px) */
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

@media (max-width: 767px) {
    #displayImage {
        width: 60% !important;      /* Macht es halb so breit */
        max-width: 300px !important; /* Sicherheitshalber: nie breiter als 200px */
        height: auto !important;    /* Verhältnis beibehalten */
        
        /* Damit es zentriert ist: */
        display: block !important;  
        margin: 0 auto !important;  
    }
}

/* 5. Typografie (Kleiner & Feiner) */
.single-info h4 {
    font-size: 0.8rem; /* Kleiner (vorher 0.9rem) */
    color: #eee;
    margin: 0 0 2px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-info span {
    font-size: 0.75rem; /* Preis kleiner */
    color: #f6d12e;
    font-weight: 500;
}

/* --- PFEILE (Dezent & Gold) --- */
.single-presets-slider-wrapper .swiper-button-next,
.single-presets-slider-wrapper .swiper-button-prev {
    color: #f6d12e !important;
    width: 30px !important;  /* Kleinerer Klickbereich */
    height: 30px !important;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    margin-top: -10px; /* Leichte optische Korrektur nach oben wegen Bildhöhe */
}

/* Icon Größe reduzieren */
.single-presets-slider-wrapper .swiper-button-next::after,
.single-presets-slider-wrapper .swiper-button-prev::after {
    font-size: 18px !important; /* Pfeil-Symbol kleiner (vorher 24-28px) */
    font-weight: bold;
}

/* Position links/rechts */
.single-presets-slider-wrapper .swiper-button-prev { left: 5px !important; }
.single-presets-slider-wrapper .swiper-button-next { right: 5px !important; }

.swiper-slide h4 {
  color: #fff;
  font-size: 13px;

  }

  .swiper-slide span {
  color: #fff459;
  font-size: 13px;
  font-weight: 400;
}

.single-item:hover {
    border: 1px solid #393939!important;
}
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden !important; /* WICHTIG: Verbietet seitliches Scrollen */
    position: relative;
}
#preise {
    /* Das ist magisch: Der Browser stoppt beim Scrollen 15vh (15% der Bildschirmhöhe) VOR dem Element */
    scroll-margin-top: 10vh; 
}

@media (max-width: 767px) {
    .bundle-image {
        width: 95%;
        height: auto;
        /* Damit es zentriert ist: */
        display: block !important;  
        margin: 0 auto !important;  
    }
}

/* --- BUNDLE CONTENT SECTION STYLES --- */

.bundle-content-section {
    background-color: transparent;
    color: #b0b0b0; /* Helles Grau für den Text */
    padding: 60px 20px;
    font-family: 'Montserrat', 'Arial', sans-serif; /* Oder deine Standard-Schriftart */
}

.content-wrapper {
    max-width: 800px; /* Begrenzt die Breite, damit es lesbar bleibt */
    margin: 0 auto;
}

/* Überschrift "Inhalt" */
.content-title {
    text-align: center;
    color: #fde047; /* Helles Gelb */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Die Liste der Presets */
.preset-list {
    margin-bottom: 30px;
    font-size: 16px; /* Schriftgröße der Liste */
}

.preset-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    line-height: 1.4;
}

.preset-name {
    text-align: left;
}

.preset-price {
    text-align: right;
    min-width: 50px;
}

/* Zusammenfassungs-Bereich */
.bundle-summary {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* GESAMT Zeile (Rot) */
.total-calc {
    color: #ef4444; /* Rot */
    font-weight: 800;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through; /* Durchgestrichen */
}

/* ARTIST PRESET PACK Zeile (Gelb) */
.final-deal {
    color: #fde047; /* Gelb */
    font-weight: 800;
    font-size: 18px; /* Etwas größer */
}

/* Die weiße Linie ganz unten */
.bottom-line {
    margin-top: 20px;
    height: 2px;
    background-color: #ffffff;
    width: 100%;
    opacity: 0.9;
}

/* Mobile Optimierung: Bei sehr kleinen Bildschirmen Text etwas kleiner */
@media (max-width: 600px) {
    .preset-row {
        font-size: 14px;
    }
    .final-deal {
        font-size: 18px;
    }
}
/* --- DAW PREVIEW SECTION --- */

.daw-preview-section {
    background-color: transparent; /* Oder dein Standard-Hintergrund */
    padding-bottom: 60px;
}

/* Container für die Tabs */
.daw-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 0px solid #333; /* Dezente Linie drunter */
    padding-bottom: 20px;
}

/* Einzelner Tab */
.daw-tab {
    cursor: pointer;
    opacity: 0.4; /* Inaktiv: ausgegraut */
    transition: all 0.3s ease;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 0px solid transparent; /* Platzhalter für den Strich */
}

/* Logos in den Tabs */
.daw-tab img {
    height: 40px; /* Einheitliche Größe */
    width: auto;
    margin-bottom: -5px;
    filter: grayscale(100%); /* Optional: Schwarz-Weiß wenn inaktiv */
    transition: all 0.3s ease;
}

/* Text unter dem Logo (Optional) */
.daw-name {
    font-size: 0px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none; /* Erstmal ausblenden, bei Bedarf löschen */
}

/* Hover Effekt */
.daw-tab:hover {
    opacity: 0.8;
}

/* AKTIVER ZUSTAND (Wichtig!) */
.daw-tab.active {
    opacity: 1;
    border-bottom: 2px solid #f3f3f3;
}

.daw-tab.active img {
    filter: grayscale(0%); /* Farbe zurück */
    transform: scale(1.1); /* Leicht vergrößern */
}

/* Screenshot Bereich */
.daw-content {
    display: none; /* Standardmäßig alle ausblenden */
    animation: fadeEffect 0.6s; /* Sanftes Einblenden */
}

.daw-content.active-content {
    display: block; /* Nur den aktiven anzeigen */
}

.daw-screenshot {
    border-radius: 10px;
    border: 1px solid #333;
    max-height: 500px; /* Damit es auf großen Screens nicht riesig wird */
    width: auto;
    max-width: 100%;
}

/* Animation Keyframes */
@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .daw-tabs-wrapper {
        gap: 20px;
    }
    .daw-tab img {
        height: 30px; /* Kleiner auf Handy */
    }
}

/* Style für die Überschrift der DAW Section */
.daw-preview-section .section-title {
    color: #ffffff;             /* Textfarbe Weiß */
    font-family: 'Montserrat', sans-serif; /* Deine Standard-Schrift */
    font-size: 1.6rem;            /* Größe (ca. 32px) */
    font-weight: 500;           /* Richtig fett */
    letter-spacing: 0px;        /* Buchstaben etwas auseinanderziehen */
    margin-bottom: 40px;        /* Abstand nach unten zu den Tabs */
    
    /* Optional: Ein goldener Unterstrich? */
    /* border-bottom: 2px solid #f6d12e; */
    /* display: inline-block; */
    /* padding-bottom: 10px; */
}
