:root {
            --primary-color: #5d3fd3; /* Tieferes Violett */
            --secondary-color: #00e5e5; /* Türkis */
            --background-dark: #1a0f3d;
            --text-light: #f0f0f0;
            --text-dark: #1a0f3d;
            --accent-glow: 0 0 15px var(--secondary-color), 0 0 30px var(--secondary-color);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-weight: bold;
            color: var(--secondary-color);
            text-shadow: var(--accent-glow);
        }

        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; margin-bottom: 1rem; }
        h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 15, 61, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--secondary-color);
            text-shadow: var(--accent-glow);
        }

        nav a {
            color: var(--text-light);
            text-decoration: none;
            margin-left: 25px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--secondary-color);
            text-shadow: var(--accent-glow);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
        }

        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--text-light);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger-menu.active span:nth-child(2) { opacity: 0; }
        .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .nav-links {
            display: flex;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 15, 61, 0.95);
                text-align: center;
                box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
                padding: 1rem 0;
                transform: translateY(-20px);
                opacity: 0;
                pointer-events: none;
            }
            .nav-links.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links a {
                margin: 10px 0;
                font-size: 1.2rem;
            }
            .burger-menu { display: flex; }
        }

        /* --- Sections & Components --- */
        section {
            padding: 100px 0;
            position: relative;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('../img/04.webp') no-repeat center center/cover;
            position: relative;
            animation: fadeIn 2s ease-in-out;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-dark);
            padding: 15px 30px;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px var(--secondary-color);
        }

        .cta-button:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
            transform: scale(1.05);
            box-shadow: var(--accent-glow);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--background-dark);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-image {
            flex: 1;
            animation: slideInLeft 1s ease-out;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 229, 229, 0.3);
        }

        .about-text {
            flex: 2;
            animation: slideInRight 1s ease-out;
        }

        .about-text h2 { margin-bottom: 1.5rem; }

        @media (max-width: 900px) {
            .about-content { flex-direction: column; }
            .about-image, .about-text { flex: none; }
        }

        .product-card, .price-card {
            background: rgba(25, 20, 60, 0.6);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 0 10px var(--secondary-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover, .price-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--accent-glow);
        }
        .product-card img, .price-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .products-grid, .prices-grid, .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: var(--accent-glow);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem;
            border-radius: 10px;
            background: rgba(25, 20, 60, 0.6);
            border: 1px solid var(--secondary-color);
        }

        .feedback-item {
            display: none;
            padding: 20px;
            text-align: center;
            min-height: 200px;
        }

        .feedback-item.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }

        .feedback-item p {
            font-style: italic;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .feedback-author {
            font-weight: bold;
            color: var(--secondary-color);
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-control-btn {
            background: rgba(0, 0, 0, 0.5);
            color: var(--text-light);
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
        }
        .slider-control-btn:hover { background: var(--secondary-color); color: var(--background-dark); }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(229, 0, 229, 0.2);
            padding-bottom: 1rem;
        }

        .faq-question {
            cursor: pointer;
            padding: 1rem;
            background: rgba(25, 20, 60, 0.6);
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background 0.3s;
        }
        .faq-question:hover { background: rgba(0, 229, 229, 0.2); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
            padding-left: 1rem;
        }
        .faq-question + .faq-answer.active {
            max-height: 200px;
            padding-top: 1rem;
        }

        .disclaimer {
            background-color: #0f0a22;
            text-align: center;
            padding: 20px;
            font-size: 0.8rem;
            color: #ccc;
            border-top: 1px solid rgba(229, 0, 229, 0.2);
        }

        .contact-form-container {
            max-width: 600px;
            margin: 2rem auto;
            background: rgba(25, 20, 60, 0.6);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--secondary-color);
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 1rem;
            border-radius: 5px;
            border: 1px solid var(--secondary-color);
            background: rgba(0, 0, 0, 0.3);
            color: var(--text-light);
        }
        .contact-form button {
            width: 100%;
            padding: 15px;
            background-color: var(--secondary-color);
            color: var(--text-dark);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .contact-form button:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
            box-shadow: var(--accent-glow);
        }

        /* --- Footer --- */
        footer {
            background-color: #0f0a22;
            color: var(--text-light);
            padding: 40px 0;
            border-top: 2px solid var(--primary-color);
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: left;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-shadow: var(--accent-glow);
            margin-bottom: 20px;
        }
        .footer-links, .footer-contact {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }
        .footer-links a {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        .footer-contact p {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .footer-content { flex-direction: column; text-align: center; }
            .footer-links, .footer-contact { margin: 10px 0; }
        }

        /* --- Popups --- */
        .popup {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
        }
        .popup-content {
            background-color: var(--background-dark);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--secondary-color);
            box-shadow: 0 0 20px var(--secondary-color);
            position: relative;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--secondary-color);
        }

        /* --- Cookie Banner --- */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 15, 61, 0.95);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            z-index: 1001;
            animation: slideInUp 0.8s ease-out;
        }
        .cookie-text p {
            margin-bottom: 5px;
        }
        .cookie-text a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .cookie-text a:hover {
            text-decoration: underline;
        }
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        .cookie-button {
            padding: 8px 15px;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .accept-cookies {
            background-color: var(--secondary-color);
            color: var(--text-dark);
        }
        .accept-cookies:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
            box-shadow: var(--accent-glow);
        }
        .decline-cookies {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--secondary-color);
        }
        .decline-cookies:hover {
            background-color: var(--secondary-color);
            color: var(--text-dark);
        }

        @media (max-width: 600px) {
            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }
            .cookie-buttons {
                margin-top: 10px;
                width: 100%;
                justify-content: center;
            }
        }
        
        /* --- Animations --- */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideInUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

