/*--------------------------------------------------------------
# Currency Switcher — Fixed on right center of screen
#
# Portable: Copy this file to any website.
# No dependency on website's CSS variables — all colors hardcoded.
--------------------------------------------------------------*/
.currency-switcher {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
}

.currency-btn {
  background: #3f4141;
  border: 1px solid rgba(14, 230, 176, 0.5);
  color: #dcdcdc;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

.currency-btn:hover {
  border-color: #0ee6b0;
  color: #0ee6b0;
}

.currency-switcher.open .currency-btn {
  border-color: #0ee6b0;
  color: #0ee6b0;
}

.currency-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  bottom: 120%;
  right: 0;
  min-width: 120px;
  background: #3f4141;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}

.currency-switcher.open .currency-dropdown {
  opacity: 1;
  bottom: 110%;
  visibility: visible;
}

.currency-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  color: #dcdcdc;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.currency-dropdown li:hover {
  color: #0ee6b0;
  background: rgba(14, 230, 176, 0.08);
}

.currency-dropdown li.active {
  color: #0ee6b0;
}

@media (max-width: 768px) {
  .currency-switcher {
    right: 12px;
  }

  .currency-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
