/* ═══════════════════════════════════════════════
   i18n Language Switcher — influencer360.com.tr
   Light theme, #E91E63 accent
   ═══════════════════════════════════════════════ */

/* ── Desktop Switcher ──────────────────────────── */
.i18n-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 12px;
}

.i18n-switcher__item {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    padding: 5px 9px;
    border-radius: 6px;
    text-decoration: none !important;
    color: #9ca3af;
    transition: color .15s ease, background .15s ease;
    line-height: 1;
    white-space: nowrap;
}

.i18n-switcher__item + .i18n-switcher__item {
    position: relative;
    margin-left: 2px;
}

.i18n-switcher__item + .i18n-switcher__item::before {
    content: '|';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: #e5e7eb;
    font-weight: 300;
    font-size: 10px;
}

.i18n-switcher__item:hover {
    color: #E91E63;
    background: rgba(233, 30, 99, .08);
    text-decoration: none !important;
}

.i18n-switcher__item--active {
    color: #E91E63 !important;
    background: rgba(233, 30, 99, .08);
    cursor: default;
    pointer-events: none;
}

/* ── Mobile Switcher ───────────────────────────── */
.i18n-switcher-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px 10px;
}

.i18n-switcher-mobile__item {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none !important;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: color .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.i18n-switcher-mobile__item:hover {
    color: #fff;
    border-color: rgba(233, 30, 99, .5);
    background: rgba(233, 30, 99, .1);
    text-decoration: none !important;
}

.i18n-switcher-mobile__item--active {
    color: #fff !important;
    border-color: rgba(233, 30, 99, .6) !important;
    background: rgba(233, 30, 99, .15) !important;
    cursor: default;
    pointer-events: none;
}