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

body { margin: 0; background: #f9fafb; }

.berry-gradient {
  background: linear-gradient(90deg, #e11d48 0%, #f43f5e 50%, #fb7185 100%);
}

.product-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(225, 29, 72, .25);
}

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

@keyframes bounceShort {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  60% { transform: translateY(-2px); }
}
.animate-bounce-short { animation: bounceShort .6s ease; }

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.toast-in { animation: toastIn .3s ease; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #fecdd3; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #fda4af; }

input[type="range"] {
  height: 6px;
  border-radius: 3px;
  background: #fee2e2;
}

select { background-image: none; }