* { font-family: 'Vazirmatn', sans-serif; }

body {
  margin: 0;
  background: #efe7d3;
  color: #1f3d2b;
}

/* Shimmer placeholder for loading images */
.shimmer {
  background: linear-gradient(100deg, #3f7355 30%, #6b4423 50%, #3f7355 70%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Staggered fade-in */
.fade-in {
  animation: fadeIn 0.6s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar for category pills */
.overflow-x-auto::-webkit-scrollbar { height: 4px; }
.overflow-x-auto::-webkit-scrollbar-thumb { background: #c9a227; border-radius: 4px; }
.overflow-x-auto::-webkit-scrollbar-track { background: transparent; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Remove input number spinners & keep RTL clean */
input:focus, textarea:focus { outline: none; }

::selection { background: #c9a227; color: #1f3d2b; }