@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Inter:wght@400;700&display=swap');

:root {
    --neon: #c3ff00;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text: #ffffff;
}

body {
    background: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 30px;
}

/* 3 Produkte nebeneinander */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.image-container {
    width: 100%;
    height: 250px;
    background: #000;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.full-width-input {
    width: 100% !important;
    display: block;
    box-sizing: border-box;
    margin-top: 10px;
}

textarea.full-width-input {
    min-height: 100px;
    resize: vertical;
}

.btn { padding: 15px; border-radius: 12px; font-weight: bold; cursor: pointer; text-transform: uppercase; border:none; transition: 0.2s; text-align: center; text-decoration: none;}
.btn-primary { background: var(--neon); color: #000; width: 100%; }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; }

.container input[type="text"], 
.container input[type="password"] {
    width: 100%;
    background: #000;
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--neon);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.qty-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.qty-btn {
    background: #222;
    color: var(--neon);
    border: none;
    cursor: pointer;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

/* --- MOBILE OPTIMIERUNG --- */
@media screen and (max-width: 768px) {
    .container {
        width: 95% !important;
        margin: 10px auto !important;
        padding: 15px !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    div[style*="display:flex; justify-content:space-between"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .cart-dropdown {
        position: fixed !important;
        top: 2% !important;
        left: 5% !important;
        width: 90% !important;
        max-height: 90% !important;
        background: #111 !important;
        border: 2px solid var(--neon) !important;
        border-radius: 20px !important;
        z-index: 99999 !important;
    }

    .chat-window {
        height: 50vh !important;
    }

    .btn {
        width: 100% !important;
        height: 50px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* --- FAQ FINAL LOOK (Basierend auf deinem Bild) --- */

/* Container für alle FAQ-Einträge */
.faq-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important; /* Etwas mehr Platz zwischen den Karten */
    width: 100% !important;
    max-width: 1000px !important; /* Verhindert, dass es auf Desktop zu breit wird */
    margin: 20px auto !important;
}

/* Die einzelne FAQ-Karte (details) */
.faq-card {
    width: 100% !important;
    background: #333333 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Dezenter Rahmen für mehr Tiefe */
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* Der klickbare Header (summary) */
.faq-header {
    padding: 20px 25px !important;
    cursor: pointer !important;
    list-style: none !important; 
    font-weight: bold !important;
    font-size: 1.2rem !important; /* Etwas moderner skaliert */
    color: #ffffff !important;
    background: #333333 !important;
    
    /* FIX FÜR TEXT-ABSCHNEIDEN: */
    display: block !important; 
    white-space: normal !important; /* Erlaubt Zeilenumbruch */
    word-wrap: break-word !important; /* Bricht lange Wörter */
    overflow-wrap: break-word !important;
    line-height: 1.4 !important;
    height: auto !important;
}

/* Entfernt die Standard-Browser-Pfeile */
.faq-header::-webkit-details-marker,
.faq-header::marker {
    display: none !important;
    content: "" !important;
}

/* Der Bereich mit der Antwort */
.faq-body {
    padding: 0 25px 25px 25px !important;
    color: #cccccc !important; /* Leicht helleres Grau für bessere Lesbarkeit der Antwort */
    background: #333333 !important;
    line-height: 1.6 !important;
    font-size: 1.1rem !important;
    
    /* FIX FÜR TEXT-ABSCHNEIDEN: */
    white-space: normal !important;
    word-wrap: break-word !important;
    height: auto !important;
    display: block !important;
}

/* Hover-Effekt für die ganze Karte */
.faq-header:hover {
    background: #3d3d3d !important;
}

/* Optional: Fokus-Zustand für Barrierefreiheit */
.faq-card:focus-within {
    outline: 2px solid #007bff !important; /* Oder deine Markenfarbe */
    outline-offset: 2px;
}