/* ===============================
   Language Switch Button
   =============================== */

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 12px;
    border-radius: 12px;

    background: #ffffff;
    color: #111111;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    line-height: 1;

    border: 1px solid rgba(0, 0, 0, 0.12);

    transition:
        background 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.15s ease;

    white-space: nowrap;
}

.lang-switch i {
    font-size: 14px;
}

/* Hover */
.lang-switch:hover {
    background: #f7f7f7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* Active */
.lang-switch:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Mobile behavior */
@media (max-width: 992px) {
    .lang-switch {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (min-width: 993px){
    .main-nav .lang-switch{
        margin-left: 10px;
    }
}
