/* ENO Currency Toggle */

.eno-currency-toggle {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9995;
  display: flex;
  background: #fff;
  border: 2px solid #c9a961;
  border-radius: 30px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.eno-cur-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: none;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  transition: all 0.2s;
  font-family: inherit;
}

.eno-cur-btn:hover {
  background: #f5f5f5;
}

.eno-cur-btn.active {
  background: #0a0a0a;
  color: #c9a961;
}

.eno-cur-btn .flag {
  font-size: 16px;
  line-height: 1;
}

.eno-cur-btn .code {
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .eno-currency-toggle {
    top: auto;
    bottom: 80px;
    right: 12px;
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .eno-currency-toggle {
    transform: scale(0.85);
  }
}
