.lang-dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.lang-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  text-transform: uppercase;
}

.lang-toggle img {
  width: 20px;
  height: auto;
}

.lang-options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
  display: none;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lang-options li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Intro';
}

.lang-options li a:hover {
  background: #f0f0f0;
}

.lang-options img {
  width: 20px;
  height: auto;
}
