/* Language Switcher Styles */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  font-family: 'Maven Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.lang-btn {
  color: #555;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  background: #e8f4e8;
  color: #2a7a2a;
  text-decoration: none;
}

.lang-active {
  background: #2a7a2a;
  color: #fff !important;
  border-radius: 3px;
}

.lang-sep {
  color: #ccc;
  font-weight: 300;
}
