        :root {
            --bg: #FFFFFF;
            --card-bg: #FFFFFF;
            --section-bg: #F5F5F5;
            --primary: #2C2C2C;
            --accent: #E53935;
            --text: #2C2C2C;
            --text-light: #757575;
            --border: #E0E0E0;
            --white: #FFFFFF;
            --transition: 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }

        ::selection { background: var(--accent); color: var(--white); }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f0f0f0; }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

        /* ========== Nav ========== */
        .top-nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 14px 32px;
            background: var(--white);
            z-index: 999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: box-shadow 0.3s ease;
        }

        .top-nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

        .nav-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        .nav-logo span { color: var(--accent); }

        .nav-links { display: flex; gap: 24px; align-items: center; }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--accent); }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }
        .nav-phone:hover { text-decoration: underline; }

        .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
        .hamburger span { width: 24px; height: 2px; background: var(--primary); display: block; transition: var(--transition); }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ========== Hero ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 20px 80px;
            background: var(--section-bg);
            position: relative;
        }

        .hero-content { max-width: 700px; }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(36px, 8vw, 64px);
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        .hero h1 span { color: var(--accent); }

        .hero-tagline {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 8px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .hero-slogan {
            font-size: 22px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 32px;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 36px;
            background: var(--accent);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
        }
        .hero-cta:hover { background: #c62828; transform: scale(1.02); box-shadow: 0 4px 15px rgba(229,57,53,0.3); }

        /* ========== Sections ========== */
        .section { padding: 80px 20px; }
        .section-alt { background: var(--section-bg); }
        .container { max-width: 1100px; margin: 0 auto; }

        .section-title {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .section-title p { color: var(--text-light); font-size: 16px; }

        /* ========== Sortiment Cards ========== */
        .sortiment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
        }

        .sortiment-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
        }
        .sortiment-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-3px); }
        .sortiment-card .icon { font-size: 48px; display: block; margin-bottom: 16px; }
        .sortiment-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
        .sortiment-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

        /* ========== Öffnungszeiten ========== */
        .hours-table { max-width: 500px; margin: 0 auto; }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            font-size: 15px;
        }
        .hours-row:last-child { border-bottom: none; }
        .hours-row .day { font-weight: 500; }
        .hours-row .time { color: var(--text-light); }
        .hours-row.closed .time { color: var(--accent); font-weight: 600; }
        .hours-row.closed { background: rgba(229,57,53,0.04); }

        .hours-status {
            text-align: center;
            margin-bottom: 24px;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
        }
        .hours-status.open { background: rgba(76,175,80,0.08); color: #2E7D32; }
        .hours-status.closed { background: rgba(229,57,53,0.08); color: var(--accent); }

        .hours-hint { text-align: center; color: var(--text-light); font-size: 14px; margin-top: 16px; }

        /* ========== Lotto ========== */
        .lotto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .lotto-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            transition: var(--transition);
        }
        .lotto-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.05); transform: translateY(-2px); }
        .lotto-card .icon { font-size: 32px; display: block; margin-bottom: 8px; }
        .lotto-card h4 { font-size: 13px; font-weight: 500; color: var(--text); }

        .lotto-cta { text-align: center; }

        /* ========== Kontakt ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .contact-info p {
            font-size: 15px;
            margin-bottom: 12px;
            color: var(--text-light);
        }
        .contact-info strong { color: var(--text); }
        .contact-info .address { font-size: 18px; color: var(--text); margin-bottom: 4px; font-weight: 500; }

        .contact-map {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .contact-map iframe { width: 100%; height: 300px; border: none; display: block; }

        /* ========== Buttons ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        .btn-primary { background: var(--accent); color: var(--white); }
        .btn-primary:hover { background: #c62828; transform: scale(1.02); }
        .btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
        .btn-outline:hover { background: var(--accent); color: var(--white); }

        /* ========== Footer ========== */
        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 13px;
        }
        footer a { color: var(--text-light); text-decoration: none; }
        footer a:hover { color: var(--accent); }

        /* ========== Animations ========== */
        .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ========== Mobile ========== */
        @media (max-width: 768px) {
            .top-nav { padding: 12px 16px; }
            .nav-links {
                display: none;
                position: fixed;
                top: 56px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            }
            .nav-links.open { display: flex; }
            .hamburger { display: flex; }
            .hero { padding: 120px 16px 60px; }
            .hero h1 { font-size: 32px; }
            .hero-slogan { font-size: 18px; }
            .hero-cta { width: 100%; justify-content: center; font-size: 16px; }
            .section { padding: 50px 16px; }
            .section-title h2 { font-size: 24px; }
            .sortiment-grid { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .hours-row { font-size: 14px; padding: 10px 12px; }
            .lotto-grid { grid-template-columns: repeat(3, 1fr); }
        }

/* Reduced Motion (R2-2) */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .fade-in { opacity: 1 !important; transform: none !important; }
    .hero-cta:hover, .sortiment-card:hover, .lotto-card:hover, .btn:hover { transform: none !important; }
    html { scroll-behavior: auto; }
}
