:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Vazirmatn', 'Bricolage Grotesque', system-ui, sans-serif;
  background: #0b0810;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(232,121,249,0.06), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(34,211,238,0.05), transparent 45%);
  background-attachment: fixed;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Persian display font override — Bricolage can't render Farsi, use Vazirmatn */
[style*="Bricolage"] { font-family: 'Vazirmatn', system-ui, sans-serif !important; }

/* Cart slide-in (RTL — drawer on the left) */
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.slide-in { animation: slideIn 0.3s cubic-bezier(0.22,1,0.36,1); }

/* Modal pop */
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.pop-in { animation: popIn 0.25s cubic-bezier(0.22,1,0.36,1); }

/* Confetti */
.confetti {
  position: absolute;
  top: -20px;
  width: 9px;
  height: 14px;
  border-radius: 2px;
  animation: fall linear forwards;
}
@keyframes fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Nice scrollbars for cart */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

input::placeholder { color: rgba(255,255,255,0.35); }