/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */

.language-switcher {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(10px);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--r-md);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lang-option:hover {
  background: var(--rose-light);
  color: var(--rose-dark);
  transform: translateX(-2px);
}

.lang-option.active {
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-switcher {
    top: 80px;
    right: 10px;
    padding: 0.5rem;
    gap: 0.25rem;
  }
  
  .lang-option {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Footer language links */
.footer-lang {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-lang a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-lang a:hover,
.footer-lang a.active {
  color: var(--white);
  font-weight: 600;
}
