.language-switcher {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 9999;
  background: transparent;
  border-radius: 6px;
  box-shadow: none;
  padding: 3px;
}

.language-switcher .lang-buttons {
  display: flex;
  gap: 2px;
}

.language-switcher .btn-lang {
  background: linear-gradient(135deg, #7a2cb3 0%, #a158ff 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 50px;
  min-width: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-switcher .btn-lang:hover {
  background: linear-gradient(135deg, #ff8833 0%, #ffb95f 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.language-switcher .btn-lang.active {
  background: linear-gradient(135deg, #a158ff 0%, #f95d9b 50%, #ff8833 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.language-switcher .dropdown-toggle {
  background: linear-gradient(135deg, #7a2cb3 0%, #a158ff 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 80px;
}

.language-switcher .dropdown-toggle:hover {
  background: linear-gradient(135deg, #ff8833 0%, #ffb95f 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.language-switcher .dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(161, 88, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.language-switcher .dropdown-menu {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.language-switcher .dropdown-item {
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #a158ff;
  transform: translateX(5px);
}

.language-switcher .dropdown-item.active {
  background: linear-gradient(135deg, #a158ff 0%, #f95d9b 50%, #ff8833 100%);
  color: white;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
    transform: scale(0.9);
  }
}

.language-switcher {
  display: block !important;
  visibility: visible !important;
}


