        :root {
            --primary: #1a0a0f;            /* tief dunkler Rotton für Header/Footer */
            --primary-light: #2e0d14;      /* leicht hellerer Rotton für Panels */
            --accent: #e2161d;             /* kräftiges Rot für Buttons und Highlights */
            --accent-hover: #b51419;       /* dunkleres Rot bei Hover */
            --bg-body: #f8fafc;            /* Körperhintergrund (hell) bleibt unverändert */
            --bg-card: #ffffff;            /* Kartenhintergrund bleibt reinweiß */
            --text-main: #1a0a0f;          /* dunkler Rotton für Standardtext */
            --text-muted: #5e3c40;         /* abgeschwächter Rotton für sekundären Text */
            --border: #e2e8f0;             /* dezente graue Linie bleibt bestehen */
            --success: #5fd38d;            /* neutraler Grünton für Erfolgsnachrichten */
            --radius: 8px;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: Helvetica, Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { color: var(--accent); text-decoration: none; cursor: pointer; }
        a:hover { text-decoration: underline; }
        ul { list-style: none; }
        
        .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
        .grid { display: grid; gap: 20px; }
        .grid-cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .flex { display: flex; }
        .items-center { align-items: center; }
		
       .items-center > h1, .items-center > a {
  color: #fff;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.95),
    0 0 4px rgba(0, 0, 0, 0.9),
    0 0 8px rgba(0, 0, 0, 0.75),
    0 0 14px rgba(0, 0, 0, 0.55);
}
		
		
		
        .justify-between { justify-content: space-between; }
        .gap-4 { gap: 1rem; }
        .gap-2 { gap: 0.5rem; }
        
        h1, h2, h3 { color: var(--primary); margin-bottom: 1rem; }
        h1 { font-size: 2rem; font-weight: 700; }
        .text-muted { color: var(--text-muted); font-size: 0.9rem; }
        .text-accent { color: var(--accent); font-weight: bold; }
        .text-center { text-align: center; }
        
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: var(--radius); border: none; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none !important; }
        .btn-primary { background: var(--accent); color: white; }
        .btn-primary:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); }
        .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: white; }
        .btn-small { padding: 5px 10px; font-size: 0.85rem; }
        
        .card { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; border: 1px solid var(--border); }
        
        input, select, textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; margin-bottom: 1rem; font-family: inherit; }
        input:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1); }
        label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
        
        header { background: white; color: black; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
        .logo { font-size: 1.5rem; font-weight: 800; color: white !important; display: flex; align-items: center; gap: 10px; }
        .logo span { color: var(--accent); }
        .nav-actions { display: flex; gap: 20px; align-items: center; }
        .nav-btn { color: black; display: flex; align-items: center; gap: 5px; cursor: pointer; position: relative; }
        .nav-btn:hover { color: var(--accent); text-decoration: none; }
        .badge { background: var(--accent); color: white; font-size: 0.75rem; padding: 2px 6px; border-radius: 20px; position: absolute; top: -8px; right: -12px; font-weight: bold; }
        
        .vehicle-search-widget { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 20px 0; }
        .hsn-tsn-box { display: flex; gap: 10px; align-items: flex-end; }
        .hsn-tsn-box > div { flex: 1; }
        .hsn-tsn-box input { margin-bottom: 0; }
        .active-vehicle {
            /* Rote Akzentuierung für ausgewählte Fahrzeuge */
            background: rgba(226,22,29,0.10);
            border: 1px solid rgba(226,22,29,0.25);
            color: var(--accent);
            padding: 10px 15px;
            border-radius: var(--radius);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        
        .product-card { display: flex; flex-direction: column; height: 100%; transition: transform 0.2s; }
        .product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
        .product-img-ph {
            height: 200px;
            /* Leichter roter Schimmer als Platzhalter-Hintergrund */
            background: rgba(226,22,29,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            border-radius: var(--radius) var(--radius) 0 0;
            margin: -20px -20px 20px -20px;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }
        .product-brand { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: bold; }
        .product-title { font-size: 1.1rem; margin: 10px 0; flex-grow: 1; }
        .product-price {
            font-size: 1.4rem;
            font-weight: bold;
            /* Preise werden in der Akzentfarbe hervorgehoben */
            color: var(--accent);
            margin-bottom: 15px;
        }
        .price-locked {
            /* Dezente rote Fläche für Preisnotizen */
            background: rgba(226,22,29,0.05);
            padding: 10px;
            border-radius: var(--radius);
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
            border: 1px dashed var(--border);
            margin-bottom: 15px;
        }
        
        table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
        th, td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); }
        th { background: #f8fafc; font-weight: 600; color: var(--primary); }
        tr:hover { background: #f1f5f9; }
        
        .notice-box {
            /* Hinweisboxen erhalten eine sanfte rote Nuance */
            background: rgba(226,22,29,0.05);
            border-left: 4px solid var(--accent);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            color: var(--text-main);
        }
        
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(2px); }
        .modal-content { background: white; padding: 30px; border-radius: var(--radius); width: 100%; max-width: 500px; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
        .hidden { display: none !important; }

        footer { background: #ddd; color: black; padding: 40px 0 20px 0; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: black; margin-bottom: 20px; font-size: 1.2rem; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col a {
            color: var(--text-muted);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid var(--primary-light);
            padding-top: 20px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .text-right { text-align: right; }
        .mt-4 { margin-top: 1rem; }
        .mb-4 { margin-bottom: 1rem; }
		
.glass {
  background: rgba(0, 0, 0, 0.3); /* halbtransparent */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(55, 0, 0, 0.9);
  border-radius: 16px;
  
}

.glass h3,.glass label {
	color: wheat;
}

.demo-badge {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 9999;

  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.96);

  text-shadow:
    0 0 3px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.75),
    0 0 34px rgba(255, 255, 255, 0.45),
    3px 3px 12px rgba(0, 0, 0, 0.22);
}