
.language-switcher {
  position: relative;
  float: right;  
  margin-top: 15px;
  display: inline-block;
}

.lang-toggle {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.lang-toggle img {
  width: 20px;
  height: auto;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  z-index: 1000;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.lang-menu a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.lang-menu img {
  width: 20px;
  height: auto;
}