/* =========================================
   Pizzaria Bella — app.css
   ========================================= */

/* Scrollbar hide utility */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

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

/* Skeleton loading */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #252525 25%, #333 50%, #252525 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 0.5rem;
}

/* Slide-in alerts */
@keyframes slideInRight {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}
.alert-slide { animation: slideInRight 0.35s ease-out; }

/* Bounce-gentle for floating elements */
@keyframes bounceGentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.animate-bounce-gentle { animation: bounceGentle 2s infinite; }

/* Card shadows */
.shadow-card       { box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04); }
.shadow-card-hover { box-shadow: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06); }

/* Primary light tint */
.bg-primary-light { background-color: #fff1f2; }
