/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* CI Farben */
    --primary: #1F4019;          /* Dunkelgrün (Main) */
    --primary-dark: #163012;     /* Dunkleres Grün für Effekte */
    --accent: #9FCF2D;           /* Lime (Secondary) */
    
    /* Text & Hintergründe */
    --text: #333;
    --text-light: #595959;       /* WCAG konform abgedunkelt */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --border: #dee2e6;
    
    /* Layout */
    --radius: 8px;
    --container: 1200px;
}

* { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding-top: 0; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--white);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* =========================================
   2. TOP BAR
   ========================================= */
.top-bar {
    background-color: #2b2b2b;
    color: #e0e0e0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar i { margin-right: 6px; color: #fff; }
.top-left span { margin-right: 20px; display: inline-flex; align-items: center; }
.top-right a { color: #e0e0e0; margin-left: 20px; font-weight: 500; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.5px; }
.top-right a:hover { color: var(--accent); }

/* =========================================
   3. MAIN HEADER (Dynamisch: Boxed -> Sticky)
   ========================================= */
.main-header {
    background: #1a1a1a;
    height: 80px;
    display: flex;
    align-items: center;
    
    /* STARTZUSTAND (Desktop): Boxed & Absolute */
    position: absolute;
    top: 40px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container); 
    
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    border-radius: 0 0 4px 4px;
}

/* SCROLL ZUSTAND (Desktop): Fixed & Fullwidth */
.main-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    max-width: 100%;
    border-radius: 0;
    height: 70px;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-container {
    width: 100%;
    padding: 0 2rem; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* LOGO */
.logo-wrapper { display: flex; align-items: center; text-decoration: none; height: 100%; }
.logo-wrapper img { max-height: 45px; width: auto; transition: max-height 0.3s; }
.main-header.scrolled .logo-wrapper img { max-height: 35px; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: var(--white); text-transform: uppercase; font-family: Impact, "Arial Black", sans-serif; letter-spacing: 1px; display: flex; align-items: center; }

/* NAVIGATION */
.nav-wrapper { height: 100%; display: flex; align-items: center; }
.nav-menu { display: flex; height: 100%; align-items: center; }
.nav-link {
    color: #ffffff; font-weight: 500; text-transform: uppercase; font-size: 0.85rem; padding: 0 18px;
    border-right: 1px solid rgba(255,255,255,0.1); height: 20px; 
    display: flex; align-items: center; line-height: 1; transition: color 0.3s;
}
.nav-link:hover { color: var(--accent); }
.nav-menu li:last-child .nav-link { border-right: none; }

/* WARENKORB & TOGGLE */
.header-cart { margin-left: 25px; position: relative; }
.cart-icon { color: #ffffff; font-size: 1.4rem; position: relative; display: flex; align-items: center; }
.cart-count {
    position: absolute; top: -8px; right: -10px; background: var(--accent); color: var(--primary); 
    font-size: 0.7rem; font-weight: bold; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Hamburger Icon (Desktop versteckt) */
.mobile-toggle { 
    display: none; 
    color: #ffffff; 
    font-size: 1.5rem; 
    cursor: pointer; 
    margin-left: 15px; 
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: none;
    border: none;
    padding: 5px;
}

/* =========================================
   4. GLOBAL BUTTONS
   ========================================= */
.btn, .btn-primary, .btn-outline, .card-btn, .btn-full, .btn-hero {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: var(--primary); color: #ffffff; border: none !important;          
    padding: 12px 30px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; text-decoration: none; line-height: 1.2; border-radius: 4px;
    cursor: pointer; transition: all 0.3s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn:hover, .btn-primary:hover, .btn-outline:hover, .card-btn:hover, .btn-full:hover, .btn-hero:hover {
    background-color: var(--accent); color: var(--primary); transform: translateY(-2px);     
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.btn-hero { padding: 15px 40px; font-size: 1.1rem; }
.card-btn { width: 100%; margin-top: 15px; padding: 10px 20px; font-size: 0.8rem; }

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    /* Großes Padding, da Header am Start "absolute" ist */
    padding-top: 160px; 
    padding-bottom: 4rem;
    min-height: 600px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center;
}
.hero-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%); z-index: 1;
}
.hero-box { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 600px; color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-headline { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin: 0 0 1.5rem; text-transform: uppercase; }
.hero-sub { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; font-weight: 300; }

/* =========================================
   6. CONTENT SECTIONS
   ========================================= */
main { background: var(--white); position: relative; z-index: 10; transition: background 0.3s; }

.intro-section { padding: 4rem 0; text-align: center; background: var(--bg-light); transition: background 0.3s; }

.intro-title { 
    font-size: 2.2rem; font-weight: 700; margin-bottom: 2rem; text-transform: uppercase; 
    color: var(--text); letter-spacing: 0.5px; position: relative; display: inline-block; 
}
.intro-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 10px auto 0; }

/* Intro Text Classes */
.intro-text { max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: var(--text-light); line-height: 1.8; }
.intro-headline { font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem); margin-bottom: 1.5rem; color: var(--text); line-height: 1.2; font-weight: 800; }
.intro-headline span.highlight-text { color: var(--primary); display: block; }
.intro-lead { font-size: 1.2rem; margin-bottom: 3rem; color: var(--text-light); }
.intro-block { margin-bottom: 2rem; }
.intro-text p { margin-bottom: 1.5rem; }

@media (min-width: 992px) {
    .intro-text.layout-2-cols { max-width: 1100px; column-count: 2; column-gap: 4rem; text-align: left; orphans: 3; widows: 3; }
    .intro-text.layout-2-cols h2, .intro-text.layout-2-cols h3 { break-after: avoid; margin-top: 0; }
}

.offers-section { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; color: var(--text); }
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

/* PREIS DARSTELLUNG */
.price-wrapper { font-weight: 700; font-size: 1.1rem; line-height: 1.2; display: inline-flex; align-items: baseline; }
.price-old { text-decoration: line-through; color: var(--text-light); font-size: 0.9rem; margin-right: 8px; font-weight: normal; }
.price-current { color: var(--primary); }

.product-card { background: var(--white); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border 0.3s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: transparent; }
.card-img-top { width: 100%; height: 220px; object-fit: cover; background: #f0f0f0; }
.card-body { padding: 1.5rem; text-align: center; flex: 1; display: flex; flex-direction: column; }
.card-title { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--text); }
.card-price { font-size: 1.2rem; color: var(--primary); font-weight: bold; margin: 10px 0; display: flex; justify-content: center; gap: 10px; align-items: center; margin-top: auto; }
.price-strike { text-decoration: line-through; color: #666; font-size: 0.9rem; font-weight: normal; }
.badge-offer { position: absolute; top: 10px; right: 10px; background: var(--accent); color: var(--primary); padding: 4px 10px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }

/* Kleine Zwischenüberschrift für Text-Elemente */
.sub-headline { margin: 0 0 10px; font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.2; }

/* =========================================
   7. FOOTER
   ========================================= */
.main-footer { margin-top: auto; background: #222; color: #999; padding: 3rem 0; text-align: center; border-top: 3px solid var(--accent); }
.footer-nav { display: flex; gap: 2rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-link { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; color: #ccc; }
.footer-link:hover { color: #fff; }

/* =========================================
   8. MOBILE RESPONSIVE (FIXED SCROLLING ISSUE)
   ========================================= */
@media (max-width: 992px) {
    /* Top Bar ausblenden */
    .top-bar { display: none; }
    
    /* === HEADER MOBILE (Die "Pille") === */
    /* Wir definieren hier Regeln für BEIDE Zustände (normal & scrolled) zusammen, 
       um sicherzugehen, dass Scrollen nichts verändert. */
    .main-header, 
    .main-header.scrolled {
        position: fixed !important;
        top: 15px !important; 
        right: 15px !important; 
        left: auto !important; /* Verhindert das Springen nach links */
        transform: none !important; /* Verhindert Zentrierungs-Versuche */
        
        /* Die Pille behalten */
        width: auto !important;
        min-width: 200px !important;
        max-width: calc(100vw - 30px) !important;
        height: 60px !important;
        
        background: #1a1a1a !important; 
        border-radius: 30px !important; /* Runde Ecken erzwingen */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
        
        transition: none !important; /* Keine Animationen beim Scrollen */
        overflow: visible !important;
        z-index: 1001;
    }
    
    .header-container { 
        padding: 0 20px; 
        justify-content: space-between; 
        height: 100%;
    }
    
    .logo-wrapper { margin-right: auto; }
    
    /* LOGO GRÖSSE FIXIEREN */
    /* Wir zwingen das Logo auch im .scrolled Zustand auf die gleiche Größe */
    .logo-wrapper img,
    .main-header.scrolled .logo-wrapper img { 
        max-height: 28px !important; 
        width: auto !important;
        transition: none !important;
    }
    
    .logo-text { font-size: 1.2rem; }
    
    /* HAMBURGER TOGGLE */
    .mobile-toggle { 
        display: block; 
        opacity: 1;
        pointer-events: auto;
        margin-left: 15px;
        font-size: 1.3rem;
        background: transparent;
        border: none;
        color: #fff;
        padding: 0;
        cursor: pointer;
    }
    
    /* === MENU DRAWER (DAS DROPDOWN) === */
    .nav-wrapper {
        position: fixed;
        top: 85px; /* Abstand zur Pille */
        right: 15px; 
        
        width: 280px; 
        max-width: calc(100vw - 30px);
        
        /* Scrollbar innerhalb des Menüs */
        max-height: calc(100vh - 100px); 
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; 
        
        background: #1a1a1a;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        z-index: 1000;
        
        padding: 10px 0;
        
        display: flex;
        flex-direction: column;
        height: auto; 

        /* ANIMATION */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .nav-menu li { width: 100%; display: block; }
    
    .nav-link { 
        width: 100%; 
        padding: 12px 20px; 
        border: none; 
        border-bottom: 1px solid rgba(255,255,255,0.08); 
        justify-content: flex-start; 
        font-size: 0.95rem;
        height: auto;
    }
    .nav-menu li:last-child .nav-link { border-bottom: none; }
    
    .header-cart { margin-left: auto; margin-right: 5px; }
    
    .hero-section { padding-top: 90px; min-height: 450px; }
    .hero-headline { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-content { text-align: center; }
    .footer-nav { flex-direction: column; gap: 1rem; }
}

/* =========================================
   9. PAGE SPECIFIC (CTA, Brands, Service, Contact)
   ========================================= */

/* CTA SECTION */
.cta-section { background-color: #222; color: #ffffff; padding: 4rem 1rem; text-align: center; margin-top: auto; }
.cta-section h3 { color: #ffffff; margin-bottom: 1rem; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cta-section p { color: #cccccc; margin-bottom: 2rem; font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background-color: #ffffff; color: var(--primary); border: 2px solid #ffffff; font-weight: 800; }
.cta-section .btn:hover { background-color: transparent; color: #ffffff; border-color: var(--accent); box-shadow: 0 0 15px rgba(159, 207, 45, 0.4); }
html.a11y-dark-mode .cta-section { background-color: #111; border-top: 1px solid #333; }

/* Marken Grid */
.page-zubehoer .brand-grid, .page-fahrraeder .brand-grid, .page-service .brand-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 576px) { .page-zubehoer .brand-grid, .page-fahrraeder .brand-grid, .page-service .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 992px) { .page-zubehoer .brand-grid, .page-fahrraeder .brand-grid, .page-service .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1200px) { .page-zubehoer .brand-grid, .page-fahrraeder .brand-grid, .page-service .brand-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-item { position: relative; height: 100%; }
.brand-item a { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; border-radius: 8px; }
.brand-logo-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; height: 160px; width: 100%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; position: relative; margin-bottom: 10px; }
.brand-logo-wrapper img { max-width: 90%; max-height: 90%; object-fit: contain; filter: grayscale(100%); transition: filter 0.3s; }
.brand-item a:hover .brand-logo-wrapper { border-color: var(--accent); box-shadow: 0 8px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
.brand-item a:hover .brand-logo-wrapper img { filter: grayscale(0%); }
.brand-title { text-align: center; margin-top: 5px; font-size: 1rem; font-weight: 600; color: var(--text); position: relative; height: 40px; width: 100%; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.brand-item a:hover .brand-title { color: transparent; }
.brand-item a:hover .brand-title::after { content: 'Herstellerseite besuchen'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background-color: var(--primary); color: #fff; padding: 8px 20px; border-radius: 4px; font-size: 0.85rem; white-space: nowrap; letter-spacing: 0.5px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.15); opacity: 0; animation: fadeInButton 0.3s forwards; }
.brand-item a:hover .brand-title:hover::after { background-color: var(--accent); color: var(--primary); }
@keyframes fadeInButton { from { opacity: 0; transform: translate(-50%, -40%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.no-logo { color: #666; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; }

/* Zubehör */
.page-zubehoer .category-grid { display: grid; grid-template-columns: 1fr; gap: 30px; text-align: center; }
@media (min-width: 768px) { .page-zubehoer .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .page-zubehoer .category-grid { grid-template-columns: repeat(3, 1fr); } }
.zubehoer-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem 1.5rem; height: 100%; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.zubehoer-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--accent); }
.zubehoer-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; width: 80px; height: 80px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s; }
.zubehoer-card:hover .zubehoer-icon { background: var(--primary); color: var(--accent); }
.zubehoer-card h3 { margin: 0 0 1rem; color: var(--text); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.zubehoer-card p { margin: 0; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Service */
.page-service .section-text { padding: 4rem 1rem; text-align: center; }
.page-service .section-gray { background-color: var(--bg-light); padding: 4rem 1rem; }
.page-service .section-white { background-color: var(--white); padding: 4rem 1rem; }
.page-service .intro-box { max-width: 800px; margin: 0 auto; }
.page-service .intro-box h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--text); }
.page-service .intro-box p { font-size: 1.1rem; line-height: 1.6; color: var(--text-light); }
.page-service .section-title { text-align: center; font-size: 1.8rem; margin-bottom: 3rem; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.page-service .section-title i { color: var(--primary); margin-right: 10px; }
.page-service .service-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 768px) { .page-service .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 992px) { .page-service .service-grid { grid-template-columns: repeat(3, 1fr); } }
.page-service .service-card { background: var(--white); padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 1rem; border-left: 4px solid transparent; transition: transform 0.2s, border-color 0.2s; }
.page-service .service-card:hover { transform: translateY(-3px); border-left-color: var(--accent); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.page-service .icon-wrapper { font-size: 1.5rem; color: var(--primary); min-width: 40px; text-align: center; }
.page-service .service-details h4 { margin: 0 0 0.5rem; color: var(--text); font-weight: 700; }
.page-service .service-details p { margin: 0; font-size: 0.95rem; color: var(--text-light); line-height: 1.4; }
.page-service .payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1.5rem; margin-top: 2rem; width: 100%; }
.page-service .payment-item { text-align: center; color: var(--text-light); padding: 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.page-service .payment-item i { display: block; font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--text); }
.page-service .payment-item span { font-size: 0.9rem; font-weight: 600; }

/* --- CONTACT PAGE (FIXED) --- */
/* Layout Grid Definition */
.page-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile Default */
    gap: 2rem;
}

/* Desktop: Side by Side */
@media (min-width: 992px) {
    .page-contact .contact-grid {
        grid-template-columns: 1fr 1.5fr; 
        gap: 4rem;
    }
}

/* Tablet: Info List split in 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .page-contact .info-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
    }
    .page-contact .contact-info-card > div:last-child {
        grid-column: 1 / -1;
        margin-top: 1rem;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Cards & Elements */
.page-contact .contact-info-card, 
.page-contact .contact-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.page-contact .info-list { margin-top: 2rem; }
.page-contact .info-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
.page-contact .info-item i { font-size: 1.2rem; color: var(--primary); width: 30px; margin-top: 4px; }
.page-contact .info-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.page-contact .info-item a:hover { color: var(--primary); }

.page-contact .form-group { margin-bottom: 1rem; }
.page-contact .form-control { 
    width: 100%; padding: 10px; 
    border: 1px solid var(--border); 
    border-radius: 4px; 
    font-family: inherit; font-size: 1rem; 
    box-sizing: border-box; 
    background: var(--white); 
    color: var(--text); 
}
.page-contact .form-control:focus { border-color: var(--primary); outline: none; }
.page-contact label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text); }

.page-contact .checkbox-container { display: flex; align-items: flex-start; cursor: pointer; font-size: 0.9rem; color: var(--text-light); }
.page-contact .checkbox-container input { display: none; }
.page-contact .checkmark { min-width: 20px; height: 20px; background-color: #eee; border-radius: 4px; margin-right: 10px; position: relative; margin-top: 2px; }
.page-contact .checkbox-container input:checked ~ .checkmark { background-color: var(--primary); }
.page-contact .checkmark:after { content: ""; position: absolute; display: none; left: 7px; top: 3px; width: 6px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.page-contact .checkbox-container input:checked ~ .checkmark:after { display: block; }

.page-contact .btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; padding: 10px 20px; border-radius: 4px; text-decoration: none; display: inline-block; font-weight: bold; transition: all 0.3s; }
.page-contact .btn-outline:hover { background: var(--primary); color: #fff; }
.page-contact .btn-primary { background-color: var(--primary); color: #fff; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; transition: background 0.3s; }
.page-contact .btn-primary:hover { background-color: var(--primary-dark); }

/* --- A11Y STYLES --- */
.a11y-btn { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background-color: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3); cursor: pointer; z-index: 9999; transition: transform 0.3s, background 0.3s; border: 2px solid var(--accent); }
.a11y-btn:hover { transform: scale(1.1); background-color: var(--accent); color: var(--primary); }
.a11y-menu { position: fixed; bottom: 85px; right: 20px; width: 320px; background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); padding: 1.5rem; z-index: 9998; display: none; opacity: 0; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; }
.a11y-menu.active { display: block; opacity: 1; transform: translateY(0); }
.a11y-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.a11y-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.a11y-close { cursor: pointer; font-size: 1.2rem; color: #666; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.a11y-option { background: #f8f9fa; border: 1px solid #eee; border-radius: 4px; padding: 10px; text-align: center; cursor: pointer; transition: all 0.2s; font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 5px; color: #333; }
.a11y-option:hover { background: #e9ecef; }
.a11y-option.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.a11y-option i { font-size: 1.2rem; margin-bottom: 2px; }
html.a11y-font-big { font-size: 120% !important; }
html.a11y-cursor-big, html.a11y-cursor-big * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' stroke='%23ffffff' stroke-width='1.5' d='M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 4.6z'/%3E%3C/svg%3E"), auto !important; }
html.a11y-contrast { filter: contrast(135%) brightness(105%); }
html.a11y-grayscale { filter: grayscale(100%); }
html.a11y-links-underline a { text-decoration: underline !important; text-decoration-thickness: 2px !important; }
html.a11y-readable-font body, html.a11y-readable-font h1, html.a11y-readable-font h2, html.a11y-readable-font h3, html.a11y-readable-font p, html.a11y-readable-font a { font-family: Arial, Helvetica, sans-serif !important; letter-spacing: 0.05em !important; line-height: 1.8 !important; }
html.a11y-hide-images img { opacity: 0 !important; visibility: hidden !important; }
html.a11y-hide-images .hero-section, html.a11y-hide-images .hero-slide, html.a11y-hide-images .card-image { background-image: none !important; background-color: #333 !important; }
html.a11y-hide-images .card-img-top { background-color: #eee !important; background-image: none !important; }
html.a11y-no-animations *, html.a11y-no-animations *::before, html.a11y-no-animations *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
.a11y-blue-filter-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(255, 165, 0, 0.25); pointer-events: none; z-index: 2147483647; mix-blend-mode: multiply; display: none; }
html.a11y-blue-filter .a11y-blue-filter-overlay { display: block; }
:root.a11y-dark-mode { --bg-light: #1a1a1a; --white: #222222; --text: #ffffff; --text-light: #dddddd; --dark-bg: #000000; --border: #444444; }
html.a11y-dark-mode main h1, html.a11y-dark-mode main h2, html.a11y-dark-mode main h3, html.a11y-dark-mode main h4, html.a11y-dark-mode main h5, html.a11y-dark-mode main h6, html.a11y-dark-mode footer h1, html.a11y-dark-mode footer h2, html.a11y-dark-mode footer h3, html.a11y-dark-mode .section-title, html.a11y-dark-mode .brand-title, html.a11y-dark-mode .intro-headline { color: #ffffff !important; }
html.a11y-dark-mode .brand-logo-wrapper, html.a11y-dark-mode .product-card, html.a11y-dark-mode .zubehoer-card, html.a11y-dark-mode .contact-info-card, html.a11y-dark-mode .contact-form-card { background-color: #2b2b2b !important; border-color: #444 !important; }
html.a11y-dark-mode .brand-logo-wrapper img { filter: grayscale(100%) invert(1); }
html.a11y-dark-mode .brand-item a:hover .brand-logo-wrapper img { filter: none; }
html.a11y-dark-mode .form-control { background-color: #333; color: #fff; border-color: #555; }
html.a11y-dark-mode .highlight-text {color: #fff;}