/*--------------------------------------------------------------
# Language Switcher - bandierine tonde
--------------------------------------------------------------*/
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag {
  display: inline-flex;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.lang-flag img {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.lang-flag:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-flag.active {
  opacity: 1;
  transform: scale(1.15);
}

.lang-flag.active img {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(255, 255, 255, 0.7);
}

/* Footer */
.lang-switcher-footer {
  justify-content: center;
  margin-bottom: 16px;
}

.lang-switcher-footer .lang-flag img {
  width: 30px;
  height: 30px;
}