/* Overlay */
.burger-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: #000;
    color: #fff;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 9999;
    font-family: "Open Sans", sans-serif;
    padding-top: 40px;
}

/* Aktiv */
.burger-overlay.active {
    left: 0;
}

/* Hauptmenü */
.burger-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.burger-menu>li {
    margin-bottom: 15px;
}

/* Burger Toggle Icon */

a.burger-toggle:link,
a.burger-toggle:visited {
    color: #000;
} 

a.burger-toggle:hover {
    color: #666;
} 

/* Hauptkategorie Links */
.burger-menu>li>a {
    display: block;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 10px 15px;
    /* Abstand links/rechts */
    transition: background 0.2s, color 0.2s;
    border-radius: 4px;
}

.burger-menu>li>a:link, .burger-menu>li>a:visited {
    color: #fff;
}

/* Hover Effekt Hauptkategorie */
.burger-menu>li>a:hover {
    background-color: #fff;
    color: #000;
}

/* Subkategorien */
.burger-menu ul {
    list-style: none;
    margin-left: 15px;
    padding-left: 15px;
    /* Abstand zwischen Border und Hauptkategorie */
    margin-top: 5px;
    border-left: 2px solid #f7f7f7;
    /* Strich */
}

/* Subkategorie Links */
.burger-menu ul li a {
    font-size: 16px;
    padding: 6px 10px;
    /* Abstand links/rechts innerhalb des Blocks */
    color: #fff;
    display: block;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    border-radius: 3px;
}

/* Hover Effekt */
.burger-menu ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.burger-menu a:visited,
.alink:visited {
    color: #ddd;
}

/* Burger-Icon */
.burger-toggle {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    /*var(--primary-color-dark); */
    font-size: 28px;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1;
    margin-right: 20px;
    order: -1;
    /* Ganz links im Header */
}

.burger-icon:before {
    font-family: 'luma-icons';
    content: '\e609';
    display: inline-block;
    font-weight: 600;
    line-height: 28px;
}

/* Scrollbar Breite */
.burger-overlay::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar Track (Hintergrund) */
.burger-overlay::-webkit-scrollbar-track {
    background: #000; /* weißer Track */
    border-radius: 4px;
}

/* Scrollbar Thumb (der bewegliche Teil) */
.burger-overlay::-webkit-scrollbar-thumb {
    background-color: #fff; /* schwarz */
    border-radius: 4px;
    border: 2px solid #000; /* Abstand zum Track */
}

/* Hover Effekt auf Thumb */
.burger-overlay::-webkit-scrollbar-thumb:hover {
    background-color: #333; /* etwas helleres Schwarz beim Hover */
}

/* Firefox */
.burger-overlay {
    scrollbar-width: thin;
    scrollbar-color: #fff #000; /* thumb track */
}

/* nav.navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
} */