/* Language Switcher Styles */
.language-switcher {
    position: relative;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 15px;
}

.lang-btn {
    background-color: transparent;
    border: 2px solid #b89b5e;
    color: #b89b5e;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-btn.hidden {
    display: none;
}

.lang-btn i {
    font-size: 16px;
    transition: transform 0.5s ease;
}

.lang-btn:hover {
    background-color: #b89b5e;
    border-color: #b89b5e;
    color: #ffffff;
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.lang-btn:hover i {
    transform: rotate(360deg); /* Icon rotation on hover */
}

.mobile-language-switcher {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin: 20px 30px 0;
    display: flex;
    justify-content: center;
}

.header_style_one.menu-bg-overlay .language-switcher {
	display: none !important;
} 