.currency-switcher {
  display: flex;
  gap: 3px;
  position: relative;
}
.currency-switcher button {
  border: none;
  background: #fff;
  outline: none;
  text-decoration: none;
  color: #333;
  text-align: center;
  border-radius: 4px;
  transition: color 0.3s ease;
  font-weight: 600;
  font-size: 13px;
  padding: 3px 4px;
}
.currency-switcher button:hover {
  background: #f1f1f1;
}
.currency-switcher button.active {
  color: #fff;
  background: #3d3935 !important;
}