* { box-sizing: border-box; }
body { margin: 0; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #f0a500; }

.hero-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(240,165,0,0.14) 0%, rgba(124,58,237,0.08) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast-in { animation: toastIn 0.3s cubic-bezier(0.34,1.56,0.64,1); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-fade { animation: fadeIn 0.2s ease; }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-pop { animation: popIn 0.3s cubic-bezier(0.34,1.4,0.64,1); }

input[type="range"] {
  -webkit-appearance: none;
  height: 5px;
  border-radius: 4px;
  background: #2a2a38;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0a500;
  box-shadow: 0 0 0 4px rgba(240,165,0,0.2);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: #f0a500;
}

/* Fix number placement in RTL price displays */
.font-black { font-weight: 900; }