* { font-family: 'Vazirmatn', Tahoma, sans-serif; box-sizing: border-box; }

body {
  margin: 0;
  background: #12172a;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(224, 123, 57, 0.08), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(66, 84, 130, 0.15), transparent 45%);
  background-attachment: fixed;
}

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

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Toast */
.tak-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #e07b39;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(224, 123, 57, 0.4);
  z-index: 60;
  animation: toastIn 0.3s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes pop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.animate-pop { animation: pop 0.25s ease; }

@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30% { transform: scale(1.25) rotate(-8deg); }
  60% { transform: scale(0.95) rotate(4deg); }
}
.animate-cart-bounce { animation: cartBounce 0.5s ease; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0d1120; }
::-webkit-scrollbar-thumb { background: #2a3150; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #e07b39; }