/* NAV */
.header {
    position: sticky;
    top: 0px;
    z-index: 2;
}

.nav__pc {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #101322;
    padding: 15px;
    filter: 
    drop-shadow(0 0 5px #222);
}

.nav__pc h3 {
    color: #eee;
    font-size: 1.25rem;
}

.nav__pc .header__ul {
    display: flex;
    gap: 22px;
    list-style: none;
}
.nav__pc .header__ul .ul--active {
    border-bottom: 1px solid #eee;
    color: #fff;
}
.nav__tlf .header__ul--tlf .ul--active {
    color: #fff;
    border-left: 1px solid #eee;
}
.nav__pc .header__order {
    font-size: 0.9rem;
    background-color: #317ad1;
    color: #eee;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}
.nav__pc .header__order:hover {
    background-color: #2560a4;
}
.nav__pc .header__ul li a,
.nav__tlf .header__ul--tlf li a{
    color: #bbb;
    font-size: 0.9rem;
    padding: 8px 12px;
}

.nav__pc .header__ul li:hover a,
.nav__tlf .header__ul--tlf li:hover a {
    color: #222;
    background-color: #ccc;
    border-radius: 8px;
}

.nav__pc a {
    color: #ccc;
}

.nav__tlf {
    display: none;
}



/* footer */

.footer {
    margin-top: 40px;
}

.footer .footer__copy {
    border-top: 1px solid #222;
    padding: 20px;
    text-align: center;
}

.footer .footer__copy a {
    color: #ccc;
}


/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.language-switcher button {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 5px;
    transition: all 0.3s;
}

.language-switcher button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option {
    padding: 0 5px;
    transition: all 0.3s;
}

.language-option.active {
    color: #317ad1;
    font-weight: 500;
}

.language-separator {
    padding: 0 2px;
    color: #666;
}
.nav__tlf .language-switcher {
    margin-right: 15px;
}



@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {
    /* mobile */
    .nav__pc {
        display: none;
    }
    .nav__tlf {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color: #101322;
        padding: 15px;
        filter: 
        drop-shadow(0 0 5px #222);
        gap: 200px;
    }
    .nav__tlf h3 {
        color: #eee;
    }

    .menu-label {
        cursor: pointer;
    }
    
    .menu-label input[type="checkbox"] {
        display: none;
    }
    
    .icon-box {
        width: 1.5rem;
        color: #aaa;
        height: 1.5rem;
        border: 1px solid #fff;
        background-color: #222;
        border-radius: 4px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        transition: all 0.3s;
    }
    
    .menu-label input[type="checkbox"]:checked + .icon-box {
        border-color: #2560a4;
    }
    
    .menu-label input[type="checkbox"]:checked + .icon-box i {
        color: #fff;
    }
    
    .hidden-buttons {
        display: none;
        margin-top: 10px;
    }
    .header__ul--tlf {
        list-style: none;
    }
    .header__ul--tlf li {
        padding-top: 10px;
    }

    .menu-label input[type="checkbox"]:checked ~ .hidden-buttons {
        position: absolute;
        top: 48px;
        left: 0px;
        width: 100%;
        display: flex;
        flex-flow: column wrap;
        background-color: #101322;
        padding-left: 20px;
    }
    .header__ul--tlf li:last-child {
        padding-bottom: 10px;
    }


    .language-switcher.mobile {
        margin-right: 0;
    }
    
    .nav__tlf {
        gap: 20px;
    }
}
