/* ===== TAAL SWITCHER ===== */
.lang-switcher{
  position:fixed;
  top:20px;
  right:20px;
  display:flex;
  gap:10px;
  z-index:9999;
}

.lang-switcher img{
  width:30px;
  cursor:pointer;
  border:2px solid transparent;
  border-radius:5px;
  opacity:.7;
  transition:.2s;
}

.lang-switcher img:hover{
  opacity:1;
  transform:scale(1.05);
}

.lang-switcher img.active{
  border-color:#f5c400;
  opacity:1;
  box-shadow:0 0 10px rgba(245,196,0,.4);
}