/* плавные анимации */
.fade-in { animation: fade-in .5s ease both; }
@keyframes fade-in { from {opacity:0; transform:translateY(8px)} to {opacity:1; transform:translateY(0)} }
.scale-in { animation: scale-in .25s ease both; }
@keyframes scale-in { from {opacity:0; transform:scale(.98)} to {opacity:1; transform:scale(1)} }
@keyframes fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-in {
  animation: fade-in 0.2s ease-out;
}
/* кастомный скролл для корзины
.nice-scroll::-webkit-scrollbar { width: 10px; }
.nice-scroll::-webkit-scrollbar-track { background: #edf2f7; border-radius: 9999px; }
.nice-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9999px; }
 */
