/* Language Switcher - Floating button + dropdown */
.lang-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  font-family: 'Poppins', sans-serif;
}

.lang-switcher-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c8a96e;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lang-switcher-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.lang-switcher-btn svg {
  width: 26px;
  height: 26px;
  pointer-events: none;
}

.lang-switcher-dropdown {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  min-width: 180px;
}

.lang-switcher.open .lang-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}

.lang-switcher-dropdown a:hover {
  background: #f5f0e8;
}

.lang-switcher-dropdown a.active {
  background: #f5f0e8;
  font-weight: 600;
  color: #c8a96e;
}

.lang-switcher-dropdown a svg {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lang-switcher {
    bottom: 16px;
    right: 16px;
  }
  .lang-switcher-btn {
    width: 44px;
    height: 44px;
  }
}
