/* public/css/style_POS.css */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Scrollbars invisibles */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Animación suave */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-item-anim { animation: slideIn 0.2s ease-out forwards; }

/* IMPORTANTE: Evita que la página rebote en celular */
body {
    height: 100vh; /* Altura fija de la ventana */
    width: 100vw;
    overflow: hidden; /* Sin scroll general */
    touch-action: manipulation; /* Mejora respuesta táctil */
}