/* 3D City Chef Custom Styles */
@keyframes pop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.animate-pop {
  animation: pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

/* Order Ticket Pulse */
@keyframes urgent-pulse {
  0%, 100% { border-color: rgb(239 68 68); transform: scale(1); }
  50% { border-color: rgb(254 202 202); transform: scale(1.03); }
}

.order-ticket-urgent {
  animation: urgent-pulse 0.8s infinite ease-in-out;
}

/* Three.js Container */
#canvas-container {
  touch-action: none;
}

#canvas-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Touch selection prevention */
* {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}