  :root {
            --brand-primary: #68AB03;
            --brand-secondary: #DFC184;
            --brand-accent: #70A91E;
        }
        
        /* Header Styles */
        .navbar {
            border-bottom: 3px solid var(--brand-primary);
        }
        .navbar-brand img {
            max-height: 60px;
            width: auto;
        }
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--brand-primary) !important;
        }
        .navbar-toggler {
            border-color: var(--brand-primary);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(104, 171, 3, 0.25);
        }
        
        /* Brand Colors */
        .btn-primary { background-color: var(--brand-primary); border-color: var(--brand-primary); }
        .btn-primary:hover { background-color: #5a9402; border-color: #5a9402; }
        .text-primary { color: var(--brand-primary) !important; }
        .border-primary { border-color: var(--brand-primary) !important; }
        .bg-brand { background-color: var(--brand-secondary); }
        
		 .content-area {
            min-height: calc(100vh ); /* Höhe bis zum Main-Bereich */
        }

        /* Sidebar Styles - Linksbündig und scrollend */
        .sidebar {
            position: static !important;
            height: auto !important;
        }
        
        .sidebar-nav {
            text-align: left;
            position: static !important;
        }
        
        .sidebar-nav .nav-link {
            color: #333;
            border-bottom: 1px dotted #000;
            padding: 10px 0px 10px 3px;
            font-size: 14px;
            transition: background-color 0.3s ease;
            text-align: left;
            width: 100%;
            display: block;
        }
        
        .sidebar-nav .nav-link:hover { 
            background-color: var(--brand-secondary);
            text-decoration: none;
        }
        
        .sidebar-section-title {
            background-color: transparent;
            border-bottom: 4px solid var(--brand-primary);
            font-size: 14px;
            font-weight: bold;
            margin-left: 0;
            margin-bottom: 10px;
            padding-left: 0;
            width: 100%;
            text-align: left;
        }
        
        .sidebar-section {
            margin-bottom: 2rem;
        }
        
        .sidebar-nav .nav {
            padding-left: 0;
        }
        
        .sidebar-nav .nav-item {
            margin-bottom: 0;
        }
        
        /* Sidebar Search Styles */
        .sidebar-section .input-group {
            border-radius: 0.375rem;
        }
        
        .sidebar-section .form-control {
            border-color: #ddd;
            font-size: 13px !important;
        }
        
        .sidebar-section .form-control:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 0.2rem rgba(104, 171, 3, 0.25);
        }
        
        .sidebar-section .btn-outline-primary:hover {
            background-color: var(--brand-primary);
            border-color: var(--brand-primary);
            color: white;
        }
        
        /* Active Navigation States */
        .nav-link.active {
            background-color: var(--brand-primary) !important;
            color: white !important;
            font-weight: bold;
        }
        
        .navbar-nav .nav-link.active {
            font-weight: bold !important;
        }
        
        .navbar-nav .nav-item.active .small {
            border-bottom-color: var(--brand-primary) !important;
            color: var(--brand-primary) !important;
        }
        
        .sidebar-nav .nav-link.active {
            background-color: var(--brand-primary) !important;
            color: white !important;
            padding-left: 10px !important;
        }
        
        /* Footer Styles */
        footer {
            background-color: #f8f9fa !important;
            border-top: 1px solid var(--brand-primary) !important;
            border-bottom: 3px solid var(--brand-primary) !important;
        }
        
        footer a {
            color: #6c757d;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--brand-primary);
        }
        
        footer img {
            transition: transform 0.3s ease;
        }
        
        footer img:hover {
            transform: scale(1.05);
        }
        
        footer .gap-3 {
            gap: 1rem !important;
        }
        
        /* Offcanvas Styles */
        .offcanvas-header {
            border-bottom: 3px solid var(--brand-primary);
        }
        
        .offcanvas-body .sidebar-nav .sidebar-section-title {
            font-size: 16px;
            color: var(--brand-primary);
            border-bottom: 2px solid var(--brand-primary);
            margin-bottom: 15px;
            padding-bottom: 5px;
        }
        
        .offcanvas-body .sidebar-nav .nav-link {
            padding: 8px 0;
            border-bottom: 1px dotted #ccc;
            margin-bottom: 5px;
        }
        
        .offcanvas-body .sidebar-nav .nav-link:hover {
            background-color: var(--brand-secondary);
            padding-left: 10px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Fixed Header */
        @media (max-width: 991.98px) {
            .navbar {
                position: fixed !important;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1030;
                width: 100%;
            }
            
            body {
                padding-top: 70px; /* Platz für den festen Header */
            }
            
            .navbar-nav .nav-item {
                margin: 0.5rem 0;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-nav .nav-item {
                margin-left: 1rem;
            }
        }

/* Mobile Styles für Produkt-Features */
@media (max-width: 1199px) {
    .product-features .list-group-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem;
    }

    .product-features .list-group-item span:first-child {
        font-weight: bold;
        margin-bottom: 0.25rem;
    }

    .product-features .list-group-item span:last-child {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-features .list-group-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem;
    }

    .product-features .list-group-item span:first-child {
        font-weight: bold;
        margin-bottom: 0.25rem;
    }

    .product-features .list-group-item span:last-child {
        text-align: left;
        width: 100%;
    }
}

      .yt-wrap{position:relative; padding-bottom:65.25%; height:0; overflow:hidden; border-radius:12px; background:#000;}
      .yt-thumb, .yt-wrap iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; border:0;}
      .yt-consent{
        position:absolute; inset:auto 0 0 0; display:flex; gap:.5rem; align-items:center;
        justify-content:center; padding:1rem; background:rgba(0,0,0,.6); color:#fff; font:14px/1.4 system-ui;
      }
      .yt-btn{background:#fff; color:#000; border:0; padding:.5rem .8rem; border-radius:.5rem; cursor:pointer;}
