header{
    background: #033761;
    transition: background-color 0.3s ease;
}

.header__tools{
    color:#fff;
}

.header__logo{
    height: 60px !important;
}

.header__tools i{
    font-size: 22px;
}

.header__tools *{
    color:#fff;
}

header .opening__hours {
    font-size: 16px;
}

.header__carticon{
    position: relative;
}

.header__carticon .badge{
    position: absolute;
    font-size: 0.65em;
    right: 2px;
    top: -5px;
    z-index: 10;
    border-radius: 50%;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: normal;
    background-color: #EDBE00;
}

.header--solid{
    background: #033761;
}

/* NAVIGATION */
.header__desktopnav{
    display: flex;
    justify-content: space-between;
    gap: 0 5px; /* Minimaler Abstand zwischen den Items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__desktopnav li {
    flex: 1 1 auto;
    text-align: center;
    min-width: fit-content;
}

.header__desktopnav a{
    font-family: 'Work Sans', sans-serif;
    color:#fff;
    font-size: clamp(14px, 1.1vw, 18px); /* Dynamische Schriftgröße */
    position: relative;
    font-weight: normal;
    white-space: nowrap;
    padding: 0 5px;
}

.header__desktopnav a:after{
    opacity: 0;
    transition: all 0.3s ease;
    background: #E1C200;
    width: calc(0% + 0px);
    height:2px;
    position: absolute;
    bottom: -10px;
    z-index: 20;
    content: "";
    left:-10px;
    transition: all 0.3s ease;
}

.quicknav_a{
    font-family: 'Work Sans', sans-serif;
    color:#23335e;
    font-size: 24px;
    position: relative;
    font-weight: normal;

}
.quicknav_a:hover:after{
    opacity: 1;
    width: calc(100% + 20px);
}
.quicknav_a_2:hover{
    color: #E1C200;
}
.a_children:after{
    height:0px !important;
}
.a_children:hover{
    color: #fff !important;
}
.header__desktopnav a:hover:after{
    opacity: 1;
    width: calc(100% + 20px);
}
.main-menu{
    position: relative;
}
.main-menu ul ul.submenu {
    top: 100%;
    width: 300px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    padding: 17px 0;
    z-index: -1;
    background: #E1C200;
    transform: translate(-65%, 4.2%);
       
}
.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
}
.menu > li ul, .menu ul ul{
    opacity: 0;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    z-index: -1;
    visibility: hidden;
}

.menu > li:hover > ul{
    top: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.menu ul > li:hover > ul{
    left: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.contentnavigation a{
    color: #23335e;
}
.navi-icon-i i{
font-size: 24px !important;
color: #23335e;
}
.category{
    border: 2px solid #23335e;
    border-radius: 50px;
}
.category img,
.category i{
    margin-right: 10px;
}

.category:hover
{
    background-color: #ffc107;
    border: 2px solid #ffc107;
}

.category.active
{
    background-color: #ffc107;
    border: 2px solid #ffc107;
    color: #23335e !important;
}

.category.active *
{
    color: #23335e;
}
.categories .category.activeCat, .categories .category.activeCat * {
    background-color: #ffc107;
    filter: brightness(1) invert(0);
    color: #23335e;
    border: 2px solid #ffc107;
}
.category:hover img{
    filter: brightness(1) invert(0);
}



@media screen and (max-width: 767.98px){
    .header__logo{
        min-height: 50px;
    }

    header .opening__hours {
        font-size: 14px;
    }
}