/* ================================================
   Language Switcher Styles
   ================================================ */

.landing-lang-switcher {
    position: fixed;
    top: 95px;
    right: 250px;
    z-index: 1000;
}

.landing-lang-select {
    padding: 8px 32px 8px 12px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 140px;
}

.landing-lang-select:hover {
    border-color: #0891b2;
    background-color: #f0fdfa;
}

.landing-lang-select:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

/* RTL support */
[dir="rtl"] .landing-lang-switcher {
    /* left: 20px; */
    /* right: auto; */
}

[dir="rtl"] .landing-lang-select {
    padding: 8px 12px 8px 32px;
    background-position: left 10px center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .landing-lang-switcher {
        top: 10px;
        right: 10px;
    }
    
    .landing-lang-select {
        font-size: 13px;
        padding: 6px 28px 6px 10px;
        min-width: 120px;
    }
    
    [dir="rtl"] .landing-lang-switcher {
        left: 10px;
    }
}
