.lang-widget {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 90px;
  text-align: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}

.lang-widget .current-lang img {
  width: 35px;
  height: 25px;
  border: 1px solid #ddd;
  border-radius: 3px;
  object-fit: cover;
}

.lang-widget .current-lang span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.lang-widget .lang-options {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 60px; /* deasupra butonului */
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px;
  cursor: pointer;
}

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

.lang-widget .lang-options img {
  width: 35px;
  height: 25px;
  border: 1px solid #ddd;
  border-radius: 3px;
  object-fit: cover;
}

.lang-widget .lang-options span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.lang-widget.open .lang-options {
  display: block;
}
