.navbar {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 15px 40px;
    height: 90px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    transition: transform 0.3s ease;
}

.navbar-logo img {
    height: 80px;
    transition: transform .25s;
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    justify-content: center;
    gap: 8px;
}

.navbar-links li {
    margin: 0 10px;
}

.navbar-links a {
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color .2s, transform .2s;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .4px;
}

.navbar-links a:hover {
    color: #f7941d;
    transform: translateY(-2px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-button {
    background: #f7941d;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}

.order-button:hover {
    background: #e0871a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.navbar-links .mobile-order-button {
    display: none;
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
    z-index: 2000;
    margin-left: 8px;
    font-family: 'Montserrat', sans-serif;
}

.language-switcher .selected-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    line-height: 1;
    transition: box-shadow .18s, border-color .18s, transform .12s;
}

.language-switcher .selected-lang:hover {
    border-color: #f7941d;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.language-switcher .selected-lang img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.language-switcher .selected-lang .lang-code {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

.language-switcher .selected-lang i {
    font-size: 12px;
    color: #666;
}

.language-switcher .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    list-style: none;
    padding: 6px;
    margin: 0;
    display: none;
    overflow: hidden;
}

.language-switcher.show .lang-menu {
    display: block;
    animation: fadeInScale .18s ease both;
}

.language-switcher .lang-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background .12s;
}

.language-switcher .lang-menu li:hover,
.language-switcher .lang-menu li:focus,
.language-switcher .lang-menu li.active {
    background: #f6f6f6;
    outline: none;
}

.language-switcher .lang-menu img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 10px 14px;
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        width: 70%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background: #fff;
        transform: translateX(-100%);
        transition: transform .45s ease-in-out;
        z-index: 999;
        padding-top: 100px;
        gap: 0;
        justify-content: flex-start;
    }

    .navbar-links.active {
        transform: translateX(0);
    }

    .navbar-links .mobile-order-button {
        display: block;
        margin-top: 18px;
    }

    .navbar-actions {
        display: none;
    }

    .hamburger-menu {
        display: block;
        z-index: 1200;
    }

    .language-switcher {
        margin-left: 6px;
        position: absolute;
        right: 50px;
    }

    .language-switcher .lang-menu {
        right: 8px;
        left: auto;
    }
}