/* ================================================
   TPSNIPER i18n — Language Switcher Styles
   ================================================ */

.i18n-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.i18n-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  line-height: 1;
}

.i18n-switcher-btn:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.i18n-switcher-btn.active {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: white;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}

.i18n-switcher-btn.active:hover {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  color: white;
}

.i18n-flag {
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.i18n-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ================================================
   SIDEBAR CONTEXT (app pages)
   ================================================ */

.sidebar .i18n-switcher {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.sidebar .i18n-switcher-btn {
  flex: 1;
  justify-content: center;
}

/* ================================================
   FLOATING FALLBACK
   ================================================ */

.i18n-switcher-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ================================================
   LANDING NAV CONTEXT
   ================================================ */

.nav-actions .i18n-switcher {
  margin-right: 6px;
}

/* ================================================
   MOBILE
   ================================================ */

@media (max-width: 720px) {
  .i18n-switcher {
    padding: 3px;
    gap: 3px;
  }

  .i18n-switcher-btn {
    padding: 5px 8px;
  }

  .i18n-code {
    font-size: 10px;
  }

  .i18n-flag {
    font-size: 12px;
  }

  .i18n-switcher-floating {
    bottom: 14px;
    left: 14px;
  }
}
