@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* Reset für alle Browser-Standards */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary: #C05E2E; /* Das Orange aus deinem Button */
    --bg-dark: #2A2624;
    --text-light: #F4F1ED;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #333;
    background-color: #FDFBFA;
}

/* Haupttitel */
html body .main-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 3rem !important;
    display: block !important;
    visibility: visible !important;
}

/* Der kursive Accent */
html body .accent-text {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #D37546 !important;
    display: block !important;
}

/* Der kleine Badge */
html body .sub-badge {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
}


body .accent-text {
    font-family: 'Playfair Display', serif !important;
    color: #D37546 !important; /* Das Orange */
    font-style: italic !important; /* Hier wird es kursiv */
    font-weight: 700 !important;   /* Behält die Stärke bei */
    display: block !important;     /* Setzt "Two Worlds" in eine eigene Zeile */
    margin-top: 0.2em !important;  /* Kleiner Abstand nach oben */
}

/* 1. Globaler Schutz: Verhindert, dass Elemente seitlich rausfliegen */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* 1. Die Navbar: Fixiert sie oben, damit sie nicht im Bild herumschwirrt */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stapelt Logo und Links auf Mobile */
    align-items: center;
    padding: 20px 0;
    z-index: 100;
}


/* Falls der Titel auf Mobile zu groß ist, skalieren wir ihn etwas runter */
@media (max-width: 768px) {
    .hero h1, .crowdfunding-hero-h1 {
        font-size: 2.2rem !important; /* Etwas kleiner für Mobile */
        line-height: 1.1;
        margin-top: 20px;
    }

    /* Die Sprachwahl im Header-Bild verstecken wir auf Mobile, 
       wenn sie in der Navbar steht */
    .mobile-hide-lang {
        display: none;
    }
}

/* 3. Die Sprachwahl separat stylen, damit sie nicht im Titel landet */
.lang-switch-mobile {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Logo Styling */
.logo {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Die Liste der Links */
.nav-links {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch, falls das Handy schmal ist */
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* 3. RESPONSIVE DESIGN (Handy-Sicht) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Logo oben, Links darunter */
        gap: 15px;
        padding: 20px 0;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap; /* Erlaubt Umbruch, falls die Wörter zu lang sind */
        justify-content: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

/* Subtiler Unterstrich beim Hover */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #D37546; /* Dein Marken-Orange */
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D37546;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Button Anpassungen */
.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #D37546;
    color: white;
    box-shadow: 0 4px 15px rgba(211, 117, 70, 0.3);
}

.btn-primary:hover {
    background-color: #b86238;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 117, 70, 0.4);
}

/* Footer Links */
footer .footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: white;
}

/* 2. Der Titel-Bereich: Wir geben ihm massiv Abstand nach oben */
.hero-content {
    padding-top: 120px; /* Schiebt den Titel unter die Navigation */
    text-align: center;
    width: 100%;
}

/* --- Abstand vor dem Hero-Link (oben) --- */
.hero-content p {
    margin-bottom: 50px; /* Erzeugt viel Luft zwischen dem Einleitungstext und dem Button */
}

.hero-crowdfunding {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #FFFFFF; /* Reinweiß */
    font-family: 'Playfair Display', serif;
    /* Ein dezenter Schatten hilft, falls das Bild dahinter sehr unruhig ist */
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    margin: 0;
    padding: 0 20px;
}


/* Der Zustand für die aktive Sprache */
.lang-selector-nav a.active {
    color: #D37546 !important; /* Dein Seshoai-Orange */
    font-weight: 800 !important;
    border-bottom: 2px solid #D37546; /* Optional: Ein kleiner Unterstrich für mehr Klarheit */
}

.lang-selector-nav a:hover {
    color: white;
}

/* --- Abstand vor dem Kontakt-Button (unten bei Let's Connect) --- */
.contact-form textarea {
    margin-bottom: 30px; /* Erzeugt Abstand zwischen dem Nachrichtenfeld und dem Senden-Button */
}

/* --- Einheitliches Button-Verhalten --- */
.btn {
    display: inline-block;
    margin-top: 10px; /* Zusätzlicher Sicherheitsabstand nach oben */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px); /* Subtiler Effekt: Button hebt sich beim Drüberfahren leicht an */
}

/* Styling für die Erfolgsmeldung, damit diese auch Abstand hält */
.success-msg {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(74, 103, 65, 0.8);
    color: white;
}

/* Hero Section Optimierung */
.hero {
    height: 80vh; /* Etwas höher für mehr "Premium"-Gefühl */
    min-height: 500px;
    /* Ein dunkleres Overlay (0.4 bis 0.5), damit der weiße Text knallt */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('img/RooibosGingerBeer.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 5px; /* Mehr Spacing für den edlen Look */
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-size: 2.5rem; /* Etwas kleiner für Mobile */
    margin: 20px 0;
    line-height: 1.2;
}

.hero .italic {
    font-style: italic;
    color: #D37546; /* Dein Marken-Orange */
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 80px 10%;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

/* Supporters */
.supporters {
    background-color: #C5D1C5; /* Das sanfte Grün aus deinem Bild */
    padding: 80px 10%;
    text-align: center;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.badge {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { height: auto; padding: 100px 20px; }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    position: absolute;
    width: 100%;
    z-index: 100;
}


/* Quote */
.quote-section {
    padding: 100px 10%;
    background-color: #F4F1ED;
    text-align: center;
}
blockquote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--bg-dark);
}

/* Collection */
.collection { padding: 80px 10%; text-align: center; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.product-card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }

/* Das Grundgerüst für beide Sektionen */
.product-grid-final {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Erzwingt 2 Spalten am PC */
    width: 100% !important;
    gap: 0 !important;
    margin: 0 !important;
}

.product-card-item {
    position: relative !important;
    height: 75vh !important;
    min-height: 600px !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden !important;
}

/* Der Text-Bereich */
.product-overlay {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 50px !important;
    color: white !important;
}

/* Spezial-Effekt für Coming Soon */
.grayscale {
    filter: grayscale(100%);
    opacity: 0.8;
}

/* Mobile Ansicht (Handy) */
@media screen and (max-width: 900px) {
    .product-grid-final {
        grid-template-columns: 1fr !important; /* 1 Spalte am Handy */
    }
}

/* Die Texte im Produkt positionieren */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.product-content {
    max-width: 500px;
    color: white;
}

.product-tag {
    color: #D37546; /* Orange-Ton aus deinem Bild */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
    font-weight: 300;
}

/* Responsive Anpassung für Handys */
@media screen and (max-width: 768px) {
    .product-content h2 {
        font-size: 2.5rem;
    }
    .product-overlay {
        padding: 30px;
    }
}

/* Der äußere Bereich (Hintergrundfarbe) */
.section-title-container {
    width: 100% !important;
    background-color: #F8F5F2 !important; /* Dein Creme-Ton */
    padding: 80px 0 !important;           /* Abstand nach oben/unten */
    display: block !important;
    clear: both !important;               /* Löst eventuelle "Floats" von oben auf */
}

/* Der innere Bereich (Zentrierung & Seitenabstand) */
.section-inner {
    max-width: 1200px !important;         /* Gleiche Breite wie deine Bilder/Produkte */
    margin: 0 auto !important;            /* ZENTRIERT den ganzen Block */
    padding: 0 5% !important;             /* Verhindert Kleben am Rand auf Handys */
    text-align: left !important;          /* Text bleibt innerhalb des Blocks linksbündig */
}

/* Die Schriften selbst */
.main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    margin: 0 !important;
    line-height: 1.1 !important;
    display: block !important;
}

.accent-text {
    display: inline-block !important; /* Verhindert, dass der kursive Text komisch umbricht */
}

/* Story */
.story-section { padding: 80px 10%; display: flex; align-items: center; gap: 50px; background: white; }
.story-container { display: flex; flex-wrap: wrap; gap: 40px; }
.story-text { flex: 1; min-width: 300px; }
.story-image { flex: 1; min-width: 300px; }
.story-image img { width: 100%; border-radius: 20px; }

/* Hintergrund der gesamten Sektion */
.features-section {
    background-color: #F8F5F2; /* Dein Creme-Ton */
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

/* Container für die Karten */
.features-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap; /* WICHTIG: Erlaubt Umbruch auf dem Handy */
}

/* Die einzelnen weißen Karten */
.feature-card {
    background: #ffffff;
    border-radius: 20px; /* Abgerundete Ecken wie im Bild */
    padding: 40px;
    flex: 1;
    min-width: 300px; /* Verhindert, dass sie zu schmal werden */
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sehr dezenter Schatten */
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Kleiner Animationseffekt beim Drüberfahren */
}

/* Die kleinen Icon-Boxen */
.icon-box {
    width: 60px;
    height: 60px;
    background-color: #FDF1ED; /* Ganz helles Orange/Rosa */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box img {
    width: 30px;
    height: auto;
}

/* Text-Styling innerhalb der Karten */
.feature-card h3 {
    font-family: 'Playfair Display', serif; /* Falls du eine Serif-Schrift nutzt */
    font-size: 24px;
    color: #333230;
    margin-bottom: 15px;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.supporters-section {
    background-color: #B2C0B4; /* Das sanfte Salbei-Grün aus dem Bild */
    padding: 100px 5%;
    text-align: center;
    color: #333230;
}

.supporters-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 20px 0;
}

.thank-you {
    color: #D37546; /* Dein Orange-Ton */
    font-weight: 700;
    letter-spacing: 2px;
}

/* Die "Wall" - Flexbox lässt die Pillen organisch anordnen */
.supporters-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 50px auto;
}

/* Gemeinsames Styling für alle Pillen */
.pill {
    padding: 12px 25px;
    border-radius: 50px; /* Macht die Kapsel-Form */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    display: inline-block;
}

/* Styling nur für den Link innerhalb der Pille */
.pill a {
    text-decoration: underline !important;
    text-underline-offset: 4px;      /* Schafft Platz zwischen Text und Linie */
    text-decoration-thickness: 1px;  /* Macht die Linie fein und elegant */
    text-decoration-color: rgba(0, 0, 0, 0.3); /* Macht die Linie dezent (leicht transparent) */
    color: inherit !important;
    transition: all 0.3s ease;
}

/* Effekt beim Drüberfahren (Linie wird deutlicher) */
.pill a:hover {
    text-decoration-color: currentColor; /* Linie wird so dunkel wie der Text */
    text-decoration-thickness: 2px;      /* Linie wird etwas dicker beim Hover */
}

/* Sicherstellen, dass die Pille selbst die richtige Farbe behält */
.founding { 
    background-color: #D6B79D !important; 
    color: #8A4B2D !important; 
} /* Terrakotta/Beige */

/* Die verschiedenen Farben aus deinem Screenshot */
.champion { background-color: #C5B5B5; color: #F8F5F2; } /* Altrosa/Grau */
.pioneer  { background-color: #F8F5F2; color: #7A7A7A; } /* Hell/Creme */

/* Footer-Link */
.supporters-footer a {
    color: #D37546;
    text-decoration: none;
    font-weight: 700;
}

/* Partners */
.partners { padding: 60px 10%; text-align: center; border-top: 1px solid #eee; }
.partner-logos { display: flex; justify-content: center; gap: 50px; opacity: 0.6; flex-wrap: wrap; margin-top: 30px; }
.partner-logos img { height: 40px; filter: grayscale(100%); }

/* Connect */
.connect { padding: 80px 10%; text-align: center; background-color: var(--bg-dark); color: white; }

/* Container für die Hero-Buttons nebeneinander */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center; /* Falls Hero zentriert ist */
    margin-top: 20px;
}

/* Der "Order Now" Button im Hero (Dezenter als der Haupt-Button) */
.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white !important;
}

.btn-secondary:hover {
    background-color: white;
    color: #333;
}

/* Der Bestell-Button direkt am Produkt */
.btn-order {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #D37546; /* Dein Orange */
    color: white;
    font-size: 0.8rem;
    border-radius: 5px; /* Etwas kantiger wirkt oft "kaufbarer" */
    display: inline-block;
}

.btn-order:hover {
    background-color: #b86238;
    transform: scale(1.05);
}

/* Mobil-Anpassung: Buttons untereinander, wenn der Platz knapp wird */
@media (max-width: 480px) {
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
	.hero h1 {
        font-size: 2rem !important;
    }
    .navbar {
        padding: 10px 0;
    }
    .hero-content {
        padding-top: 140px;
    }
}

@media (max-width: 600px) {
    /* Die Milestone-Texte brauchen Platz */
    .milestone-label { 
        white-space: normal !important; /* Erlaubt Zeilenumbruch */
        font-size: 0.65rem !important;
        width: 80px; /* Begrenzt die Breite pro Label */
        margin-left: -40px; /* Zentriert das Label unter dem Punkt */
    }

    /* Alternative: Wir stapeln sie leicht versetzt */
    .milestone-container {
        padding-bottom: 60px; /* Platz für die Texte schaffen */
    }
}


/* Footer */
footer { padding: 50px 10%; background: #1a1a1a; color: #888; text-align: center; }
.footer-links { margin: 20px 0; }
.footer-links a { color: #888; margin: 0 10px; text-decoration: none; }

.story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.story-text {
    flex: 1.2; /* Text bekommt etwas mehr Platz */
    min-width: 300px;
}

.story-image {
    flex: 0.8; /* Bild etwas schmaler daneben */
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Container für die Reward-Karte */
.reward-card {
    display: flex;
    flex-direction: column;
    padding: 15px !important; /* Etwas kompakteres Padding */
    overflow: hidden;
    height: 100%; /* Sorgt für gleich hohe Karten im Grid */
}

/* Der Bild-Container bricht nichts auf */
.reward-image-container {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden; /* Schneidet überstehende Bildkanten ab */
    line-height: 0;   /* Verhindert kleine Abstände unter dem Bild */
}

.reward-image-container img {
    width: 100%;      /* Bild füllt die Breite der Karte aus */
    height: 180px;    /* Feste Höhe für Ordnung, object-fit regelt den Rest */
    object-fit: cover; /* Bild wird perfekt eingepasst ohne Verzerrung */
    display: block;
}

/* Preis-Styling */
.reward-price {
    font-weight: 800;
    color: #C05E2E;
    margin-top: auto; /* Preis klebt immer unten, egal wie viel Text darüber steht */
    font-size: 1.1rem;
    padding-top: 10px;
}

.reward-card a {
    color: #D37546;
    text-decoration: none;
    font-weight: 700;
}

/* 1. Basis-Styling für alle Nav-Links */
.nav-links a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* Kein !important hier! */
    color: rgba(255, 255, 255, 0.9); 
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 2. Spezifisches Styling für den Sprachwähler-Container */
.lang-selector-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

/* 3. Inaktive Sprachen (etwas blasser) */
.lang-selector-nav a {
    color: rgba(255, 255, 255, 0.5) !important; /* Wichtig: Hier darf es nicht Orange sein */
    text-transform: uppercase;
}

/* 4. DIE AKTIVE SPRACHE - Jetzt mit höherer Priorität */
html body .lang-selector-nav a.active {
    color: #D37546 !important; /* Dein Orange */
    font-weight: 800 !important;
    opacity: 1 !important;
    border-bottom: 2px solid #D37546;
}

/* 5. Crowdfunding Titel Fix (damit er nicht verdeckt wird) */
.hero-crowdfunding .hero-content {
    padding-top: 160px; /* Mehr Platz für die Nav oben auf Mobile */
}

/* GEZIELTER MOBILE-FIX FÜR DIE NAVIGATION */
@media (max-width: 768px) {
    /* 1. Verhindert, dass die Nav-Links den Header-Inhalt (Titel) nach unten drücken */
    .navbar {
        flex-direction: column !important;
        position: absolute !important;
        top: 0 !important;
        padding: 15px 0 !important;
        gap: 10px !important;
    }

    /* 2. Macht die Abstände zwischen Home, Collection, Story etc. kleiner */
    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important; /* Viel kleinere Abstände */
        padding: 0 10px !important;
    }

    .nav-links li {
        margin: 0 !important; /* Entfernt eventuelle alte Abstände */
    }

    .nav-links a {
        font-size: 0.75rem !important; /* Schrift etwas kleiner, damit mehr nebeneinander passt */
        padding: 5px 2px !important;
    }

    /* 3. Sprachwähler kompakt halten */
    .lang-selector-nav {
        margin-left: 0 !important;
        margin-top: 5px !important;
        border-left: none !important; /* Sieht auf Mobile oft besser aus ohne Strich */
        gap: 12px !important;
    }

    /* 4. Den eigentlichen Titel (Crowdfunding) nach unten schieben, 
          damit er nicht UNTER der Navigation klebt */
    .hero-crowdfunding .hero-content {
        padding-top: 140px !important; /* Schafft Platz für die kompakte Nav */
    }
}

/* GEZIELTER FIX FÜR WHITE SPACE BEI REWARDS (MOBILE) */
@media (max-width: 768px) {
    /* 1. Die Karten-Höhe auf "Auto" setzen, damit sie nur so hoch sind wie ihr Inhalt */
    .product-card-item, 
    .feature-card.reward-card {
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 25px !important; /* Nur ein kleiner, sauberer Abschluss unten */
    }

    /* 2. Falls du das Overlay nutzt: Absolute Positionierung aufheben */
    .product-overlay {
        position: relative !important;
        padding: 20px !important;
        background: transparent !important; /* Verlauf entfernen, falls Text auf weißem Grund */
        color: var(--text-dark) !important; /* Text wieder dunkel machen */
    }

    /* 3. Das Gitter kompakter machen */
    .features-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .features-container {
        gap: 20px !important; /* Weniger Abstand zwischen den Karten */
    }

    /* 4. Die Bilder in den Karten skalieren */
    .reward-image-container {
        height: 200px !important; /* Feste, moderate Höhe für Mobile */
        margin-bottom: 15px !important;
    }
}
