/* ==========================================
   MOBILE LANGUAGE BAR - TOP RIGHT VERSION
========================================== */

.mobile-lang-bar {
    display: none;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 6px 15px;
    position: relative;
    z-index: 9999;
}

/* Container alignment */
.mobile-lang-bar-inner {
    display: flex;
    justify-content: flex-end;   /* RIGHT CORNER */
    align-items: center;
    gap: 8px;
}

/* Flag styling */
.mobile-lang-bar img {
    width: 18px !important;
    height: auto !important;
    max-width: 18px !important;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Optional hover effect */
.mobile-lang-bar img:hover {
    transform: scale(1.1);
}

/* Divider */
.mobile-lang-bar .divider {
    color: #ccc;
    font-weight: 600;
}

/* Show only on mobile */
@media (max-width: 991px) {

    .mobile-lang-bar {
        display: block;
    }

    /* Hide desktop language switch */
    .main-header__lang {
        display: none !important;
    }
}
