/* Language Switcher Styles - Visual Only for Future Next.js Migration */
.language-switcher {
    display: inline-flex !important;
    align-items: center;
    margin: 0 15px;
    position: relative;
    /* Always visible in all headers */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Basit TR dil butonu */
.lang-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.5px;
    pointer-events: none; /* Tıklanamaz - sadece görsel */
}

/* Hover efekti kaldırıldı - sadece görsel */

/* Flag CSS'i kaldırıldı - artık kullanılmıyor */

/* Basit dil butonu - dropdown yok */
.lang-dropdown {
    display: none !important;
}

/* Sticky header için basit stil */
.sticky-header .lang-btn,
.header-sticky .lang-btn {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(233, 86, 45, 0.2);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .language-switcher {
        margin: 0 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .lang-flag {
        font-size: 16px;
    }
}

/* Next.js migration note */
.language-switcher::after {
    content: '';
    /* Placeholder for Next.js i18n integration */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-switcher {
        margin: 10px 15px;
    }
}

/* Hide search area - moved from inline */
.hamburger-search-area { 
    display: none !important; 
}