/* --- Reset & Fonts --- */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            overflow-x: hidden; /* Verhindert horizontales Scrollen */
        }

        /* --- Grundlayout --- */
        .product-hero.fullwidth {
            position: relative;
            width: 100vw;
            min-height: 100vh; /* Mindestens volle Höhe */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f6f6f6;
        }

        /* NEUE LOGIK: Flex-Container mit Smart Padding */
        .product-hero .row {
            display: flex;
            align-items: center;
            justify-content: flex-start; 
            width: 100%;
            max-width: 100%; /* Keine Begrenzung mehr, damit Slider bis zum Rand geht */
            margin: 0;
            z-index: 2;
            position: relative;
            
            /* Berechnetes Padding links:
               Sorgt dafür, dass der Inhalt bei ca. 1400px Breite optisch zentriert beginnt.
               Fallback für kleinere Screens ist 40px.
            */
            padding-left: 40px; 
            padding-right: 0; /* Rechts kein Padding, damit Slider andockt */
        }
        
        /* Erst ab großen Screens die Zentrierungs-Logik aktivieren */
        @media (min-width: 1480px) {
            .product-hero .row {
                padding-left: calc(50vw - 700px);
            }
        }

        /* --- Linke Seite --- */
        .left-col {
            /* Fixe Breite für Stabilität */
            flex: 0 0 450px;
            position: relative;
            z-index: 5;
            padding-right: 40px;
        }

        .teaser .small-text {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            color: #888;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }

        .teaser h2 {
            font-size: 52px; /* Etwas größer für Impact */
            font-weight: 700;
            line-height: 1.1;
            margin: 10px 0 25px 0;
            color: #111;
        }

        .teaser .btn {
            display: inline-block;
            padding: 14px 35px;
            background: #000;
            color: #fff;
            border-radius: 50px;
            margin: 10px 0 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .teaser .btn:hover {
            background: #e63946;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        .footnote {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        .footnote .red {
            color: #e63946;
            font-weight: 700;
        }
        
        .footnote a {
            color: #111;
            text-decoration: underline;
        }

        /* --- Mittlere Produktkarte (Der "Overlap" Star) --- */
        .middle-col {
            flex: 0 0 360px; /* Feste Breite */
            z-index: 10; /* Muss ÜBER dem Slider liegen */
            position: relative;
            /* Der Overlap entsteht durch negativen Margin zum nächsten Flex-Item (Slider) */
            margin-right: -80px; 
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.12);
            text-align: center;
            padding: 25px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card .discount {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #000;
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }

        .product-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
            display: block;
            object-fit: cover;
            aspect-ratio: 3/4;
        }

        .product-card .product-name {
            font-weight: 700;
            font-size: 18px;
            color: #111;
            margin: 0 0 5px 0;
        }

        .product-card .price {
            font-size: 15px;
            color: #666;
            margin: 0;
        }

        .product-card .new {
            color: #e63946;
            font-weight: 700;
            margin-right: 8px;
        }

        .product-card .old {
            text-decoration: line-through;
            opacity: 0.6;
        }

        /* --- Rechte Seite: Vertical Slider (Lückenlos) --- */
        .right-col {
            /* Flex: 1 sorgt dafür, dass dieser Container allen restlichen Platz
               bis zum rechten Bildschirmrand einnimmt. 
               Durch position: relative bleibt er im Layout-Fluss direkt neben der Middle Col.
            */
            position: relative;
            flex: 1; 
            height: 75vh; /* Nicht ganz Fullscreen, wie gewünscht */
            max-height: 850px;
            
            overflow: hidden;
            z-index: 1; /* Im Hintergrund */
            
            /* Design-Details */
            background: #fff;
            border-radius: 30px 0 0 30px; /* Nur links abgerundet */
            box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        }
        
        .vertical-slider {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide-track {
            display: flex;
            flex-direction: column;
            animation: scrollUp 50s linear infinite; /* Langsame, stetige Bewegung */
        }

        .slide-track img {
            width: 100%;
            height: 65vh; /* Bilder füllen den Slider gut aus */
            object-fit: cover;
            display: block;
        }

        @keyframes scrollUp {
            0%   { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .right-col:hover .slide-track {
            animation-play-state: paused;
        }

        /* --- Responsiveness --- */
        @media (max-width: 1200px) {
             /* Anpassung für kleinere Laptops: 
                Da der Slider nun flexibel ist (flex: 1), schrumpft er automatisch.
                Wir müssen nur sicherstellen, dass er nicht zu schmal wird.
             */
             .left-col {
                 flex: 0 0 400px; /* Etwas Platz sparen */
             }
        }

        @media (max-width: 991px) {
            .product-hero.fullwidth {
                flex-direction: column;
                height: auto;
                min-height: auto;
                padding: 60px 0 0;
            }
            
            .product-hero .row {
                flex-direction: column;
                padding: 0 20px; /* Standard Mobile Padding */
                padding-left: 20px; /* Override der Desktop-Berechnung */
                display: flex;
            }

            .left-col {
                width: 100%;
                flex: none;
                max-width: none;
                padding: 0;
                text-align: center;
                margin-bottom: 40px;
            }
            
            .middle-col {
                width: 100%;
                flex: none;
                max-width: 320px;
                margin: 0 auto 50px; /* Reset Margin */
            }

            /* Anpassung für Mobile: Slider wird wieder normaler Block unten */
            .right-col {
                width: 100%;
                flex: none; /* Kein Flex-Grow mehr */
                height: auto; 
                min-height: 300px;
                border-radius: 0; 
            }
            
            .slide-track {
                animation: none; /* Keine Bewegung */
                height: auto;
            }
            
            .slide-track img {
                height: 350px; 
                width: 100%;
                object-fit: cover;
            }

            /* Alle Bilder außer dem ersten ausblenden auf Mobile */
            .slide-track img:not(:first-child) {
                display: none;
            }
        }
 