/* ==============================================
   LANGUAGE SWITCHER STYLES
   File: assets/language.css
   ============================================== */

#lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  height: 28px;
  vertical-align: middle;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #888;
  padding: 0 8px;
  height: 100%;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
  line-height: 1;
}

.lang-btn:hover {
  color: #222;
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  color: #fff;
  background: #222;
}

.lang-divider {
  color: rgba(0, 0, 0, 0.2);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Mobile responsive */
@media (max-width: 767px) {
  #lang-switcher {
    margin-right: 8px;
    height: 24px;
  }

  .lang-btn {
    font-size: 10px;
    padding: 0 6px;
  }
}