/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-switcher .lang-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
}

.language-switcher .lang-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.language-switcher .lang-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.language-switcher .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-switcher .lang-code {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-switcher {
    margin-left: 10px;
    padding-left: 10px;
  }
  
  .language-switcher .lang-link {
    padding: 5px 8px;
  }
  
  .language-switcher .flag-icon {
    width: 18px;
    height: 12px;
  }
  
  .language-switcher .lang-code {
    font-size: 11px;
  }
}
