/* NAVBAR */

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 70px;
    max-width: 1300px;
    padding: 0 20px;

    background-color: #fff;
}

nav > a > img{width: 150px;}

.phone-support{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.phone-support > img{width: 25px;}
.phone-support > span{font-size: 20px;}

@media (max-width: 400px) {
    nav > a > img{width: 120px}
    .phone-support > span{font-size: 14px;}
}

/* NAVBAR */

.navbar-right { display: flex; align-items: center; gap: 20px; }
.lang-switcher-link { font-family: 'Inter', Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 600; color: #000; text-decoration: none; }
.lang-switcher-link:hover { color: #c6168d; }

