/* ======================================
   Language Switcher – TR / EN
   ====================================== */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-left: 18px;
    vertical-align: middle;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.35);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    line-height: 1;
    border: none;
    outline: none;
}

.lang-switch-btn + .lang-switch-btn {
    border-left: 1px solid rgba(255,255,255,0.25);
}

.lang-switch-btn:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.12);
}

.lang-switch-btn.active {
    color: #ffffff;
    background: rgba(255,255,255,0.2);
    font-weight: 700;
}

.lang-switch-btn .lang-flag {
    width: 16px;
    height: 12px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1px;
    flex-shrink: 0;
}

.lang-flag-tr {
    /* Turkish flag - inline SVG as data URI */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Crect fill='%23E30A17' width='1200' height='800'/%3E%3Ccircle fill='%23fff' cx='425' cy='400' r='200'/%3E%3Ccircle fill='%23E30A17' cx='475' cy='400' r='160'/%3E%3Cpolygon fill='%23fff' points='583,400 624,437 609,390 648,362 600,362'/%3E%3C/svg%3E");
}

.lang-flag-en {
    /* UK flag simplified - inline SVG as data URI */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3CclipPath id='b'%3E%3Cpath d='M30 15h30v15zv15H0zH0V0zV0h30z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Responsive: Stack vertically on very small header tops ── */
@media (max-width: 767px) {
    .lang-switcher {
        margin-left: 0;
        margin-top: 8px;
    }
}
