     /* --- GRUNDLAGEN & VARIABLEN --- */
      :root {
        --bg-dark: #0f0f0f; /* Noch schwärzer für mehr Kontrast */
        --bg-secondary: #1a1a1a;
        --gold: #d4af37;
        --gold-hover: #f1c40f;
        --rose-gold: #e0bfb8;
        --text-white: #ffffff;
        --text-gray: #cfcfcf;
      }
      html,
      body {
        overflow-x: hidden; /* Verhindert seitliches Scrollen */
        width: 100%;
        position: relative;
        -webkit-tap-highlight-color: transparent; /* Entfernt das blaue Aufblinken beim Tippen auf Handys */
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }

      body {
        /* NEUE SCHRIFTART FÜR TEXT */
        font-family: "Poppins", sans-serif;
        background-color: var(--bg-dark);
        color: var(--text-white);
        line-height: 1.7;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3 {
        /* NEUE SCHRIFTART FÜR ÜBERSCHRIFTEN */
        font-family: "Oswald", sans-serif;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 2px; /* Mehr Abstand wirkt edler */
        line-height: 1.1;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s;
      }
      ul {
        list-style: none;
      }

      /* --- BUTTONS (Moderner Look) --- */
      .btn {
        display: inline-block;
        background-color: var(--gold);
        color: #000;
        padding: 16px 40px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none; /* Kein Rand mehr, cleaner */
        transition: all 0.3s ease;
        cursor: pointer;
        margin-top: 25px;
        font-size: 1rem;
        font-family: "Oswald", sans-serif;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      /* Button Hover Effekt: Slide */
      .btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #fff;
        z-index: -1;
        transition: width 0.3s ease;
      }

      .btn:hover::after {
        width: 100%;
      }
      .btn:hover {
        color: #000;
        transform: scale(1.05);
      }

      /* --- NAVIGATION (Glassmorphism) --- */
      nav {
        background-color: rgba(15, 15, 15, 0.7); /* Transparenter */
        backdrop-filter: blur(15px); /* Milchglas-Effekt */
        -webkit-backdrop-filter: blur(15px);
        padding: 20px 5%;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        font-family: "Oswald", sans-serif;
        color: var(--gold);
        letter-spacing: 2px;
      }

      .nav-links {
        display: flex;
        gap: 30px;
      }
      .nav-links a {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        position: relative;
      }

      /* Kleiner Strich unter Links beim Hover */
      .nav-links a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--gold);
        transition: width 0.3s;
      }
      .nav-links a:hover::after {
        width: 100%;
      }

      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
        .logo {
          text-align: center;
          width: 100%;
        }
      }

      /* --- HEADER / HERO (CINEMATIC LOOK) --- */
      header {
        height: 100vh;
        position: relative;
        overflow: hidden; /* Wichtig für den Zoom */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
      }

      /* Hintergrundbild als eigenes Element für Animation */
      header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
        background-size: cover;
        background-position: center;
        z-index: -2;
        animation: zoomEffect 20s infinite alternate; /* Langsamer Zoom */
      }

      /* Overlay dunkler Verlauf */
      header::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.4),
          rgba(15, 15, 15, 1)
        );
        z-index: -1;
      }

      @keyframes zoomEffect {
        from {
          transform: scale(1);
        }
        to {
          transform: scale(1.15);
        }
      }

      header h1 {
        font-size: 5.5rem; /* Viel Größer */
        margin-bottom: 15px;
        color: var(--text-white);
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }
      
    /* Ersetze den alten "header h1 span" Block hiermit: */
      header h1 span {
        display: block; 
        
        /* 1. Innen leer machen */
        color: transparent; 
        
        /* 2. Der Rand (die "Röhre") in Weiß/Hellgelb */
        -webkit-text-stroke: 2px #fff; 
        
        /* 3. Das Leuchten nach außen (via Filter, damit innen leer bleibt) */
        filter: drop-shadow(0 0 10px #ffee00);
        }

      /* Füge diese Keyframes ganz unten in deinem <style> Bereich hinzu (alte keyframes ersetzen): */
      @keyframes neonOutlinePulse {
        from {
          /* Weniger Leuchten */
          filter: drop-shadow(0 0 1px #ffee00) drop-shadow(0 0 5px #ffee00);
          -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
        }
        to {
          /* Starkes Leuchten */
          filter: drop-shadow(0 0 2px #ffee00) drop-shadow(0 0 10px #ffee00) drop-shadow(0 0 30px #ffee00);
          -webkit-text-stroke: 2px #fff;
        }
      }
      header p {
        font-size: 1.2rem;
        color: var(--text-gray);
        margin-bottom: 30px;
        max-width: 600px;
        letter-spacing: 1px;
      }

      .walk-in-badge {
        border: 1px solid var(--gold);
        color: var(--gold);
        padding: 10px 25px;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 30px;
        display: inline-block;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        font-weight: 700;
      }
      /* --- PROFI DETAILS --- */

      /* 1. Text-Markierung in Gold statt Blau */
      ::selection {
        background: var(--gold);
        color: #000;
      }

      /* 2. Eigene Scrollbar (wirkt sehr edel in Dark Mode) */
      ::-webkit-scrollbar {
        width: 10px;
      }
      ::-webkit-scrollbar-track {
        background: #0f0f0f;
      }
      ::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 5px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
      }
      /* --- SECTIONS ALLGEMEIN --- */
      section {
        padding: 120px 8%;
      }

      .section-title {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 70px;
        position: relative;
      }

      /* --- ÜBER UNS --- */
      #about {
        background-color: var(--bg-secondary);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 80px;
      }
      .about-text {
        flex: 1;
        min-width: 300px;
      }
      .about-text p {
        margin-bottom: 25px;
        font-size: 1rem;
        color: #bbb;
      }
      .about-img {
        flex: 1;
        min-width: 300px;
        height: 500px;
        background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
        background-size: cover;
        background-position: center;
        /* Kein Rand mehr, dafür Schatten */
        box-shadow: -20px 20px 0px var(--gold);
        filter: grayscale(100%) contrast(1.1); /* Schwarz-Weiß Look */
        transition: 0.5s;
      }
      .about-img:hover {
        filter: grayscale(0%);
        box-shadow: -10px 10px 0px var(--text-white);
      }

      /* --- PREISE --- */
      #prices {
        background-color: var(--bg-dark);
      }
      .price-list {
        max-width: 900px;
        margin: 0 auto;
      }
      .price-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #333; /* Durchgezogene Linie, cleaner */
        padding: 20px 0;
        align-items: center;
        transition: 0.3s;
      }
      .price-item:hover {
        padding-left: 10px;
        border-color: var(--gold);
      }

      .price-item h4 {
        font-size: 1.3rem;
        color: var(--text-white);
        font-weight: 400;
        font-family: "Oswald", sans-serif;
        letter-spacing: 1px;
      }
      .price-item span {
        color: var(--gold);
        font-weight: 700;
        font-size: 1.3rem;
      }

      /* --- COLOR BY SULTAN --- */
      #colorbysultan {
        background:
          linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
          url("https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
        background-size: cover;
        background-attachment: scroll; /* Fixed macht auf Handys oft Probleme */
        text-align: center;
        border: 1px solid var(--rose-gold); /* Feinerer Rahmen */
        margin: 50px 5%; /* Abstand zum Rand für "Card Look" */
      }
      #colorbysultan h2 {
        color: var(--rose-gold);
        font-size: 3.5rem;
      }
      .sultan-text {
        max-width: 700px;
        margin: 0 auto;
        color: #ddd;
        font-size: 1.1rem;
      }
      .btn-rose {
        border: 1px solid var(--rose-gold);
        color: var(--rose-gold);
        background: transparent;
      }
      .btn-rose:hover {
        background-color: var(--rose-gold);
        color: #000;
      }

      /* --- GALERIE --- */
      #gallery {
        background-color: var(--bg-secondary);
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 0; /* Kein Abstand für nahtlosen Look */
      }
      .gallery-item {
        height: 350px;
        background-color: #333;
        background-size: cover;
        background-position: center;
        filter: grayscale(100%);
        transition: all 0.4s ease;
      }
      .gallery-item:hover {
        filter: grayscale(0%);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
      }

      /* --- REVIEWS (GOOGLE ORIGINAL LOOK - DARK) --- */
      #reviews {
        background-color: var(--bg-dark);
        position: relative;
        overflow: hidden;
      }

      .google-header {
        text-align: center;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .google-logo-main {
        /* Das große Logo oben als Header */
        display: block;
        width: 110px;
        height: 36px;
        background: url("/img/google_BIG.svg") no-repeat center;
        background-size: contain;
        padding: 5px 12px;
        border-radius: 4px;
      }

      .rating-score {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--text-white);
        line-height: 1;
        font-family: "Oswald", sans-serif;
      }

      .slider-container {
        max-width: 600px; /* Etwas breiter für den echten Look */
        margin: 0 auto;
        position: relative;
        padding: 0 60px;
      }

      .review-card-wrapper {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Hochwertigere Animation */
      }

      .review-slide {
        min-width: 100%; /* Oder 50% wenn du 2 nebeneinander willst */
        padding: 15px;
        box-sizing: border-box;
      }

      /* --- DIE KARTE (GOOGLE STYLE) --- */
      .review-card-custom {
        background-color: #1e1e1e; /* Google Dark Grey Tone */
        border-radius: 8px; /* Google nutzt 8px, nicht 0 oder 12 */
        padding: 25px;
        text-align: left; /* WICHTIG: Linksbündig für Echtheit */
        position: relative;
        border: 1px solid #333;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        height: 100%; /* Damit alle gleich hoch sind */
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .review-card-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-color: #555;
      }

      /* Header innerhalb der Karte (Bild + Name + G-Logo) */
      .card-top-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        position: relative;
      }

      .reviewer-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 500;
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;

        /* NEU HINZUGEFÜGT FÜR DAS LOGO: */
        position: relative;
        overflow: visible;
        border: 2px solid #333; /* Macht das Profilbild noch edler */
      }

      .reviewer-info {
        display: flex;
        flex-direction: column;
      }

      .reviewer-name {
        font-family:
          "Poppins", sans-serif; /* Google nutzt Roboto/Arial, Poppins passt aber gut */
        font-weight: 600;
        color: var(--text-white);
        font-size: 1rem;
        line-height: 1.2;
      }

      .review-date {
        color: #9aa0a6; /* Original Google Dark Mode Textfarbe */
        font-size: 0.8rem;
        margin-top: 2px;
      }

      .google-profile-badge {
        position: absolute;
        bottom: -2px;
        right: -5px;
        width: 18px;
        height: 18px;
        background-color: white;
        border-radius: 50%;
        padding: 2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        z-index: 5;
      }

      .stars-custom {
        color: #fbbc04; /* Exaktes Google Gelb */
        font-size: 0.9rem; /* Sterne sind bei Google eher klein */
        margin-bottom: 15px;
        letter-spacing: 1px;
      }

      .review-text {
        color: #e8eaed; /* Google Off-White */
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 300;
      }

      .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #333; /* Dunkler Kreis */
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1rem;
        color: #fff;
        z-index: 10;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
      }
      .slider-btn:hover {
        background: #555;
      }
      .prev-btn {
        left: 10px;
      }
      .next-btn {
        right: 10px;
      }

      /* --- FAQ (Soft & Modern) --- */
      #faq {
        background-color: var(--bg-secondary);
        position: relative;
        z-index: 1;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px; /* Mehr Abstand zwischen den Blasen */
      }

      details {
        background-color: #161616; /* Etwas heller als Schwarz */
        border-radius: 16px; /* RUNDE ECKEN (Wichtig gegen das Kantige) */
        border: 1px solid transparent; /* Unsichtbarer Rand als Platzhalter */
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Sehr weiche Animation */
        position: relative;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Leichter Schatten für Tiefe */
      }

      /* Hover Effekt: Nur ganz subtil */
      details:hover {
        background-color: #1a1a1a;
        transform: translateY(-2px); /* Schwebt leicht hoch */
      }

      /* Wenn GEÖFFNET: Goldener Glow & Rand */
      details[open] {
        background-color: #0f0f0f;
        border-color: var(--gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Goldener Schein */
        transform: scale(1.02); /* Wird etwas größer */
      }

      summary {
        padding: 25px 30px;
        cursor: pointer;
        font-weight: 500;
        font-size: 1.1rem;
        position: relative;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--text-white);
        transition: color 0.3s ease;
      }

      summary::-webkit-details-marker {
        display: none;
      }

      /* Überschrift wird Gold beim Hovern */
      summary:hover {
        color: var(--gold);
      }

      /* Das Icon (+): Dünner und eleganter */
      summary::after {
        content: "+";
        font-size: 1.8rem;
        color: var(--gold);
        font-weight: 200; /* Dünnere Schriftart für das Plus */
        line-height: 1;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        display: inline-block;
        margin-left: 15px;
      }

      /* Dreht sich zu einem X */
      details[open] summary::after {
        transform: rotate(45deg) scale(1.1);
        color: #fff;
      }

      details p {
        padding: 0 30px 30px 30px;
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.8; /* Mehr Zeilenabstand für bessere Lesbarkeit */
        margin-top: -10px; /* Zieht den Text etwas näher an den Titel */
        opacity: 0;
        animation: slideDownFade 0.5s forwards;
      }

      /* Text gleitet sanft rein */
      @keyframes slideDownFade {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* --- KONTAKT --- */
      #contact {
        background-color: #0a0a0a;
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
        padding-bottom: 40px;
      }
      .contact-col {
        flex: 1;
        min-width: 300px;
      }
      .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        font-size: 1.1rem;
        font-family: "Oswald", sans-serif;
        letter-spacing: 1px;
      }
      .info-item i {
        color: var(--gold);
        width: 40px;
        font-size: 1.3rem;
        text-align: center;
        margin-right: 15px;
      }

      .opening-hours {
        background: #111;
        padding: 30px;
        border: 1px solid #222;
        margin-top: 20px;
      }
      .opening-hours h4 {
        color: var(--gold);
        margin-bottom: 20px;
        font-weight: 700;
      }
      .oh-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        border-bottom: 1px solid #222;
        padding-bottom: 8px;
      }

      form input,
      form textarea {
        width: 100%;
        padding: 18px;
        margin-bottom: 20px;
        background-color: #111;
        border: 1px solid #222;
        color: #fff;
        font-family: "Poppins", sans-serif;
        outline: none;
        transition: 0.3s;
      }
      form input:focus,
      form textarea:focus {
        border-color: var(--gold);
        background-color: #151515;
      }
      form textarea {
        height: 160px;
        resize: none;
      }

      footer {
        background-color: #000;
        text-align: center;
        padding: 40px;
        font-size: 0.9rem;
        color: #555;
        border-top: 1px solid #111;
      }

      .sticky-buttons {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999;
      }
      .float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: var(--gold);
        color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        font-size: 1.5rem;
        transition: transform 0.2s;
        text-decoration: none;
      }
      .float-btn.whatsapp {
        background-color: #25d366;
        color: white;
      }
      .float-btn.whatsapp:hover {
        box-shadow: 0 0 15px #25d366;
        transform: scale(1.1);
        border-color: var(--rose-gold);
      }

      .float-btn:hover {
        box-shadow: 0 0 15px var(--gold);
        transform: scale(1.1);
        border-color: var(--rose-gold);
      }

      /* Style für den ColorbySultan Button */
      .sultan-btn {
        background-color: var(--rose-gold);
        overflow: hidden;
        padding: 0;
      }

      /* Das Logo im Button */
      .sultan-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Füllt den Kreis komplett aus */
        border-radius: 50%;
        display: block;
      }

      /* Hover Effekt */
      .sultan-btn:hover {
        box-shadow: 0 0 15px var(--rose-gold); /* Rosé Leuchten */
        transform: scale(1.1);
        border-color: var(--rose-gold);
      }

      /* --- MEDIA QUERIES (MOBILE ANPASSUNGEN) --- */
      @media (max-width: 768px) {
        /* Header Überschrift kleiner */
        header h1 {
          font-size: 3rem;
        }

        /* Weniger Abstand an den Seiten */
        section {
          padding: 80px 20px;
        }

        .about-img {
          height: 350px;
        }

        /* --- HIER IST DER FIX FÜR COLORBYSULTAN --- */
        #colorbysultan {
          margin: 30px 0;
          border-left: none;
          border-right: none;
        }

        #colorbysultan h2 {
          font-size: 2.2rem; /* Viel kleiner, damit es passt */
          letter-spacing: 1px; /* Etwas weniger Abstand zwischen Buchstaben */
          word-wrap: break-word; /* Erzwingt Umbruch falls immer noch zu lang */
        }
        /* ------------------------------------------ */

        .sticky-buttons {
          bottom: 20px;
          right: 20px;
        }

        .float-btn {
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
        }

        .price-list {
          padding: 0 5px;
        }
      }

      /* --- SCROLL FOCUS EFFEKT (MOBILE) --- */
      
      /* Die Klasse, die per Javascript hinzugefügt wird */
      .gallery-item.active {
          filter: grayscale(0%) !important; /* Farbe an */
          transform: scale(1.05) !important; /* Groß machen */
          z-index: 10;
          box-shadow: 0 10px 40px rgba(0,0,0,0.7) !important;
          border: 1px solid var(--gold); /* Optional: Goldener Rand */
      }

      /* Auf dem Handy sollen nicht-aktive Bilder dunkler/kleiner sein */
      @media (max-width: 768px) {
          .gallery-item {
              transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Weiche Animation */
              transform: scale(0.9); /* Standardmäßig etwas kleiner */
              filter: grayscale(100%) brightness(0.7); /* Grau und etwas dunkler */
              margin: 20px 0; /* Mehr Platz zwischen Bildern für den Effekt */
          }
      }

      /* --- PREIS LISTEN EFFEKT (MOBILE FOCUS) --- */
      
      /* Standard-Zustand auf Handy: Etwas ausgeblendet */
      @media (max-width: 768px) {
          .price-item {
              transition: all 0.4s ease;
              opacity: 0.4; /* Nicht-aktive sind dunkel */
              transform: scale(0.95);
              border-bottom: 1px solid #222; /* Sehr dunkle Linie */
              padding: 15px 10px; /* Standard Padding */
          }

          /* Der AKTIVE Zustand (Mitte des Bildschirms) */
          .price-item.active {
              opacity: 1; /* Volle Sichtbarkeit */
              transform: scale(1.05); /* Wird größer */
              border-bottom: 1px solid var(--gold); /* Goldene Linie */
              background-color: #161616; /* Leichter Hintergrund */
              border-radius: 8px; /* Abgerundet */
              padding: 20px 15px; /* Mehr Platz */
              box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* 3D Effekt */
              z-index: 5;
          }
          
          /* Der Preis im aktiven Element soll leuchten */
          .price-item.active span {
              text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
          }
      }

      /* --- ABOUT IMAGE SCROLL EFFEKT (MOBILE) --- */
      
      /* Standard auf Mobile: Etwas "schlafend" */
      @media (max-width: 768px) {
          .about-img {
              transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Sehr weiche Bewegung */
              transform: scale(0.95);
              filter: grayscale(100%) brightness(0.6); /* Grau und dunkel */
              opacity: 0.8;
          }

          /* Der AKTIVE Zustand (wenn man draufschaut) */
          .about-img.active {
              transform: scale(1.05); /* Zoomt leicht rein */
              filter: grayscale(0%) brightness(1); /* Volle Farbe */
              opacity: 1;
              box-shadow: 0 15px 30px rgba(0,0,0,0.6) !important;
              z-index: 2;
          }
      }

      /* Modal Hintergrund (abgedunkelt) */
      .custom-modal {
        display: none; /* Standardmäßig versteckt */
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(5px); /* Milchglas-Effekt */
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      /* Die Box selbst */
      .modal-content {
        background-color: #1a1a1a;
        border: 1px solid #333;
        padding: 40px;
        border-radius: 12px;
        text-align: center;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: scale(0.8);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      /* Text Styles */
      .modal-content h3 {
        font-family: "Oswald", sans-serif;
        color: var(--gold);
        font-size: 1.8rem;
        margin: 20px 0 10px 0;
      }

      .modal-content p {
        color: #ccc;
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
      }

      /* Der Button */
      .modal-btn {
        background-color: var(--gold);
        color: #000;
        border: none;
        padding: 12px 30px;
        font-weight: 700;
        font-family: "Oswald", sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.3s;
      }
      .modal-btn:hover {
        background-color: #fff;
        transform: scale(1.05);
      }

      /* --- SVG Animation (Checkmark) --- */
      .success-icon-container {
        width: 80px;
        height: 80px;
        margin: 0 auto;
      }
      .checkmark {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #fff;
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px var(--gold);
        animation:
          fill 0.4s ease-in-out 0.4s forwards,
          scale 0.3s ease-in-out 0.9s both;
      }
      .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: var(--gold);
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
      }
      .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
      }

      @keyframes stroke {
        100% {
          stroke-dashoffset: 0;
        }
      }
      @keyframes scale {
        0%,
        100% {
          transform: none;
        }
        50% {
          transform: scale3d(1.1, 1.1, 1);
        }
      }
      @keyframes fill {
        100% {
          box-shadow: inset 0px 0px 0px 50px var(--gold);
        }
      }

      /* --- Error Modal Spezifisch --- */
      .modal-btn-outline {
        background: transparent;
        border: 1px solid #555;
        color: #999;
        padding: 8px 20px;
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        margin-top: 10px;
        transition: 0.3s;
      }
      .modal-btn-outline:hover {
        border-color: #fff;
        color: #fff;
      }

      .error-icon-container {
        width: 80px;
        height: 80px;
        margin: 0 auto;
      }

      .cross {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: block;
        stroke-width: 2;
        stroke: #ff4d4d;
        stroke-miterlimit: 10;
        box-shadow: inset 0px 0px 0px #ff4d4d;
        animation:
          fillRed 0.4s ease-in-out 0.4s forwards,
          scale 0.3s ease-in-out 0.9s both;
      }

      .cross__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #ff4d4d;
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
      }

      .cross__line {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
      }

      @keyframes fillRed {
        100% {
          box-shadow: inset 0px 0px 0px 50px #ff4d4d;
        }
      }

      /* --- MOBILE FIX FÜR REVIEW KARTEN --- */
      @media (max-width: 768px) {
        
        /* 1. Container breiter machen (weniger Platz für Buttons verschwenden) */
        .slider-container {
          padding: 0 35px; /* Vorher 60px. Jetzt haben die Karten viel mehr Platz! */
          width: 100%;
        }

        /* 2. Die Karte selbst kompakter machen */
        .review-card-custom {
          padding: 20px 15px; /* Weniger Innenabstand */
        }

        /* 3. Textgröße minimal verringern, damit die Karte nicht so hoch wird */
        .review-text {
          font-size: 0.9rem;
          line-height: 1.4;
        }

        /* 4. Buttons kleiner machen und ganz an den Rand schieben */
        .slider-btn {
          width: 30px;
          height: 30px;
          font-size: 0.8rem;
          background: rgba(51, 51, 51, 0.9); /* Etwas durchsichtiger */
        }
        
        /* Buttons näher an den Rand rücken */
        .prev-btn {
          left: 0px; 
        }
        .next-btn {
          right: 0px;
        }
      }