/* استایل‌های تکمیلی روی Tailwind - راست‌چین کامل */
* {
  scroll-behavior: smooth;
}

body {
  direction: rtl;
}

/* اسکرول‌بار سفارشی */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #fda4af;
  border-radius: 10px;
}

/* انیمیشن‌های ملایم */
.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-bounce {
  animation: bounce 0.4s ease;
}
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* اسپینر بارگذاری */
.spinner {
  border: 3px solid #fecdd3;
  border-top: 3px solid #e11d48;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* toast پیام موفقیت/خطا */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease;
}
.toast-success { background: #16a34a; }
.toast-error { background: #dc2626; }

/* line-clamp برای عنوان محصولات */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* تم شب (اختیاری - با کلاس dark روی body فعال می‌شود) */
body.dark {
  background: #18181b;
  color: #e4e4e7;
}
body.dark header,
body.dark .bg-white {
  background: #27272a !important;
  color: #e4e4e7;
}
