/**
 * Minimal Mobile CSS
 * Only essential mobile fixes
 */

@media (max-width: 768px) {
    /* Prevent zoom on input focus */
    input[type="number"] {
        font-size: 16px !important;
    }
    
    /* Basic touch handling */
    .qty-btn {
        touch-action: manipulation;
    }
}
