/* =========================================================
   Language Switcher (Dil Seçici)
   ========================================================= */

.language-switcher {
    position: relative;
}

.language-switcher select {
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switcher select:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.language-switcher select:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.language-switcher select option {
    padding: 8px 12px;
    font-size: 14px;
}

/* Scrolled Header için */
header.smaller .language-switcher select {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
}

header.smaller .language-switcher select:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

header.smaller .language-switcher select option {
    background-color: white !important;
    color: #333 !important;
}

/* Responsive - Mobile */
@media (max-width: 991px) {
    .language-switcher {
        margin-top: 10px;
        width: 100%;
    }
    
    .language-switcher select {
        background-color: rgba(0, 0, 0, 0.05) !important;
        color: #333 !important;
        width: 100%;
    }
}
