        :root {
            --gold: #b59451;
            --dark: #2c2c2c;
            --light-bg: #fdfdfd;
            --border: #e9e9e9;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark);
            padding-bottom: 100px; /* Platz für Sticky Footer */
        }

        h1, h2, legend { font-family: 'Playfair Display', serif; }

        .main-card {
            background: white;
            border-radius: 15px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 40px;
            margin-top: 50px;
        }

        .config-section {
            background: #ffffff;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border);
            margin-bottom: 30px;
        }

        /* Paket Karten */
        .option-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .option-card:hover { border-color: var(--gold); transform: translateY(-3px); }
        .option-card.active { 
            border: 2px solid var(--gold); 
            background: #fffcf5; 
            box-shadow: 0 5px 15px rgba(181, 148, 81, 0.1);
        }
        
        .option-card input { display: none; }
        
        .price-tag {
            font-size: 1.4rem;
            color: var(--gold);
            font-weight: 700;
            margin-top: 10px;
        }

        /* Slider */
        .custom-range::-webkit-slider-thumb { background: var(--gold); }
        .slider-disabled { opacity: 0.3; pointer-events: none; }

        /* Sticky Footer */
        .sticky-price-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 2px solid var(--gold);
            padding: 15px 0;
            z-index: 1050;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
        }

        .total-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold);
        }

        .btn-send {
            background-color: var(--gold);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-send:hover { background-color: #967a42; transform: scale(1.05); }

        .form-label { font-weight: 600; font-size: 0.9rem; color: #555; }
		.navbar {
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Goldener Unterstrich Effekt bei Hover */
@media (min-width: 992px) {
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 5px;
        left: 15%;
        background-color: var(--gold);
        transition: width 0.3s;
    }
    .nav-link:hover::after {
        width: 70%;
    }
}

.text-gold { color: var(--gold) !important; }
.addon-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.addon-card:hover { border-color: var(--gold); }
.addon-card.active { background: #fffcf5; border-color: var(--gold); }
.addon-card input { margin-right: 10px; accent-color: var(--gold); }
.addon-price { color: var(--gold); font-weight: 600; }