/* Dil Seçici Stilleri */
.rs-header-language-wrapper {
    position: relative;
    margin-right: 15px;
    z-index: 1000;
}

.rs-header-language-switcher {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.current-language:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-flag {
    font-size: 20px;
    line-height: 1;
}

.language-code {
    font-size: 14px;
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
}

/* Her zaman görünür olması için */
.rs-header-right {
    position: relative;
    z-index: 1000;
}

.rs-header-language-wrapper {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.rs-header-language-switcher:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f8f8;
    color: #ff6b35;
}

.language-option.active {
    background: #ff6b35;
    color: #fff;
}

.language-option.active:hover {
    background: #e55a2b;
}

/* Sticky header için */
.rs-sticky-header .current-language {
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

.rs-sticky-header .current-language:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}
