/* Language Switcher Floating Button and Popup */
.language-switcher-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e67e22;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.language-switcher-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.language-switcher-button button {
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: none;
}

.language-switcher-button i {
  color: white;
  font-size: 24px;
}

.language-switcher-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 15px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  min-width: 150px;
}

.language-switcher-popup.show {
  display: flex;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin: 3px 0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.language-option:hover {
  background-color: #f5f5f5;
  color: #e67e22;
}

.language-option.active {
  background-color: #fff3e6;
  color: #e67e22;
}

.language-option img {
  width: 24px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid #eee;
}

.language-close {
  position: absolute;
  top: 5px;
  right: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #999;
}

.language-close:hover {
  color: #333;
}
